From e2db600c8cdb400e200c3f6ac693daa3659caecf Mon Sep 17 00:00:00 2001 From: Erhan Kurubas Date: Wed, 20 Nov 2024 14:35:43 +0100 Subject: [PATCH] fix(sysview): add prefix to the module desc to avoid stuck in Segger SystemView app Closes https://github.com/espressif/esp-idf/issues/10483 --- .../sys_view/ext/heap_trace_module.c | 2 +- tools/esp_app_trace/espytrace/sysview.py | 28 +- tools/esp_app_trace/test/sysview/README.md | 66 + tools/esp_app_trace/test/sysview/blink.c | 88 - tools/esp_app_trace/test/sysview/cpu0.svdat | Bin 2364 -> 0 bytes tools/esp_app_trace/test/sysview/cpu1.svdat | Bin 2461 -> 0 bytes .../test/sysview/expected_output | 4146 +- .../test/sysview/expected_output.json | 25727 +- .../test/sysview/expected_output_mcore | 32521 +- .../test/sysview/expected_output_mcore.json | 231202 +-------------- tools/esp_app_trace/test/sysview/gdbinit | 4 +- .../esp_app_trace/test/sysview/gdbinit-mcore | 19 + .../test/sysview/heap_log0.svdat | Bin 0 -> 12298 bytes .../test/sysview/heap_log1.svdat | Bin 0 -> 9669 bytes .../test/sysview/heap_log_mcore.svdat | Bin 171074 -> 19619 bytes .../test/sysview/sysview_tracing_heap_log.elf | Bin 2718952 -> 3124788 bytes tools/esp_app_trace/test/sysview/test.elf | Bin 1437848 -> 0 bytes tools/esp_app_trace/test/sysview/test.sh | 4 +- 18 files changed, 37485 insertions(+), 256322 deletions(-) create mode 100644 tools/esp_app_trace/test/sysview/README.md delete mode 100644 tools/esp_app_trace/test/sysview/blink.c delete mode 100644 tools/esp_app_trace/test/sysview/cpu0.svdat delete mode 100644 tools/esp_app_trace/test/sysview/cpu1.svdat create mode 100644 tools/esp_app_trace/test/sysview/gdbinit-mcore create mode 100644 tools/esp_app_trace/test/sysview/heap_log0.svdat create mode 100644 tools/esp_app_trace/test/sysview/heap_log1.svdat delete mode 100644 tools/esp_app_trace/test/sysview/test.elf diff --git a/components/app_trace/sys_view/ext/heap_trace_module.c b/components/app_trace/sys_view/ext/heap_trace_module.c index c0598906c85b..2919162bf584 100644 --- a/components/app_trace/sys_view/ext/heap_trace_module.c +++ b/components/app_trace/sys_view/ext/heap_trace_module.c @@ -21,7 +21,7 @@ const static char *TAG = "sysview_heap_trace"; #endif static SEGGER_SYSVIEW_MODULE s_esp_sysview_heap_module = { - .sModule = "ESP32 SystemView Heap Tracing Module", + .sModule = "M=ESP32 SystemView Heap Tracing Module", .NumEvents = 2, }; diff --git a/tools/esp_app_trace/espytrace/sysview.py b/tools/esp_app_trace/espytrace/sysview.py index 105bcba9c7c4..bfbf5e50986b 100644 --- a/tools/esp_app_trace/espytrace/sysview.py +++ b/tools/esp_app_trace/espytrace/sysview.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD +# SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD # SPDX-License-Identifier: Apache-2.0 import copy import json @@ -87,7 +87,7 @@ def parse_trace(reader, parser, os_evt_map_file=''): parser : SysViewTraceDataParser Top level parser object. os_evt_map_file : string - Path to file containg events format description. + Path to file containing events format description. """ global _os_events_map # parse OS events formats file @@ -106,12 +106,12 @@ def _read_events_map(os_evt_map_file): Parameters ---------- os_evt_map_file : string - Path to file containg events format description. + Path to file containing events format description. Returns ------- dict - a dict with event IDs as keys and values as tuples containg event name and a list of parameters. + a dict with event IDs as keys and values as tuples containing event name and a list of parameters. """ os_evt_map = {} with open(os_evt_map_file) as f: @@ -130,7 +130,7 @@ def _read_events_map(os_evt_map_file): elif sp[1] == 's': params.append(SysViewEventParamSimple(sp[0], _decode_str)) elif sp[1] == 't' or sp[1] == 'T' or sp[1] == 'I' or sp[1] == 'p': - # TODO: handle shrinked task/queue ID and addresses + # TODO: handle shrunk task/queue ID and addresses params.append(SysViewEventParamSimple(sp[0], _decode_u32)) os_evt_map[int(comps[0])] = (comps[1], params) return os_evt_map @@ -177,7 +177,7 @@ def _read_init_seq(reader): sync_bytes = struct.unpack(SYNC_SEQ_FMT, reader.read(struct.calcsize(SYNC_SEQ_FMT))) for b in sync_bytes: if b != 0: - raise SysViewTraceParseError('Invalid sync sequense!') + raise SysViewTraceParseError('Invalid sync sequence!') def _decode_u32(reader): @@ -192,7 +192,7 @@ def _decode_u32(reader): Returns ------- tuple - a tuple containg number of read bytes and decoded value. + a tuple containing number of read bytes and decoded value. """ sz = 0 val = 0 @@ -219,7 +219,7 @@ def _decode_id(reader): Returns ------- tuple - a tuple containg number of read bytes and decoded value. + a tuple containing number of read bytes and decoded value. """ return _decode_u32(reader) @@ -236,7 +236,7 @@ def _decode_u64(reader): Returns ------- tuple - a tuple containg number of read bytes and decoded value. + a tuple containing number of read bytes and decoded value. """ sz,val = _decode_u32(reader) sz2,high = _decode_u32(reader) @@ -256,7 +256,7 @@ def _decode_str(reader): Returns ------- tuple - a tuple containg number of read bytes and decoded value. + a tuple containing number of read bytes and decoded value. """ sz = 0 val = '' @@ -411,7 +411,7 @@ def decode(self, reader, max_sz): Returns ------- tuple - a tuple containg number of read bytes and decoded value. + a tuple containing number of read bytes and decoded value. """ pass @@ -963,13 +963,13 @@ def get_trace_stream(self, core_id, stream_id): def event_supported(self, e): """ - Should be overriden in child class. + Should be overridden in child class. """ return False def handle_event(self, e): """ - Should be overriden in child class. + Should be overridden in child class. """ pass @@ -1263,7 +1263,7 @@ def on_new_event(self, event): """ if self.root_proc == self: SysViewTraceDataParser.on_new_event(self, event) - if event.id == SYSVIEW_EVTID_MODULEDESC and event.params['desc'].value == 'ESP32 SystemView Heap Tracing Module': + if event.id == SYSVIEW_EVTID_MODULEDESC and event.params['desc'].value == 'M=ESP32 SystemView Heap Tracing Module': self.events_off = event.params['evt_off'].value diff --git a/tools/esp_app_trace/test/sysview/README.md b/tools/esp_app_trace/test/sysview/README.md new file mode 100644 index 000000000000..4f09f1677c20 --- /dev/null +++ b/tools/esp_app_trace/test/sysview/README.md @@ -0,0 +1,66 @@ +# Steps to Generate Test Input Files + +1. `sysview_tracing_heap_log.elf` + + Build example `sysview_tracing_heap_log` project. + + ``` + cd $IDF_PATH/examples/system/sysview_tracing_heap_log + idf.py set target esp32 + idf.py build + cp build/sysview_tracing_heap_log.elf $IDF_PATH/tools/esp_app_trace/test/sysview/ + cd $IDF_PATH/tools/esp_app_trace/test/sysview/ + chmod -x sysview_tracing_heap_log.elf + ``` + +2. `heap_log0.svdat` and `heap_log1.svdat` + + Flash the example and run OpenOCD and GDB using the following command in a separate console + + ``` + cd $IDF_PATH/examples/system/sysview_tracing_heap_log + idf.py openocd + ``` + + ``` + cd $IDF_PATH/examples/system/sysview_tracing_heap_log + xtensa-esp32-elf-gdb -x gdbinit build/sysview_tracing_heap_log.elf + ``` + When program stops at `heap_trace_stop` quit GDB and OpenOCD + + Copy generated svdat files + ``` + cp heap_log0.svdat $IDF_PATH/tools/esp_app_trace/test/sysview/ + cp heap_log1.svdat $IDF_PATH/tools/esp_app_trace/test/sysview/ + ``` + +3. `heap_log_mcore.svdat` + + Flash the example and run OpenOCD and GDB using the following command in a separate console + + ``` + cd $IDF_PATH/examples/system/sysview_tracing_heap_log + idf.py openocd + ``` + + ``` + cd $IDF_PATH/examples/system/sysview_tracing_heap_log + xtensa-esp32-elf-gdb -x gdbinit-mcore build/sysview_tracing_heap_log.elf + ``` + When program stops at `heap_trace_stop` quit GDB and OpenOCD + + Copy generated svdat file + ``` + cp heap_log_mcore.svdat $IDF_PATH/tools/esp_app_trace/test/sysview/ + ``` + +4. `expected_output` and `expected_output_json` files + + You can use the commands from the `test.sh` to generate expected result files + + ``` + $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -d -p -b sysview_tracing_heap_log.elf heap_log0.svdat heap_log1.svdat &> expected_output + $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -j -b sysview_tracing_heap_log.elf heap_log0.svdat heap_log1.svdat &> expected_output.json + $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -d -p -b sysview_tracing_heap_log.elf heap_log_mcore.svdat &> expected_output_mcore + $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -j -b sysview_tracing_heap_log.elf heap_log_mcore.svdat &> expected_output_mcore.json + ``` diff --git a/tools/esp_app_trace/test/sysview/blink.c b/tools/esp_app_trace/test/sysview/blink.c deleted file mode 100644 index 66fb4d31f0c4..000000000000 --- a/tools/esp_app_trace/test/sysview/blink.c +++ /dev/null @@ -1,88 +0,0 @@ -/* Blink Example - - This example code is in the Public Domain (or CC0 licensed, at your option.) - - Unless required by applicable law or agreed to in writing, this - software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - CONDITIONS OF ANY KIND, either express or implied. -*/ -#include -#include "freertos/FreeRTOS.h" -#include "freertos/task.h" -#include "driver/gpio.h" -#include "sdkconfig.h" -#include "esp_heap_trace.h" - -/* Can use project configuration menu (idf.py menuconfig) to choose the GPIO - to blink or you can edit the following line and set a number here. -*/ -#define BLINK_GPIO CONFIG_BLINK_GPIO - -void blink_task2(void *pvParameter) -{ - TaskHandle_t task = (TaskHandle_t)pvParameter; - - while(1) { - if (xTaskNotifyWait(0, 0, NULL, portMAX_DELAY) != pdPASS) { - printf("Failed to wait for main task!\n"); - return; - } - void *a = malloc(65); - printf("Alloced 65 bytes @ %p\n", a); - void *b = malloc(97); - printf("Alloced 97 bytes @ %p\n", b); - free(a); - printf("Freed @ %p\n", a); - b = malloc(11); - printf("Alloced 11 bytes @ %p\n", b); - b = malloc(24); - printf("Alloced 24 bytes @ %p\n", b); - free(b); - printf("Freed @ %p\n", b); - if (xTaskNotify(task, 0, eNoAction) != pdPASS) { - printf("Failed to notify main task!\n"); - return; - } - } -} - -void blink_task(void *pvParameter) -{ - TaskHandle_t task = 0; - - if(heap_trace_init_tohost() != ESP_OK) { - printf("Failed to init heap trace!\n"); - return; - } - xTaskCreatePinnedToCore(&blink_task2, "blink_task2", 2048, xTaskGetCurrentTaskHandle(), 5, &task, 1); - - while(1) { - heap_trace_start(HEAP_TRACE_ALL); - if (xTaskNotify(task, 0, eNoAction) != pdPASS) { - printf("Failed to notify slave task!\n"); - return; - } - void *a = malloc(64); - printf("Alloced 64 bytes @ %p\n", a); - void *b = malloc(96); - printf("Alloced 96 bytes @ %p\n", b); - free(a); - printf("Freed @ %p\n", a); - b = malloc(10); - printf("Alloced 10 bytes @ %p\n", b); - b = malloc(23); - printf("Alloced 23 bytes @ %p\n", b); - free(b); - printf("Freed @ %p\n", b); - if (xTaskNotifyWait(0, 0, NULL, portMAX_DELAY) != pdPASS) { - printf("Failed to wait for slave task!\n"); - return; - } - heap_trace_stop(); - } -} - -void app_main(void) -{ - xTaskCreatePinnedToCore(&blink_task, "blink_task", 2048, NULL, 5, NULL, 0); -} diff --git a/tools/esp_app_trace/test/sysview/cpu0.svdat b/tools/esp_app_trace/test/sysview/cpu0.svdat deleted file mode 100644 index 501b9729dc14f3ba0e51b57a1fd572ea2bddfec0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2364 zcmZWqTWl0n7@pmonRd2xOP4Gnjm=_xBsw!Ydkap&b~|k+*=;ww)0Vff)>Svq((D$E zZ;J?2TS5UfL|ekuKxs^oid8`pFY(1hj9|Ek;eJVJgIuIs>;IqAP6<0NJKy)8^PTVf z=Q}$~oJ+jT>1-~uvO^G3T3wx%^rqg+b*0;zGwFBJS#PuavLeHv$f~ZlS7rr4%XMbc zxm@N=uinw-T;gP`$9ey9AG^SnANg=z{@9*aKA(T!U=BH4a)Vl%O{bGaW6B%p>|Bv) zYwd#N7T2g+D&dnCN7ZFr>5g3M;zn!SAnPj8tNbcBF*0q-zbbak(W?S#i(adn@kn%J zF5)1?4RQSo4u^**uCCt4xtw}cSgkg2a6dtkh_JeP?Hrd&uaYE+OqjfZcL~7AYOYw2Vv-ogGk9v8Z@~f*=CvDwPVUP4!V-yi8G;An6L{ zD%Y!IQ8nsB(-6&=)~v<$@Pw2oDN%AC?{dRPnUF0t24#=%u6e-v2pfw;r|H8~K>=E_ zWCtnfr{uIOkSH4Xc^ zO=2JEl25W2X(MH1i;*``#%D3Utz;FSqNWnM2n~Wm@j(I-x&%uifF37w`78y{7+IT5VHGyTQ4N zA>5K0jWnDj-Sk8FjHnrHOls?RQiK4;jX#NoUr`g$2IC(((hs|fn%Xi${D{Yc@CRlH z3EGajK{c6*K$ox>BKZJwSjS3lkP9{AlSQMe9Cdn$qd?rpSMkLob&Y+nU3XVS8Hzh z%@Pk%AM{R4IeJ;oai z-cwLKE-(je!lT`a_`S2nSazi`7*YQ&3OM8Wl*=sLCuk7z-_R4*{JI}FbZ!Nco{7$j<%A>sdYkPS& zYv;~=QpV%p6L$BcoyE8H?0hEAzC`}+pZdCZ>(i~BUL)Jumg#uQ8(;axsuk%;p2x)p z*gQM8yB{1Zy?A&e&yL*Ok!OE#0{I(~iEU2+uUWG*&)zC|#bIOEJ9d8&lsNbrZFWdy z_zEAOb#tcRDPzuaF!ST>u;-^{?tg*I?C1PNP{Ns)Sg8zOpPJb_TfHM#OZ>|cm%R>< zy@s-{-L_m_DK1$48dsn@Tw<;Ixzo}eIDHQW?IpKt{{zg14c!0$ diff --git a/tools/esp_app_trace/test/sysview/cpu1.svdat b/tools/esp_app_trace/test/sysview/cpu1.svdat deleted file mode 100644 index d339cd190d67e8e4226a45e52b339b30119bdefa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2461 zcmZuyZA?>V6u!M*rA3Opu7=5vc40rwa_{YJ3voADDHpg&3r%|g|1}-!wnjnH;+FlZ zo8mrjqFFNMV8i(lM4U2-nyAY}vR`CdhC08P&IO&}Lo=pRnX>b~Z@n^E|G@K{^FHUi z=R9w_%D&3en95|+>soELxK>l6#XRwMvhAss#&qiKRL0XNzof{J6kOl_=DLi{re)hQ zscbg=x<_wqwy&~N=EweEqKhqYNzL#|V+GpSU}sE>PsZEb7Q z&B=Bsx3Wsr;!&@>GNi6jVT4kZuyGaB>-RbV9D z;2ci9Ocqt6MobuDBCIuP;k`U2B|=Js+|N4%$dobJRAmtM6z^CDtQWK4U?@+YBnk@9 zk}2CyNFO2dvOpqPKPFAtBSbcU*{8B+@U`S}wI-_9!$n{was>ux0`FSUOuV969jlKd zLeU1X3s1=_nT)iRFtW+W+X&+|8Sf5U#jB|Cs4l{QU@2a3Kvb8YBmywws4kBa05gv2 z-pd4(tGXN)uM<##fCK%p-d# zimDm4$U$>hSn;XRrieI>+f@7rNS86wM!$Yh8-jGgC49s}Pa z>mnAMizLf|#m+_CSA?q|9Fc_Q01qdC9*$&64q(XudN^S3Cz2;{(*aqHL>dx$a28)F z;8i101n=VO2NYOBs8$2w5m(ezN9AbS@w=1Ua$73fmS|76q%u2SaUo{t+~hnnwSqcs zu?@^kawTlKty%0Sbs@0l(G8v-DI?DyAbF-3a76+#Eg4Vzt>z7-E`%@K zCv8E|!-LRP;nTL{lP|asH?Rx(I$K12O_y4zK3bS9WD$MbYDIraJ2~3Dn-i|G&T~AE z?(yZW;^kD1eGz}DFZd1d)TWYc9wU=%PPe|{iL85V{o2&uMLZJeVQKd;BaG8n`7b`l zF754ss=<9HhH~uCon1NhM<>lavma?22~oK*Zt@AN|IVA5wr6#NQr9_4&ibOQdLw81P#cfpdA z$IMxt<`*e$ha%4?4%=EV#zgAad`0vh88QHema7Y|0u!; zu;Oh~aNpuBjX{lPW_rHByz|3NaR2<4W;pzE&M?G>KfwMUTZLP!bMRC@UAW2mFCHW@ A#{d8T diff --git a/tools/esp_app_trace/test/sysview/expected_output b/tools/esp_app_trace/test/sysview/expected_output index 8d90f69d0402..a342a494cd90 100644 --- a/tools/esp_app_trace/test/sysview/expected_output +++ b/tools/esp_app_trace/test/sysview/expected_output @@ -1,444 +1,3722 @@ EVENT[0]: 0.000000000 - core[0].svTraceStart(10), plen 0: [] EVENT[1]: 0.000000000 - core[1].svTraceStart(10), plen 0: [] -EVENT[2]: 0.000010950 - core[0].svInit(24), plen 14: [sys_freq: 40000000, cpu_freq: 160000000, ram_base: 1061158912, id_shift: 0] -EVENT[3]: 0.000010950 - core[1].svInit(24), plen 14: [sys_freq: 40000000, cpu_freq: 160000000, ram_base: 1061158912, id_shift: 0] -EVENT[4]: 0.000024800 - core[0].svSysDesc(14), plen 0: [desc: N=FreeRTOS Application,D=ESP32,C=Xtensa,O=FreeRTOS] -EVENT[5]: 0.000024800 - core[1].svSysDesc(14), plen 0: [desc: N=FreeRTOS Application,D=ESP32,C=Xtensa,O=FreeRTOS] -EVENT[6]: 0.000051650 - core[0].svSysDesc(14), plen 0: [desc: I#5=SysTick] -EVENT[7]: 0.000051650 - core[1].svSysDesc(14), plen 0: [desc: I#5=SysTick] -EVENT[8]: 0.000104150 - core[0].svSysDesc(14), plen 0: [desc: I#6=WIFI_MAC] -EVENT[9]: 0.000104150 - core[1].svSysDesc(14), plen 0: [desc: I#6=WIFI_MAC] -EVENT[10]: 0.000121100 - core[0].svSysDesc(14), plen 0: [desc: I#7=WIFI_NMI] -EVENT[11]: 0.000121100 - core[1].svSysDesc(14), plen 0: [desc: I#7=WIFI_NMI] -EVENT[12]: 0.000138125 - core[0].svSysDesc(14), plen 0: [desc: I#8=WIFI_BB] -EVENT[13]: 0.000138125 - core[1].svSysDesc(14), plen 0: [desc: I#8=WIFI_BB] -EVENT[14]: 0.000154825 - core[0].svSysDesc(14), plen 0: [desc: I#9=BT_MAC] -EVENT[15]: 0.000154825 - core[1].svSysDesc(14), plen 0: [desc: I#9=BT_MAC] -EVENT[16]: 0.000193350 - core[0].svSysDesc(14), plen 0: [desc: I#10=BT_BB] -EVENT[17]: 0.000193350 - core[1].svSysDesc(14), plen 0: [desc: I#10=BT_BB] -EVENT[18]: 0.000212875 - core[0].svSysDesc(14), plen 0: [desc: I#11=BT_BB_NMI] -EVENT[19]: 0.000212875 - core[1].svSysDesc(14), plen 0: [desc: I#11=BT_BB_NMI] -EVENT[20]: 0.000231625 - core[0].svSysDesc(14), plen 0: [desc: I#12=RWBT] -EVENT[21]: 0.000231625 - core[1].svSysDesc(14), plen 0: [desc: I#12=RWBT] -EVENT[22]: 0.000250250 - core[0].svSysDesc(14), plen 0: [desc: I#13=RWBLE] -EVENT[23]: 0.000250250 - core[1].svSysDesc(14), plen 0: [desc: I#13=RWBLE] -EVENT[24]: 0.000269450 - core[0].svSysDesc(14), plen 0: [desc: I#14=RWBT_NMI] -EVENT[25]: 0.000269450 - core[1].svSysDesc(14), plen 0: [desc: I#14=RWBT_NMI] -EVENT[26]: 0.000288925 - core[0].svSysDesc(14), plen 0: [desc: I#15=RWBLE_NMI] -EVENT[27]: 0.000288925 - core[1].svSysDesc(14), plen 0: [desc: I#15=RWBLE_NMI] -EVENT[28]: 0.000310575 - core[0].svSysDesc(14), plen 0: [desc: I#16=SLC0] -EVENT[29]: 0.000310575 - core[1].svSysDesc(14), plen 0: [desc: I#16=SLC0] -EVENT[30]: 0.000329150 - core[0].svSysDesc(14), plen 0: [desc: I#17=SLC1] -EVENT[31]: 0.000329150 - core[1].svSysDesc(14), plen 0: [desc: I#17=SLC1] -EVENT[32]: 0.000347675 - core[0].svSysDesc(14), plen 0: [desc: I#18=UHCI0] -EVENT[33]: 0.000347675 - core[1].svSysDesc(14), plen 0: [desc: I#18=UHCI0] -EVENT[34]: 0.000366225 - core[0].svSysDesc(14), plen 0: [desc: I#19=UHCI1] -EVENT[35]: 0.000366225 - core[1].svSysDesc(14), plen 0: [desc: I#19=UHCI1] -EVENT[36]: 0.000386350 - core[0].svSysDesc(14), plen 0: [desc: I#20=TG0_T0_LEVEL] -EVENT[37]: 0.000386350 - core[1].svSysDesc(14), plen 0: [desc: I#20=TG0_T0_LEVEL] -EVENT[38]: 0.000406575 - core[0].svSysDesc(14), plen 0: [desc: I#21=TG0_T1_LEVEL] -EVENT[39]: 0.000406575 - core[1].svSysDesc(14), plen 0: [desc: I#21=TG0_T1_LEVEL] -EVENT[40]: 0.000427300 - core[0].svSysDesc(14), plen 0: [desc: I#22=TG0_WDT_LEVEL] -EVENT[41]: 0.000427300 - core[1].svSysDesc(14), plen 0: [desc: I#22=TG0_WDT_LEVEL] -EVENT[42]: 0.000448000 - core[0].svSysDesc(14), plen 0: [desc: I#23=TG0_LACT_LEVEL] -EVENT[43]: 0.000448000 - core[1].svSysDesc(14), plen 0: [desc: I#23=TG0_LACT_LEVEL] -EVENT[44]: 0.000468250 - core[0].svSysDesc(14), plen 0: [desc: I#24=TG1_T0_LEVEL] -EVENT[45]: 0.000468250 - core[1].svSysDesc(14), plen 0: [desc: I#24=TG1_T0_LEVEL] -EVENT[46]: 0.000488500 - core[0].svSysDesc(14), plen 0: [desc: I#25=TG1_T1_LEVEL] -EVENT[47]: 0.000488500 - core[1].svSysDesc(14), plen 0: [desc: I#25=TG1_T1_LEVEL] -EVENT[48]: 0.000508975 - core[0].svSysDesc(14), plen 0: [desc: I#26=TG1_WDT_LEVEL] -EVENT[49]: 0.000508975 - core[1].svSysDesc(14), plen 0: [desc: I#26=TG1_WDT_LEVEL] -EVENT[50]: 0.000529850 - core[0].svSysDesc(14), plen 0: [desc: I#27=TG1_LACT_LEVEL] -EVENT[51]: 0.000529850 - core[1].svSysDesc(14), plen 0: [desc: I#27=TG1_LACT_LEVEL] -EVENT[52]: 0.000548375 - core[0].svSysDesc(14), plen 0: [desc: I#28=GPIO] -EVENT[53]: 0.000548375 - core[1].svSysDesc(14), plen 0: [desc: I#28=GPIO] -EVENT[54]: 0.000570825 - core[0].svSysDesc(14), plen 0: [desc: I#29=GPIO_NMI] -EVENT[55]: 0.000570825 - core[1].svSysDesc(14), plen 0: [desc: I#29=GPIO_NMI] -EVENT[56]: 0.000590425 - core[0].svSysDesc(14), plen 0: [desc: I#30=FROM_CPU0] -EVENT[57]: 0.000590425 - core[1].svSysDesc(14), plen 0: [desc: I#30=FROM_CPU0] -EVENT[58]: 0.000610000 - core[0].svSysDesc(14), plen 0: [desc: I#31=FROM_CPU1] -EVENT[59]: 0.000610000 - core[1].svSysDesc(14), plen 0: [desc: I#31=FROM_CPU1] -EVENT[60]: 0.000629625 - core[0].svSysDesc(14), plen 0: [desc: I#32=FROM_CPU2] -EVENT[61]: 0.000629625 - core[1].svSysDesc(14), plen 0: [desc: I#32=FROM_CPU2] -EVENT[62]: 0.000649425 - core[0].svSysDesc(14), plen 0: [desc: I#33=FROM_CPU3] -EVENT[63]: 0.000649425 - core[1].svSysDesc(14), plen 0: [desc: I#33=FROM_CPU3] -EVENT[64]: 0.000667975 - core[0].svSysDesc(14), plen 0: [desc: I#34=SPI0] -EVENT[65]: 0.000667975 - core[1].svSysDesc(14), plen 0: [desc: I#34=SPI0] -EVENT[66]: 0.000686500 - core[0].svSysDesc(14), plen 0: [desc: I#35=SPI1] -EVENT[67]: 0.000686500 - core[1].svSysDesc(14), plen 0: [desc: I#35=SPI1] -EVENT[68]: 0.000704825 - core[0].svSysDesc(14), plen 0: [desc: I#36=SPI2] -EVENT[69]: 0.000704825 - core[1].svSysDesc(14), plen 0: [desc: I#36=SPI2] -EVENT[70]: 0.000723100 - core[0].svSysDesc(14), plen 0: [desc: I#37=SPI3] -EVENT[71]: 0.000723100 - core[1].svSysDesc(14), plen 0: [desc: I#37=SPI3] -EVENT[72]: 0.000741550 - core[0].svSysDesc(14), plen 0: [desc: I#38=I2S0] -EVENT[73]: 0.000741550 - core[1].svSysDesc(14), plen 0: [desc: I#38=I2S0] -EVENT[74]: 0.000760000 - core[0].svSysDesc(14), plen 0: [desc: I#39=I2S1] -EVENT[75]: 0.000760000 - core[1].svSysDesc(14), plen 0: [desc: I#39=I2S1] -EVENT[76]: 0.000778475 - core[0].svSysDesc(14), plen 0: [desc: I#40=UART0] -EVENT[77]: 0.000778475 - core[1].svSysDesc(14), plen 0: [desc: I#40=UART0] -EVENT[78]: 0.000797050 - core[0].svSysDesc(14), plen 0: [desc: I#41=UART1] -EVENT[79]: 0.000797050 - core[1].svSysDesc(14), plen 0: [desc: I#41=UART1] -EVENT[80]: 0.000815625 - core[0].svSysDesc(14), plen 0: [desc: I#42=UART2] -EVENT[81]: 0.000815625 - core[1].svSysDesc(14), plen 0: [desc: I#42=UART2] -EVENT[82]: 0.000835000 - core[0].svSysDesc(14), plen 0: [desc: I#43=SDIO_HOST] -EVENT[83]: 0.000835000 - core[1].svSysDesc(14), plen 0: [desc: I#43=SDIO_HOST] -EVENT[84]: 0.000854075 - core[0].svSysDesc(14), plen 0: [desc: I#44=ETH_MAC] -EVENT[85]: 0.000854075 - core[1].svSysDesc(14), plen 0: [desc: I#44=ETH_MAC] -EVENT[86]: 0.000875600 - core[0].svSysDesc(14), plen 0: [desc: I#45=PWM0] -EVENT[87]: 0.000875600 - core[1].svSysDesc(14), plen 0: [desc: I#45=PWM0] -EVENT[88]: 0.000893850 - core[0].svSysDesc(14), plen 0: [desc: I#46=PWM1] -EVENT[89]: 0.000893850 - core[1].svSysDesc(14), plen 0: [desc: I#46=PWM1] -EVENT[90]: 0.000912375 - core[0].svSysDesc(14), plen 0: [desc: I#47=PWM2] -EVENT[91]: 0.000912375 - core[1].svSysDesc(14), plen 0: [desc: I#47=PWM2] -EVENT[92]: 0.000930950 - core[0].svSysDesc(14), plen 0: [desc: I#48=PWM3] -EVENT[93]: 0.000930950 - core[1].svSysDesc(14), plen 0: [desc: I#48=PWM3] -EVENT[94]: 0.000949375 - core[0].svSysDesc(14), plen 0: [desc: I#49=LEDC] -EVENT[95]: 0.000949375 - core[1].svSysDesc(14), plen 0: [desc: I#49=LEDC] -EVENT[96]: 0.000968075 - core[0].svSysDesc(14), plen 0: [desc: I#50=EFUSE] -EVENT[97]: 0.000968075 - core[1].svSysDesc(14), plen 0: [desc: I#50=EFUSE] -EVENT[98]: 0.000986275 - core[0].svSysDesc(14), plen 0: [desc: I#51=CAN] -EVENT[99]: 0.000986275 - core[1].svSysDesc(14), plen 0: [desc: I#51=CAN] -EVENT[100]: 0.001005625 - core[0].svSysDesc(14), plen 0: [desc: I#52=RTC_CORE] -EVENT[101]: 0.001005625 - core[1].svSysDesc(14), plen 0: [desc: I#52=RTC_CORE] -EVENT[102]: 0.001023700 - core[0].svSysDesc(14), plen 0: [desc: I#53=RMT] -EVENT[103]: 0.001023700 - core[1].svSysDesc(14), plen 0: [desc: I#53=RMT] -EVENT[104]: 0.001042050 - core[0].svSysDesc(14), plen 0: [desc: I#54=PCNT] -EVENT[105]: 0.001042050 - core[1].svSysDesc(14), plen 0: [desc: I#54=PCNT] -EVENT[106]: 0.001061500 - core[0].svSysDesc(14), plen 0: [desc: I#55=I2C_EXT0] -EVENT[107]: 0.001061500 - core[1].svSysDesc(14), plen 0: [desc: I#55=I2C_EXT0] -EVENT[108]: 0.001081100 - core[0].svSysDesc(14), plen 0: [desc: I#56=I2C_EXT1] -EVENT[109]: 0.001081100 - core[1].svSysDesc(14), plen 0: [desc: I#56=I2C_EXT1] -EVENT[110]: 0.001099425 - core[0].svSysDesc(14), plen 0: [desc: I#57=RSA] -EVENT[111]: 0.001099425 - core[1].svSysDesc(14), plen 0: [desc: I#57=RSA] -EVENT[112]: 0.001118625 - core[0].svSysDesc(14), plen 0: [desc: I#58=SPI1_DMA] -EVENT[113]: 0.001118625 - core[1].svSysDesc(14), plen 0: [desc: I#58=SPI1_DMA] -EVENT[114]: 0.001137775 - core[0].svSysDesc(14), plen 0: [desc: I#59=SPI2_DMA] -EVENT[115]: 0.001137775 - core[1].svSysDesc(14), plen 0: [desc: I#59=SPI2_DMA] -EVENT[116]: 0.001156950 - core[0].svSysDesc(14), plen 0: [desc: I#60=SPI3_DMA] -EVENT[117]: 0.001156950 - core[1].svSysDesc(14), plen 0: [desc: I#60=SPI3_DMA] -EVENT[118]: 0.001175175 - core[0].svSysDesc(14), plen 0: [desc: I#61=WDT] -EVENT[119]: 0.001175175 - core[1].svSysDesc(14), plen 0: [desc: I#61=WDT] -EVENT[120]: 0.001197300 - core[0].svSysDesc(14), plen 0: [desc: I#62=TIMER1] -EVENT[121]: 0.001197300 - core[1].svSysDesc(14), plen 0: [desc: I#62=TIMER1] -EVENT[122]: 0.001216250 - core[0].svSysDesc(14), plen 0: [desc: I#63=TIMER2] -EVENT[123]: 0.001216250 - core[1].svSysDesc(14), plen 0: [desc: I#63=TIMER2] -EVENT[124]: 0.001236175 - core[0].svSysDesc(14), plen 0: [desc: I#64=TG0_T0_EDGE] -EVENT[125]: 0.001236175 - core[1].svSysDesc(14), plen 0: [desc: I#64=TG0_T0_EDGE] -EVENT[126]: 0.001256275 - core[0].svSysDesc(14), plen 0: [desc: I#65=TG0_T1_EDGE] -EVENT[127]: 0.001256275 - core[1].svSysDesc(14), plen 0: [desc: I#65=TG0_T1_EDGE] -EVENT[128]: 0.001276675 - core[0].svSysDesc(14), plen 0: [desc: I#66=TG0_WDT_EDGE] -EVENT[129]: 0.001276675 - core[1].svSysDesc(14), plen 0: [desc: I#66=TG0_WDT_EDGE] -EVENT[130]: 0.001297375 - core[0].svSysDesc(14), plen 0: [desc: I#67=TG0_LACT_EDGE] -EVENT[131]: 0.001297375 - core[1].svSysDesc(14), plen 0: [desc: I#67=TG0_LACT_EDGE] -EVENT[132]: 0.001317425 - core[0].svSysDesc(14), plen 0: [desc: I#68=TG1_T0_EDGE] -EVENT[133]: 0.001317425 - core[1].svSysDesc(14), plen 0: [desc: I#68=TG1_T0_EDGE] -EVENT[134]: 0.001337650 - core[0].svSysDesc(14), plen 0: [desc: I#69=TG1_T1_EDGE] -EVENT[135]: 0.001337650 - core[1].svSysDesc(14), plen 0: [desc: I#69=TG1_T1_EDGE] -EVENT[136]: 0.001357950 - core[0].svSysDesc(14), plen 0: [desc: I#70=TG1_WDT_EDGE] -EVENT[137]: 0.001357950 - core[1].svSysDesc(14), plen 0: [desc: I#70=TG1_WDT_EDGE] -EVENT[138]: 0.001378625 - core[0].svSysDesc(14), plen 0: [desc: I#71=TG1_LACT_EDGE] -EVENT[139]: 0.001378625 - core[1].svSysDesc(14), plen 0: [desc: I#71=TG1_LACT_EDGE] -EVENT[140]: 0.001397500 - core[0].svSysDesc(14), plen 0: [desc: I#72=MMU_IA] -EVENT[141]: 0.001397500 - core[1].svSysDesc(14), plen 0: [desc: I#72=MMU_IA] -EVENT[142]: 0.001416425 - core[0].svSysDesc(14), plen 0: [desc: I#73=MPU_IA] -EVENT[143]: 0.001416425 - core[1].svSysDesc(14), plen 0: [desc: I#73=MPU_IA] -EVENT[144]: 0.001435550 - core[0].svSysDesc(14), plen 0: [desc: I#74=CACHE_IA] -EVENT[145]: 0.001435550 - core[1].svSysDesc(14), plen 0: [desc: I#74=CACHE_IA] -EVENT[146]: 0.001441950 - core[0].svSysTimeUs(13), plen 0: [time: 10000] -EVENT[147]: 0.001441950 - core[1].svSysTimeUs(13), plen 0: [time: 10000] -EVENT[148]: 0.001647400 - core[0].svTaskInfo(9), plen 0: [tid: 12253880, prio: 22, name: esp_timer] -EVENT[149]: 0.001647400 - core[1].svTaskInfo(9), plen 0: [tid: 12253880, prio: 22, name: esp_timer] -EVENT[150]: 0.001652000 - core[0].svStackInfo(21), plen 0: [tid: 12253880, base: 1073408692, sz: 3436, unused: 0] -EVENT[151]: 0.001652000 - core[1].svStackInfo(21), plen 0: [tid: 12253880, base: 1073408692, sz: 3436, unused: 0] -EVENT[152]: 0.001738550 - core[0].svTaskInfo(9), plen 0: [tid: 12254636, prio: 24, name: ipc0] -EVENT[153]: 0.001738550 - core[1].svTaskInfo(9), plen 0: [tid: 12254636, prio: 24, name: ipc0] -EVENT[154]: 0.001742750 - core[0].svStackInfo(21), plen 0: [tid: 12254636, base: 1073430180, sz: 1388, unused: 0] -EVENT[155]: 0.001742750 - core[1].svStackInfo(21), plen 0: [tid: 12254636, base: 1073430180, sz: 1388, unused: 0] -EVENT[156]: 0.001828975 - core[0].svTaskInfo(9), plen 0: [tid: 12275372, prio: 24, name: ipc1] -EVENT[157]: 0.001828975 - core[1].svTaskInfo(9), plen 0: [tid: 12275372, prio: 24, name: ipc1] -EVENT[158]: 0.001833225 - core[0].svStackInfo(21), plen 0: [tid: 12275372, base: 1073432232, sz: 1384, unused: 0] -EVENT[159]: 0.001833225 - core[1].svStackInfo(21), plen 0: [tid: 12275372, base: 1073432232, sz: 1384, unused: 0] -EVENT[160]: 0.001871225 - core[0].svTaskInfo(9), plen 0: [tid: 12291908, prio: 5, name: blink_task] -EVENT[161]: 0.001871225 - core[1].svTaskInfo(9), plen 0: [tid: 12291908, prio: 5, name: blink_task] -EVENT[162]: 0.001875650 - core[0].svStackInfo(21), plen 0: [tid: 12291908, base: 1073448452, sz: 524, unused: 0] -EVENT[163]: 0.001875650 - core[1].svStackInfo(21), plen 0: [tid: 12291908, base: 1073448452, sz: 524, unused: 0] -EVENT[164]: 0.002070800 - core[0].svTaskInfo(9), plen 0: [tid: 12282660, prio: 1, name: main] -EVENT[165]: 0.002070800 - core[1].svTaskInfo(9), plen 0: [tid: 12282660, prio: 1, name: main] -EVENT[166]: 0.002075200 - core[0].svStackInfo(21), plen 0: [tid: 12282660, base: 1073437472, sz: 3296, unused: 0] -EVENT[167]: 0.002075200 - core[1].svStackInfo(21), plen 0: [tid: 12282660, base: 1073437472, sz: 3296, unused: 0] -EVENT[168]: 0.002153375 - core[0].svTaskInfo(9), plen 0: [tid: 12284560, prio: 0, name: IDLE0] -EVENT[169]: 0.002153375 - core[1].svTaskInfo(9), plen 0: [tid: 12284560, prio: 0, name: IDLE0] -EVENT[170]: 0.002157850 - core[0].svStackInfo(21), plen 0: [tid: 12284560, base: 1073441932, sz: 1236, unused: 0] -EVENT[171]: 0.002157850 - core[1].svStackInfo(21), plen 0: [tid: 12284560, base: 1073441932, sz: 1236, unused: 0] -EVENT[172]: 0.002228950 - core[0].svTaskInfo(9), plen 0: [tid: 12286460, prio: 0, name: IDLE1] -EVENT[173]: 0.002228950 - core[1].svTaskInfo(9), plen 0: [tid: 12286460, prio: 0, name: IDLE1] -EVENT[174]: 0.002233250 - core[0].svStackInfo(21), plen 0: [tid: 12286460, base: 1073443832, sz: 1112, unused: 0] -EVENT[175]: 0.002233250 - core[1].svStackInfo(21), plen 0: [tid: 12286460, base: 1073443832, sz: 1112, unused: 0] -EVENT[176]: 0.002319675 - core[0].svTaskInfo(9), plen 0: [tid: 12289116, prio: 1, name: Tmr Svc] -EVENT[177]: 0.002319675 - core[1].svTaskInfo(9), plen 0: [tid: 12289116, prio: 1, name: Tmr Svc] -EVENT[178]: 0.002324100 - core[0].svStackInfo(21), plen 0: [tid: 12289116, base: 1073445976, sz: 1384, unused: 0] -EVENT[179]: 0.002324100 - core[1].svStackInfo(21), plen 0: [tid: 12289116, base: 1073445976, sz: 1384, unused: 0] -EVENT[180]: 0.002431200 - core[0].svTaskInfo(9), plen 0: [tid: 12294320, prio: 5, name: blink_task2] -EVENT[181]: 0.002431200 - core[1].svTaskInfo(9), plen 0: [tid: 12294320, prio: 5, name: blink_task2] -EVENT[182]: 0.002438750 - core[0].svStackInfo(21), plen 0: [tid: 12294320, base: 1073451180, sz: 1748, unused: 0] -EVENT[183]: 0.002438750 - core[1].svStackInfo(21), plen 0: [tid: 12294320, base: 1073451180, sz: 1748, unused: 0] -EVENT[184]: 0.002446150 - core[0].svNumModules(27), plen 1: [mod_cnt: 0] -EVENT[185]: 0.002446150 - core[1].svNumModules(27), plen 1: [mod_cnt: 0] -EVENT[186]: 0.002484225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[187]: 0.002496125 - core[0].svTaskStopReady(7), plen 0: [tid: 12291908, cause: 4] -EVENT[188]: 0.002508025 - core[1].svTaskStartExec(4), plen 0: [tid: 12294320] -EVENT[189]: 0.002516350 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[190]: 0.002524325 - core[1].svTaskStopReady(7), plen 0: [tid: 12294320, cause: 27] -EVENT[191]: 0.002532350 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[192]: 0.002541200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[193]: 0.002548475 - core[0].svTaskStartExec(4), plen 0: [tid: 12282660] -EVENT[194]: 0.002556375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[195]: 0.002564450 - core[0].vTaskDelete(33), plen 4: [xTaskToDelete: 12282660] -EVENT[196]: 0.002577700 - core[1].svIdle(17), plen 0: [] -EVENT[197]: 0.002585225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[198]: 0.002592950 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[199]: 0.002605950 - core[0].svIdle(17), plen 0: [] -EVENT[200]: 0.008819550 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[201]: 0.008828075 - core[0].svTaskStartReady(6), plen 0: [tid: 12291908] -EVENT[202]: 0.008828075 - core[1].svTaskStartReady(6), plen 0: [tid: 12291908] -EVENT[203]: 0.008837475 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[204]: 0.008850450 - core[0].svTaskStartExec(4), plen 0: [tid: 12291908] -EVENT[205]: 0.008872650 - core[0].svModuleDesc(22), plen 0: [mod_id: 0, evt_off: 512, desc: ESP32 SystemView Heap Tracing Module] -EVENT[206]: 0.008872650 - core[1].svModuleDesc(22), plen 0: [mod_id: 0, evt_off: 512, desc: ESP32 SystemView Heap Tracing Module] -EVENT[207]: 0.008886175 - core[0].svTaskStartReady(6), plen 0: [tid: 12294320] -EVENT[208]: 0.008886175 - core[1].svTaskStartReady(6), plen 0: [tid: 12294320] -EVENT[209]: 0.008897425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[210]: 0.008906150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[211]: 0.008919900 - core[0].esp_sysview_heap_trace_alloc(512), plen 16: [addr: 1073450504, size: 64, callers: [1074601571, 1074296884]] -[0.008919900] HEAP: Allocated 64 bytes @ 0x3ffb8e08 from task "blink_task" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:65 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[212]: 0.008928250 - core[1].svTaskStartExec(4), plen 0: [tid: 12294320] -EVENT[213]: 0.008957950 - core[0].esp_sysview_heap_trace_alloc(512), plen 16: [addr: 1073450572, size: 80, callers: [1074298654, 1074299267]] -[0.008957950] HEAP: Allocated 80 bytes @ 0x3ffb8e4c from task "blink_task" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:391 -/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:498 - -EVENT[214]: 0.008967250 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 1, uxItemSize: 0, ucQueueType: 4] -EVENT[215]: 0.008977300 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12291660, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[216]: 0.008984625 - core[1].esp_sysview_heap_trace_alloc(512), plen 16: [addr: 1073450656, size: 65, callers: [1074601382, 1074296884]] -[0.008984625] HEAP: Allocated 65 bytes @ 0x3ffb8ea0 from task "blink_task2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:30 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[217]: 0.008995725 - core[0].xQueueGenericReceive(49), plen 15: [xQueue: 12291660, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[218]: 0.009010075 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[219]: 0.009018025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[220]: 0.009031900 - core[1].svTaskStartExec(4), plen 0: [tid: 12294320] -EVENT[221]: 0.009089600 - core[0].esp_sysview_heap_trace_alloc(512), plen 16: [addr: 1073434644, size: 80, callers: [1074298654, 1074299267]] -[0.009089600] HEAP: Allocated 80 bytes @ 0x3ffb5014 from task "blink_task" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:391 -/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:498 - -EVENT[222]: 0.009098175 - core[1].svTaskStopReady(7), plen 0: [tid: 12294320, cause: 27] -EVENT[223]: 0.009106300 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 1, uxItemSize: 0, ucQueueType: 4] -EVENT[224]: 0.009113825 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[225]: 0.009121600 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12275732, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[226]: 0.009129000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[227]: 0.009137900 - core[0].xQueueGenericReceive(49), plen 15: [xQueue: 12275732, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[228]: 0.009145425 - core[1].svIdle(17), plen 0: [] -EVENT[229]: 0.009169600 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12275732, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[230]: 0.009185225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12291660, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[231]: 0.009195125 - core[0].svTaskStartReady(6), plen 0: [tid: 12294320] -EVENT[232]: 0.009195125 - core[1].svTaskStartReady(6), plen 0: [tid: 12294320] -EVENT[233]: 0.009207000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[234]: 0.009215575 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[235]: 0.009223275 - core[0].esp_sysview_heap_trace_alloc(512), plen 16: [addr: 1073434728, size: 96, callers: [1074601587, 1074296884]] -[0.009223275] HEAP: Allocated 96 bytes @ 0x3ffb5068 from task "blink_task" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:68 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[236]: 0.009231050 - core[1].svTaskStartExec(4), plen 0: [tid: 12294320] -EVENT[237]: 0.009241875 - core[0].xQueueGenericReceive(49), plen 15: [xQueue: 12291660, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[238]: 0.009257225 - core[1].svTaskStopReady(7), plen 0: [tid: 12294320, cause: 27] -EVENT[239]: 0.009269200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[240]: 0.009278275 - core[0].xQueueGenericReceive(49), plen 15: [xQueue: 12275732, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[241]: 0.009286275 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[242]: 0.009303450 - core[1].svIdle(17), plen 0: [] -EVENT[243]: 0.009310950 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12275732, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[244]: 0.009329625 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12291660, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[245]: 0.009339525 - core[0].svTaskStartReady(6), plen 0: [tid: 12294320] -EVENT[246]: 0.009339525 - core[1].svTaskStartReady(6), plen 0: [tid: 12294320] -EVENT[247]: 0.009351425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[248]: 0.009359450 - core[0].esp_sysview_heap_trace_free(513), plen 15: [addr: 1073450504, callers: [1074601600, 1074296884]] -[0.009359450] HEAP: Freed bytes @ 0x3ffb8e08 from task "blink_task" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:70 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[249]: 0.009367800 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[250]: 0.009378950 - core[0].xQueueGenericReceive(49), plen 15: [xQueue: 12291660, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[251]: 0.009387450 - core[1].svTaskStartExec(4), plen 0: [tid: 12294320] -EVENT[252]: 0.009402575 - core[1].svTaskStopReady(7), plen 0: [tid: 12294320, cause: 27] -EVENT[253]: 0.009414900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[254]: 0.009423125 - core[0].xQueueGenericReceive(49), plen 15: [xQueue: 12275732, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[255]: 0.009430250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[256]: 0.009445425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12275732, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[257]: 0.009453075 - core[1].svIdle(17), plen 0: [] -EVENT[258]: 0.009469225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12291660, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[259]: 0.009479025 - core[0].svTaskStartReady(6), plen 0: [tid: 12294320] -EVENT[260]: 0.009479025 - core[1].svTaskStartReady(6), plen 0: [tid: 12294320] -EVENT[261]: 0.009490950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[262]: 0.009499475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[263]: 0.009507600 - core[0].esp_sysview_heap_trace_alloc(512), plen 16: [addr: 1073450504, size: 10, callers: [1074601615, 1074296884]] -[0.009507600] HEAP: Allocated 10 bytes @ 0x3ffb8e08 from task "blink_task" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:72 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[264]: 0.009515300 - core[1].svTaskStartExec(4), plen 0: [tid: 12294320] -EVENT[265]: 0.009526100 - core[0].xQueueGenericReceive(49), plen 15: [xQueue: 12291660, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[266]: 0.009541550 - core[1].svTaskStopReady(7), plen 0: [tid: 12294320, cause: 27] -EVENT[267]: 0.009553850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[268]: 0.009561100 - core[0].xQueueGenericReceive(49), plen 15: [xQueue: 12275732, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[269]: 0.009568400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[270]: 0.009585075 - core[1].svIdle(17), plen 0: [] -EVENT[271]: 0.009593375 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12275732, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[272]: 0.009609150 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12291660, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[273]: 0.009621875 - core[0].svTaskStartReady(6), plen 0: [tid: 12294320] -EVENT[274]: 0.009621875 - core[1].svTaskStartReady(6), plen 0: [tid: 12294320] -EVENT[275]: 0.009633775 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[276]: 0.009642300 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[277]: 0.009649475 - core[0].esp_sysview_heap_trace_alloc(512), plen 16: [addr: 1073450520, size: 23, callers: [1074601628, 1074296884]] -[0.009649475] HEAP: Allocated 23 bytes @ 0x3ffb8e18 from task "blink_task" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:73 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[278]: 0.009657875 - core[1].svTaskStartExec(4), plen 0: [tid: 12294320] -EVENT[279]: 0.009666025 - core[0].xQueueGenericReceive(49), plen 15: [xQueue: 12291660, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[280]: 0.009681500 - core[1].svTaskStopReady(7), plen 0: [tid: 12294320, cause: 27] -EVENT[281]: 0.009693375 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[282]: 0.009702800 - core[0].xQueueGenericReceive(49), plen 15: [xQueue: 12275732, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[283]: 0.009710550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[284]: 0.009726725 - core[1].svIdle(17), plen 0: [] -EVENT[285]: 0.010504825 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12275732, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[286]: 0.010520650 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12291660, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[287]: 0.010530550 - core[0].svTaskStartReady(6), plen 0: [tid: 12294320] -EVENT[288]: 0.010530550 - core[1].svTaskStartReady(6), plen 0: [tid: 12294320] -EVENT[289]: 0.010542400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[290]: 0.010550025 - core[0].esp_sysview_heap_trace_free(513), plen 15: [addr: 1073450520, callers: [1074601643, 1074296884]] -[0.010550025] HEAP: Freed bytes @ 0x3ffb8e18 from task "blink_task" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:76 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[291]: 0.010557450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[292]: 0.010569700 - core[0].xQueueGenericReceive(49), plen 15: [xQueue: 12291660, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[293]: 0.010577700 - core[1].svTaskStartExec(4), plen 0: [tid: 12294320] -EVENT[294]: 0.010592825 - core[1].svTaskStopReady(7), plen 0: [tid: 12294320, cause: 27] -EVENT[295]: 0.010605950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[296]: 0.010613575 - core[0].xQueueGenericReceive(49), plen 15: [xQueue: 12275732, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[297]: 0.010620900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[298]: 0.010637050 - core[1].svIdle(17), plen 0: [] -EVENT[299]: 0.012240950 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12275732, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[300]: 0.012256775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12291660, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[301]: 0.012266650 - core[0].svTaskStartReady(6), plen 0: [tid: 12294320] -EVENT[302]: 0.012266650 - core[1].svTaskStartReady(6), plen 0: [tid: 12294320] -EVENT[303]: 0.012281350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[304]: 0.012289475 - core[0].svTaskStopReady(7), plen 0: [tid: 12291908, cause: 27] -EVENT[305]: 0.012297450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[306]: 0.012306350 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[307]: 0.012312875 - core[1].svTaskStartExec(4), plen 0: [tid: 12294320] -EVENT[308]: 0.012320700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[309]: 0.012328950 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12291660, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[310]: 0.012338100 - core[0].svIdle(17), plen 0: [] -EVENT[311]: 0.012640475 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12275732, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[312]: 0.014931850 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12275732, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[313]: 0.014963325 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12291660, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[314]: 0.014984150 - core[1].esp_sysview_heap_trace_alloc(512), plen 16: [addr: 1073434828, size: 97, callers: [1074601399, 1074296884]] -[0.014984150] HEAP: Allocated 97 bytes @ 0x3ffb50cc from task "blink_task2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:33 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[315]: 0.014997400 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12291660, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[316]: 0.015031050 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12275732, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[317]: 0.017622800 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12275732, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[318]: 0.017638675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12291660, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[319]: 0.017656375 - core[1].esp_sysview_heap_trace_free(513), plen 15: [addr: 1073450656, callers: [1074601412, 1074296884]] -[0.017656375] HEAP: Freed bytes @ 0x3ffb8ea0 from task "blink_task2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:35 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[320]: 0.017674025 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12291660, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[321]: 0.017701700 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12275732, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[322]: 0.018819550 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[323]: 0.018829625 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[324]: 0.018844750 - core[0].svIdle(17), plen 0: [] -EVENT[325]: 0.019010075 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[326]: 0.019017950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[327]: 0.019033200 - core[1].svTaskStartExec(4), plen 0: [tid: 12294320] -EVENT[328]: 0.019358925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12275732, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[329]: 0.019374600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12291660, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[330]: 0.019395425 - core[1].esp_sysview_heap_trace_alloc(512), plen 16: [addr: 1073450520, size: 11, callers: [1074601427, 1074296884]] -[0.019395425] HEAP: Allocated 11 bytes @ 0x3ffb8e18 from task "blink_task2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:37 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[331]: 0.019412600 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12291660, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[332]: 0.019446250 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12275732, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[333]: 0.022049900 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12275732, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[334]: 0.022065775 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12291660, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[335]: 0.022086625 - core[1].esp_sysview_heap_trace_alloc(512), plen 16: [addr: 1073450536, size: 24, callers: [1074601440, 1074296884]] -[0.022086625] HEAP: Allocated 24 bytes @ 0x3ffb8e28 from task "blink_task2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:38 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[336]: 0.022103925 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12291660, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[337]: 0.022137550 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12275732, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[338]: 0.024740850 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12275732, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[339]: 0.024756725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12291660, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[340]: 0.024770475 - core[1].esp_sysview_heap_trace_free(513), plen 15: [addr: 1073450536, callers: [1074601455, 1074296884]] -[0.024770475] HEAP: Freed bytes @ 0x3ffb8e28 from task "blink_task2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:41 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[341]: 0.024791750 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12291660, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[342]: 0.024819500 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12275732, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[343]: 0.026476950 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12275732, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[344]: 0.026495700 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12291660, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[345]: 0.026506975 - core[0].svTaskStartReady(6), plen 0: [tid: 12291908] -EVENT[346]: 0.026506975 - core[1].svTaskStartReady(6), plen 0: [tid: 12291908] -EVENT[347]: 0.026518525 - core[1].svTaskStopReady(7), plen 0: [tid: 12294320, cause: 27] -EVENT[348]: 0.026526625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[349]: 0.026535575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[350]: 0.026544075 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[351]: 0.026551650 - core[0].svTaskStartExec(4), plen 0: [tid: 12291908] -EVENT[352]: 0.026559500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[353]: 0.148816725 - core[1].svIdle(17), plen 0: [] -EVENT[354]: 0.148825750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 1] -EVENT[355]: 0.148833200 - core[0].svTaskStopReady(7), plen 0: [tid: 12291908, cause: 4] -EVENT[356]: 0.148839250 - core[0].svTraceStop(11), plen 0: [] -EVENT[357]: 0.148839250 - core[1].svTraceStop(11), plen 0: [] -Processed 358 events +EVENT[2]: 0.000006650 - core[0].svInit(24), plen 14: [sys_freq: 40000000, cpu_freq: 160000000, ram_base: 1061158912, id_shift: 0] +EVENT[3]: 0.000006650 - core[1].svInit(24), plen 14: [sys_freq: 40000000, cpu_freq: 160000000, ram_base: 1061158912, id_shift: 0] +EVENT[4]: 0.000018550 - core[0].svSysDesc(14), plen 0: [desc: N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS] +EVENT[5]: 0.000018550 - core[1].svSysDesc(14), plen 0: [desc: N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS] +EVENT[6]: 0.000027675 - core[0].svSysDesc(14), plen 0: [desc: I#5=SysTick] +EVENT[7]: 0.000027675 - core[1].svSysDesc(14), plen 0: [desc: I#5=SysTick] +EVENT[8]: 0.000049775 - core[0].svSysDesc(14), plen 0: [desc: I#6=WIFI_MAC] +EVENT[9]: 0.000049775 - core[1].svSysDesc(14), plen 0: [desc: I#6=WIFI_MAC] +EVENT[10]: 0.000063875 - core[0].svSysDesc(14), plen 0: [desc: I#7=WIFI_NMI] +EVENT[11]: 0.000063875 - core[1].svSysDesc(14), plen 0: [desc: I#7=WIFI_NMI] +EVENT[12]: 0.000073825 - core[0].svSysDesc(14), plen 0: [desc: I#8=WIFI_BB] +EVENT[13]: 0.000073825 - core[1].svSysDesc(14), plen 0: [desc: I#8=WIFI_BB] +EVENT[14]: 0.000087500 - core[0].svSysDesc(14), plen 0: [desc: I#9=BT_MAC] +EVENT[15]: 0.000087500 - core[1].svSysDesc(14), plen 0: [desc: I#9=BT_MAC] +EVENT[16]: 0.000101575 - core[0].svSysDesc(14), plen 0: [desc: I#10=BT_BB] +EVENT[17]: 0.000101575 - core[1].svSysDesc(14), plen 0: [desc: I#10=BT_BB] +EVENT[18]: 0.000112375 - core[0].svSysDesc(14), plen 0: [desc: I#11=BT_BB_NMI] +EVENT[19]: 0.000112375 - core[1].svSysDesc(14), plen 0: [desc: I#11=BT_BB_NMI] +EVENT[20]: 0.000122300 - core[0].svSysDesc(14), plen 0: [desc: I#12=RWBT] +EVENT[21]: 0.000122300 - core[1].svSysDesc(14), plen 0: [desc: I#12=RWBT] +EVENT[22]: 0.000132300 - core[0].svSysDesc(14), plen 0: [desc: I#13=RWBLE] +EVENT[23]: 0.000132300 - core[1].svSysDesc(14), plen 0: [desc: I#13=RWBLE] +EVENT[24]: 0.000146800 - core[0].svSysDesc(14), plen 0: [desc: I#14=RWBT_NMI] +EVENT[25]: 0.000146800 - core[1].svSysDesc(14), plen 0: [desc: I#14=RWBT_NMI] +EVENT[26]: 0.000157600 - core[0].svSysDesc(14), plen 0: [desc: I#15=RWBLE_NMI] +EVENT[27]: 0.000157600 - core[1].svSysDesc(14), plen 0: [desc: I#15=RWBLE_NMI] +EVENT[28]: 0.000171900 - core[0].svSysDesc(14), plen 0: [desc: I#16=SLC0] +EVENT[29]: 0.000171900 - core[1].svSysDesc(14), plen 0: [desc: I#16=SLC0] +EVENT[30]: 0.000189550 - core[0].svSysDesc(14), plen 0: [desc: I#17=SLC1] +EVENT[31]: 0.000189550 - core[1].svSysDesc(14), plen 0: [desc: I#17=SLC1] +EVENT[32]: 0.000199525 - core[0].svSysDesc(14), plen 0: [desc: I#18=UHCI0] +EVENT[33]: 0.000199525 - core[1].svSysDesc(14), plen 0: [desc: I#18=UHCI0] +EVENT[34]: 0.000209500 - core[0].svSysDesc(14), plen 0: [desc: I#19=UHCI1] +EVENT[35]: 0.000209500 - core[1].svSysDesc(14), plen 0: [desc: I#19=UHCI1] +EVENT[36]: 0.000224750 - core[0].svSysDesc(14), plen 0: [desc: I#20=TG0_T0_LEVEL] +EVENT[37]: 0.000224750 - core[1].svSysDesc(14), plen 0: [desc: I#20=TG0_T0_LEVEL] +EVENT[38]: 0.000236150 - core[0].svSysDesc(14), plen 0: [desc: I#21=TG0_T1_LEVEL] +EVENT[39]: 0.000236150 - core[1].svSysDesc(14), plen 0: [desc: I#21=TG0_T1_LEVEL] +EVENT[40]: 0.000251850 - core[0].svSysDesc(14), plen 0: [desc: I#22=TG0_WDT_LEVEL] +EVENT[41]: 0.000251850 - core[1].svSysDesc(14), plen 0: [desc: I#22=TG0_WDT_LEVEL] +EVENT[42]: 0.000263625 - core[0].svSysDesc(14), plen 0: [desc: I#23=TG0_LACT_LEVEL] +EVENT[43]: 0.000263625 - core[1].svSysDesc(14), plen 0: [desc: I#23=TG0_LACT_LEVEL] +EVENT[44]: 0.000279050 - core[0].svSysDesc(14), plen 0: [desc: I#24=TG1_T0_LEVEL] +EVENT[45]: 0.000279050 - core[1].svSysDesc(14), plen 0: [desc: I#24=TG1_T0_LEVEL] +EVENT[46]: 0.000294450 - core[0].svSysDesc(14), plen 0: [desc: I#25=TG1_T1_LEVEL] +EVENT[47]: 0.000294450 - core[1].svSysDesc(14), plen 0: [desc: I#25=TG1_T1_LEVEL] +EVENT[48]: 0.000310000 - core[0].svSysDesc(14), plen 0: [desc: I#26=TG1_WDT_LEVEL] +EVENT[49]: 0.000310000 - core[1].svSysDesc(14), plen 0: [desc: I#26=TG1_WDT_LEVEL] +EVENT[50]: 0.000321975 - core[0].svSysDesc(14), plen 0: [desc: I#27=TG1_LACT_LEVEL] +EVENT[51]: 0.000321975 - core[1].svSysDesc(14), plen 0: [desc: I#27=TG1_LACT_LEVEL] +EVENT[52]: 0.000331875 - core[0].svSysDesc(14), plen 0: [desc: I#28=GPIO] +EVENT[53]: 0.000331875 - core[1].svSysDesc(14), plen 0: [desc: I#28=GPIO] +EVENT[54]: 0.000350775 - core[0].svSysDesc(14), plen 0: [desc: I#29=GPIO_NMI] +EVENT[55]: 0.000350775 - core[1].svSysDesc(14), plen 0: [desc: I#29=GPIO_NMI] +EVENT[56]: 0.000361675 - core[0].svSysDesc(14), plen 0: [desc: I#30=FROM_CPU0] +EVENT[57]: 0.000361675 - core[1].svSysDesc(14), plen 0: [desc: I#30=FROM_CPU0] +EVENT[58]: 0.000376375 - core[0].svSysDesc(14), plen 0: [desc: I#31=FROM_CPU1] +EVENT[59]: 0.000376375 - core[1].svSysDesc(14), plen 0: [desc: I#31=FROM_CPU1] +EVENT[60]: 0.000387200 - core[0].svSysDesc(14), plen 0: [desc: I#32=FROM_CPU2] +EVENT[61]: 0.000387200 - core[1].svSysDesc(14), plen 0: [desc: I#32=FROM_CPU2] +EVENT[62]: 0.000401900 - core[0].svSysDesc(14), plen 0: [desc: I#33=FROM_CPU3] +EVENT[63]: 0.000401900 - core[1].svSysDesc(14), plen 0: [desc: I#33=FROM_CPU3] +EVENT[64]: 0.000415650 - core[0].svSysDesc(14), plen 0: [desc: I#34=SPI0] +EVENT[65]: 0.000415650 - core[1].svSysDesc(14), plen 0: [desc: I#34=SPI0] +EVENT[66]: 0.000425400 - core[0].svSysDesc(14), plen 0: [desc: I#35=SPI1] +EVENT[67]: 0.000425400 - core[1].svSysDesc(14), plen 0: [desc: I#35=SPI1] +EVENT[68]: 0.000435175 - core[0].svSysDesc(14), plen 0: [desc: I#36=SPI2] +EVENT[69]: 0.000435175 - core[1].svSysDesc(14), plen 0: [desc: I#36=SPI2] +EVENT[70]: 0.000444900 - core[0].svSysDesc(14), plen 0: [desc: I#37=SPI3] +EVENT[71]: 0.000444900 - core[1].svSysDesc(14), plen 0: [desc: I#37=SPI3] +EVENT[72]: 0.000458850 - core[0].svSysDesc(14), plen 0: [desc: I#38=I2S0] +EVENT[73]: 0.000458850 - core[1].svSysDesc(14), plen 0: [desc: I#38=I2S0] +EVENT[74]: 0.000468600 - core[0].svSysDesc(14), plen 0: [desc: I#39=I2S1] +EVENT[75]: 0.000468600 - core[1].svSysDesc(14), plen 0: [desc: I#39=I2S1] +EVENT[76]: 0.000478575 - core[0].svSysDesc(14), plen 0: [desc: I#40=UART0] +EVENT[77]: 0.000478575 - core[1].svSysDesc(14), plen 0: [desc: I#40=UART0] +EVENT[78]: 0.000492500 - core[0].svSysDesc(14), plen 0: [desc: I#41=UART1] +EVENT[79]: 0.000492500 - core[1].svSysDesc(14), plen 0: [desc: I#41=UART1] +EVENT[80]: 0.000506375 - core[0].svSysDesc(14), plen 0: [desc: I#42=UART2] +EVENT[81]: 0.000506375 - core[1].svSysDesc(14), plen 0: [desc: I#42=UART2] +EVENT[82]: 0.000517150 - core[0].svSysDesc(14), plen 0: [desc: I#43=SDIO_HOST] +EVENT[83]: 0.000517150 - core[1].svSysDesc(14), plen 0: [desc: I#43=SDIO_HOST] +EVENT[84]: 0.000527475 - core[0].svSysDesc(14), plen 0: [desc: I#44=ETH_MAC] +EVENT[85]: 0.000527475 - core[1].svSysDesc(14), plen 0: [desc: I#44=ETH_MAC] +EVENT[86]: 0.000541625 - core[0].svSysDesc(14), plen 0: [desc: I#45=PWM0] +EVENT[87]: 0.000541625 - core[1].svSysDesc(14), plen 0: [desc: I#45=PWM0] +EVENT[88]: 0.000555300 - core[0].svSysDesc(14), plen 0: [desc: I#46=PWM1] +EVENT[89]: 0.000555300 - core[1].svSysDesc(14), plen 0: [desc: I#46=PWM1] +EVENT[90]: 0.000565975 - core[0].svSysDesc(14), plen 0: [desc: I#47=RESERVED] +EVENT[91]: 0.000565975 - core[1].svSysDesc(14), plen 0: [desc: I#47=RESERVED] +EVENT[92]: 0.000576550 - core[0].svSysDesc(14), plen 0: [desc: I#48=RESERVED] +EVENT[93]: 0.000576550 - core[1].svSysDesc(14), plen 0: [desc: I#48=RESERVED] +EVENT[94]: 0.000590325 - core[0].svSysDesc(14), plen 0: [desc: I#49=LEDC] +EVENT[95]: 0.000590325 - core[1].svSysDesc(14), plen 0: [desc: I#49=LEDC] +EVENT[96]: 0.000604225 - core[0].svSysDesc(14), plen 0: [desc: I#50=EFUSE] +EVENT[97]: 0.000604225 - core[1].svSysDesc(14), plen 0: [desc: I#50=EFUSE] +EVENT[98]: 0.000618075 - core[0].svSysDesc(14), plen 0: [desc: I#51=TWAI] +EVENT[99]: 0.000618075 - core[1].svSysDesc(14), plen 0: [desc: I#51=TWAI] +EVENT[100]: 0.000628650 - core[0].svSysDesc(14), plen 0: [desc: I#52=RTC_CORE] +EVENT[101]: 0.000628650 - core[1].svSysDesc(14), plen 0: [desc: I#52=RTC_CORE] +EVENT[102]: 0.000638250 - core[0].svSysDesc(14), plen 0: [desc: I#53=RMT] +EVENT[103]: 0.000638250 - core[1].svSysDesc(14), plen 0: [desc: I#53=RMT] +EVENT[104]: 0.000648075 - core[0].svSysDesc(14), plen 0: [desc: I#54=PCNT] +EVENT[105]: 0.000648075 - core[1].svSysDesc(14), plen 0: [desc: I#54=PCNT] +EVENT[106]: 0.000662700 - core[0].svSysDesc(14), plen 0: [desc: I#55=I2C_EXT0] +EVENT[107]: 0.000662700 - core[1].svSysDesc(14), plen 0: [desc: I#55=I2C_EXT0] +EVENT[108]: 0.000674475 - core[0].svSysDesc(14), plen 0: [desc: I#56=I2C_EXT1] +EVENT[109]: 0.000674475 - core[1].svSysDesc(14), plen 0: [desc: I#56=I2C_EXT1] +EVENT[110]: 0.000689475 - core[0].svSysDesc(14), plen 0: [desc: I#57=RSA] +EVENT[111]: 0.000689475 - core[1].svSysDesc(14), plen 0: [desc: I#57=RSA] +EVENT[112]: 0.000705425 - core[0].svSysDesc(14), plen 0: [desc: I#58=SPI1_DMA] +EVENT[113]: 0.000705425 - core[1].svSysDesc(14), plen 0: [desc: I#58=SPI1_DMA] +EVENT[114]: 0.000717350 - core[0].svSysDesc(14), plen 0: [desc: I#59=SPI2_DMA] +EVENT[115]: 0.000717350 - core[1].svSysDesc(14), plen 0: [desc: I#59=SPI2_DMA] +EVENT[116]: 0.000729475 - core[0].svSysDesc(14), plen 0: [desc: I#60=SPI3_DMA] +EVENT[117]: 0.000729475 - core[1].svSysDesc(14), plen 0: [desc: I#60=SPI3_DMA] +EVENT[118]: 0.000740300 - core[0].svSysDesc(14), plen 0: [desc: I#61=WDT] +EVENT[119]: 0.000740300 - core[1].svSysDesc(14), plen 0: [desc: I#61=WDT] +EVENT[120]: 0.000760650 - core[0].svSysDesc(14), plen 0: [desc: I#62=TIMER1] +EVENT[121]: 0.000760650 - core[1].svSysDesc(14), plen 0: [desc: I#62=TIMER1] +EVENT[122]: 0.000772200 - core[0].svSysDesc(14), plen 0: [desc: I#63=TIMER2] +EVENT[123]: 0.000772200 - core[1].svSysDesc(14), plen 0: [desc: I#63=TIMER2] +EVENT[124]: 0.000785150 - core[0].svSysDesc(14), plen 0: [desc: I#64=TG0_T0_EDGE] +EVENT[125]: 0.000785150 - core[1].svSysDesc(14), plen 0: [desc: I#64=TG0_T0_EDGE] +EVENT[126]: 0.000805850 - core[0].svSysDesc(14), plen 0: [desc: I#65=TG0_T1_EDGE] +EVENT[127]: 0.000805850 - core[1].svSysDesc(14), plen 0: [desc: I#65=TG0_T1_EDGE] +EVENT[128]: 0.000818750 - core[0].svSysDesc(14), plen 0: [desc: I#66=TG0_WDT_EDGE] +EVENT[129]: 0.000818750 - core[1].svSysDesc(14), plen 0: [desc: I#66=TG0_WDT_EDGE] +EVENT[130]: 0.000836050 - core[0].svSysDesc(14), plen 0: [desc: I#67=TG0_LACT_EDGE] +EVENT[131]: 0.000836050 - core[1].svSysDesc(14), plen 0: [desc: I#67=TG0_LACT_EDGE] +EVENT[132]: 0.000848850 - core[0].svSysDesc(14), plen 0: [desc: I#68=TG1_T0_EDGE] +EVENT[133]: 0.000848850 - core[1].svSysDesc(14), plen 0: [desc: I#68=TG1_T0_EDGE] +EVENT[134]: 0.000861475 - core[0].svSysDesc(14), plen 0: [desc: I#69=TG1_T1_EDGE] +EVENT[135]: 0.000861475 - core[1].svSysDesc(14), plen 0: [desc: I#69=TG1_T1_EDGE] +EVENT[136]: 0.000878425 - core[0].svSysDesc(14), plen 0: [desc: I#70=TG1_WDT_EDGE] +EVENT[137]: 0.000878425 - core[1].svSysDesc(14), plen 0: [desc: I#70=TG1_WDT_EDGE] +EVENT[138]: 0.000891925 - core[0].svSysDesc(14), plen 0: [desc: I#71=TG1_LACT_EDGE] +EVENT[139]: 0.000891925 - core[1].svSysDesc(14), plen 0: [desc: I#71=TG1_LACT_EDGE] +EVENT[140]: 0.000907825 - core[0].svSysDesc(14), plen 0: [desc: I#72=MMU_IA] +EVENT[141]: 0.000907825 - core[1].svSysDesc(14), plen 0: [desc: I#72=MMU_IA] +EVENT[142]: 0.000923300 - core[0].svSysDesc(14), plen 0: [desc: I#73=MPU_IA] +EVENT[143]: 0.000923300 - core[1].svSysDesc(14), plen 0: [desc: I#73=MPU_IA] +EVENT[144]: 0.000935450 - core[0].svSysDesc(14), plen 0: [desc: I#74=CACHE_IA] +EVENT[145]: 0.000935450 - core[1].svSysDesc(14), plen 0: [desc: I#74=CACHE_IA] +EVENT[146]: 0.000944000 - core[0].svSysTimeUs(13), plen 0: [time: 10000] +EVENT[147]: 0.000944000 - core[1].svSysTimeUs(13), plen 0: [time: 10000] +EVENT[148]: 0.001056000 - core[0].svTaskInfo(9), plen 0: [tid: 12253204, prio: 24, name: ipc0] +EVENT[149]: 0.001056000 - core[1].svTaskInfo(9), plen 0: [tid: 12253204, prio: 24, name: ipc0] +EVENT[150]: 0.001061525 - core[0].svStackInfo(21), plen 0: [tid: 12253204, base: 1073410064, sz: 1344, unused: 0] +EVENT[151]: 0.001061525 - core[1].svStackInfo(21), plen 0: [tid: 12253204, base: 1073410064, sz: 1344, unused: 0] +EVENT[152]: 0.001170650 - core[0].svTaskInfo(9), plen 0: [tid: 12253560, prio: 24, name: ipc1] +EVENT[153]: 0.001170650 - core[1].svTaskInfo(9), plen 0: [tid: 12253560, prio: 24, name: ipc1] +EVENT[154]: 0.001175900 - core[0].svStackInfo(21), plen 0: [tid: 12253560, base: 1073431024, sz: 1344, unused: 0] +EVENT[155]: 0.001175900 - core[1].svStackInfo(21), plen 0: [tid: 12253560, base: 1073431024, sz: 1344, unused: 0] +EVENT[156]: 0.001327475 - core[0].svTaskInfo(9), plen 0: [tid: 12254080, prio: 1, name: main] +EVENT[157]: 0.001327475 - core[1].svTaskInfo(9), plen 0: [tid: 12254080, prio: 1, name: main] +EVENT[158]: 0.001332900 - core[0].svStackInfo(21), plen 0: [tid: 12254080, base: 1073433076, sz: 1916, unused: 0] +EVENT[159]: 0.001332900 - core[1].svStackInfo(21), plen 0: [tid: 12254080, base: 1073433076, sz: 1916, unused: 0] +EVENT[160]: 0.001340650 - core[0].svNumModules(27), plen 1: [mod_cnt: 0] +EVENT[161]: 0.001340650 - core[1].svNumModules(27), plen 1: [mod_cnt: 0] +EVENT[162]: 0.001348325 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[163]: 0.001359700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[164]: 0.001370975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[165]: 0.001381825 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] +EVENT[166]: 0.001381825 - core[1].svTaskStartReady(6), plen 0: [tid: 12254080] +EVENT[167]: 0.001396900 - core[0].svIsrExit(3), plen 0: [] +EVENT[168]: 0.001407700 - core[1].svIdle(17), plen 0: [] +EVENT[169]: 0.001419225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[170]: 0.001430725 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[171]: 0.001447075 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[172]: 0.001473950 - core[0].svModuleDesc(22), plen 0: [mod_id: 0, evt_off: 512, desc: M=ESP32 SystemView Heap Tracing Module] +EVENT[173]: 0.001473950 - core[1].svModuleDesc(22), plen 0: [mod_id: 0, evt_off: 512, desc: M=ESP32 SystemView Heap Tracing Module] +EVENT[174]: 0.001529550 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073443032, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621423, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.001529550] HEAP: Allocated 8 bytes @ 0x3ffb70d8 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[175]: 0.001669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[176]: 0.001682850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[177]: 0.001699500 - core[1].svIdle(17), plen 0: [] +EVENT[178]: 0.001812950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[179]: 0.001828450 - core[0].svIsrExit(3), plen 0: [] +EVENT[180]: 0.001864250 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073443048, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.001864250] HEAP: Allocated 2500 bytes @ 0x3ffb70e8 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[181]: 0.001904100 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073445612, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.001904100] HEAP: Allocated 340 bytes @ 0x3ffb7aec from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[182]: 0.001926775 - core[0].svTaskCreate(8), plen 0: [tid: 12286700] +EVENT[183]: 0.001939400 - core[0].svTaskInfo(9), plen 0: [tid: 12286700, prio: 5, name: alloc0] +EVENT[184]: 0.001939400 - core[1].svTaskInfo(9), plen 0: [tid: 12286700, prio: 5, name: alloc0] +EVENT[185]: 0.001948500 - core[0].svStackInfo(21), plen 0: [tid: 12286700, base: 1073443048, sz: 4294965096, unused: 0] +EVENT[186]: 0.001948500 - core[1].svStackInfo(21), plen 0: [tid: 12286700, base: 1073443048, sz: 4294965096, unused: 0] +EVENT[187]: 0.001959200 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[188]: 0.001959200 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[189]: 0.001974775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[190]: 0.001986150 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[191]: 0.002002500 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[192]: 0.002037875 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073445968, size: 124, callers: [1074274287, 1074304020, 1074300537, 1074621092, 1074302356, 0, 0, 0, 0, 0]] +[0.002037875] HEAP: Allocated 124 bytes @ 0x3ffb7c50 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[193]: 0.002052175 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] +EVENT[194]: 0.002107400 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073446096, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621152, 1074302356, 0, 0, 0, 0, 0]] +[0.002107400] HEAP: Allocated 2500 bytes @ 0x3ffb7cd0 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[195]: 0.002141800 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073448660, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621152, 1074302356, 0, 0, 0, 0, 0]] +[0.002141800] HEAP: Allocated 340 bytes @ 0x3ffb86d4 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[196]: 0.002168500 - core[0].svTaskCreate(8), plen 0: [tid: 12289748] +EVENT[197]: 0.002181000 - core[0].svTaskInfo(9), plen 0: [tid: 12289748, prio: 5, name: free0] +EVENT[198]: 0.002181000 - core[1].svTaskInfo(9), plen 0: [tid: 12289748, prio: 5, name: free0] +EVENT[199]: 0.002190150 - core[0].svStackInfo(21), plen 0: [tid: 12289748, base: 1073446096, sz: 4294965088, unused: 0] +EVENT[200]: 0.002190150 - core[1].svStackInfo(21), plen 0: [tid: 12289748, base: 1073446096, sz: 4294965088, unused: 0] +EVENT[201]: 0.002200975 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[202]: 0.002200975 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[203]: 0.002216350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[204]: 0.002229250 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[205]: 0.002245650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073449016, size: 1, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.002245650] HEAP: Allocated 1 bytes @ 0x3ffb8838 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[206]: 0.002256950 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[207]: 0.002286975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[208]: 0.002297900 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073449032, size: 2, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.002297900] HEAP: Allocated 2 bytes @ 0x3ffb8848 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[209]: 0.002308975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[210]: 0.002321625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[211]: 0.002332075 - core[1].svIdle(17), plen 0: [] +EVENT[212]: 0.002366250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[213]: 0.002605525 - core[0].svPrint(26), plen 69: [msg: I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848 +, lvl: 0, unused: 0] +[0.002605525] LOG: I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848 +EVENT[214]: 0.002627100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[215]: 0.002640225 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[216]: 0.002640225 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[217]: 0.002656425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[218]: 0.002667300 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[219]: 0.002678075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[220]: 0.002692250 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[221]: 0.002703000 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[222]: 0.002713925 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[223]: 0.002725475 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[224]: 0.002735950 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[225]: 0.002753450 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[226]: 0.002770250 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[227]: 0.002782075 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073449048, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621423, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.002782075] HEAP: Allocated 8 bytes @ 0x3ffb8858 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[228]: 0.002813350 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[229]: 0.002824975 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[230]: 0.002835950 - core[0].svIsrExit(3), plen 0: [] +EVENT[231]: 0.002860725 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073449064, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.002860725] HEAP: Allocated 2500 bytes @ 0x3ffb8868 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[232]: 0.002875775 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[233]: 0.002902375 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073451628, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.002902375] HEAP: Allocated 340 bytes @ 0x3ffb926c from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[234]: 0.002925000 - core[0].svTaskCreate(8), plen 0: [tid: 12292716] +EVENT[235]: 0.002937650 - core[0].svTaskInfo(9), plen 0: [tid: 12292716, prio: 5, name: alloc1] +EVENT[236]: 0.002937650 - core[1].svTaskInfo(9), plen 0: [tid: 12292716, prio: 5, name: alloc1] +EVENT[237]: 0.002946800 - core[0].svStackInfo(21), plen 0: [tid: 12292716, base: 1073449064, sz: 4294965096, unused: 0] +EVENT[238]: 0.002946800 - core[1].svStackInfo(21), plen 0: [tid: 12292716, base: 1073449064, sz: 4294965096, unused: 0] +EVENT[239]: 0.002957675 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[240]: 0.002957675 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[241]: 0.002973300 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[242]: 0.002984800 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[243]: 0.003001650 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[244]: 0.003037100 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073451984, size: 124, callers: [1074274287, 1074304020, 1074300537, 1074621092, 1074302356, 0, 0, 0, 0, 0]] +[0.003037100] HEAP: Allocated 124 bytes @ 0x3ffb93d0 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[245]: 0.003051375 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] +EVENT[246]: 0.003090750 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073452112, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621152, 1074302356, 0, 0, 0, 0, 0]] +[0.003090750] HEAP: Allocated 2500 bytes @ 0x3ffb9450 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[247]: 0.003125150 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073454676, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621152, 1074302356, 0, 0, 0, 0, 0]] +[0.003125150] HEAP: Allocated 340 bytes @ 0x3ffb9e54 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[248]: 0.003151900 - core[0].svTaskCreate(8), plen 0: [tid: 12295764] +EVENT[249]: 0.003164400 - core[0].svTaskInfo(9), plen 0: [tid: 12295764, prio: 5, name: free1] +EVENT[250]: 0.003164400 - core[1].svTaskInfo(9), plen 0: [tid: 12295764, prio: 5, name: free1] +EVENT[251]: 0.003173550 - core[0].svStackInfo(21), plen 0: [tid: 12295764, base: 1073452112, sz: 4294965088, unused: 0] +EVENT[252]: 0.003173550 - core[1].svStackInfo(21), plen 0: [tid: 12295764, base: 1073452112, sz: 4294965088, unused: 0] +EVENT[253]: 0.003184375 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[254]: 0.003184375 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[255]: 0.003220600 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073455032, size: 2, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.003220600] HEAP: Allocated 2 bytes @ 0x3ffb9fb8 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[256]: 0.003255050 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073455048, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.003255050] HEAP: Allocated 4 bytes @ 0x3ffb9fc8 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[257]: 0.003271950 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[258]: 0.003294125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[259]: 0.003336850 - core[1].svPrint(26), plen 63: [msg: I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848 +, lvl: 0, unused: 0] +[0.003336850] LOG: I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848 +EVENT[260]: 0.003357000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[261]: 0.003368450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[262]: 0.003385425 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[263]: 0.003404250 - core[0].svPrint(26), plen 69: [msg: I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8 +, lvl: 0, unused: 0] +[0.003404250] LOG: I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8 +EVENT[264]: 0.003418350 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[265]: 0.003431500 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073449032, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.003431500] HEAP: Freed bytes @ 0x3ffb8848 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[266]: 0.003443325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[267]: 0.003462000 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[268]: 0.003475950 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[269]: 0.003490025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[270]: 0.003501925 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[271]: 0.003512800 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[272]: 0.003532050 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[273]: 0.003544375 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073449032, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621423, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.003544375] HEAP: Allocated 8 bytes @ 0x3ffb8848 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[274]: 0.003561425 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[275]: 0.003580100 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[276]: 0.003597875 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073455064, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.003597875] HEAP: Allocated 2500 bytes @ 0x3ffb9fd8 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[277]: 0.003610600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[278]: 0.003637125 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073457628, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.003637125] HEAP: Allocated 340 bytes @ 0x3ffba9dc from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[279]: 0.003660625 - core[1].svPrint(26), plen 63: [msg: I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8 +, lvl: 0, unused: 0] +[0.003660625] LOG: I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8 +EVENT[280]: 0.003672000 - core[0].svTaskCreate(8), plen 0: [tid: 12298716] +EVENT[281]: 0.003688200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[282]: 0.003700975 - core[0].svTaskInfo(9), plen 0: [tid: 12298716, prio: 5, name: alloc2] +EVENT[283]: 0.003700975 - core[1].svTaskInfo(9), plen 0: [tid: 12298716, prio: 5, name: alloc2] +EVENT[284]: 0.003711950 - core[0].svStackInfo(21), plen 0: [tid: 12298716, base: 1073455064, sz: 4294965096, unused: 0] +EVENT[285]: 0.003711950 - core[1].svStackInfo(21), plen 0: [tid: 12298716, base: 1073455064, sz: 4294965096, unused: 0] +EVENT[286]: 0.003724850 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[287]: 0.003724850 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[288]: 0.003742300 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[289]: 0.003753150 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[290]: 0.003765400 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[291]: 0.003776400 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[292]: 0.003791750 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073455048, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.003791750] HEAP: Freed bytes @ 0x3ffb9fc8 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[293]: 0.003803375 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[294]: 0.003819875 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[295]: 0.003831475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[296]: 0.003843175 - core[0].svIsrExit(3), plen 0: [] +EVENT[297]: 0.003853725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[298]: 0.003875450 - core[1].svIdle(17), plen 0: [] +EVENT[299]: 0.003887725 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073457984, size: 124, callers: [1074274287, 1074304020, 1074300537, 1074621092, 1074302356, 0, 0, 0, 0, 0]] +[0.003887725] HEAP: Allocated 124 bytes @ 0x3ffbab40 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[300]: 0.003902275 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] +EVENT[301]: 0.003941625 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073458112, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621152, 1074302356, 0, 0, 0, 0, 0]] +[0.003941625] HEAP: Allocated 2500 bytes @ 0x3ffbabc0 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[302]: 0.003976025 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073460676, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621152, 1074302356, 0, 0, 0, 0, 0]] +[0.003976025] HEAP: Allocated 340 bytes @ 0x3ffbb5c4 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[303]: 0.004002000 - core[0].svTaskCreate(8), plen 0: [tid: 12301764] +EVENT[304]: 0.004014625 - core[0].svTaskInfo(9), plen 0: [tid: 12301764, prio: 5, name: free2] +EVENT[305]: 0.004014625 - core[1].svTaskInfo(9), plen 0: [tid: 12301764, prio: 5, name: free2] +EVENT[306]: 0.004023800 - core[0].svStackInfo(21), plen 0: [tid: 12301764, base: 1073458112, sz: 4294965088, unused: 0] +EVENT[307]: 0.004023800 - core[1].svStackInfo(21), plen 0: [tid: 12301764, base: 1073458112, sz: 4294965088, unused: 0] +EVENT[308]: 0.004034600 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[309]: 0.004034600 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[310]: 0.004050850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[311]: 0.004063700 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[312]: 0.004075375 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073455048, size: 3, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.004075375] HEAP: Allocated 3 bytes @ 0x3ffb9fc8 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[313]: 0.004086825 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[314]: 0.004113200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[315]: 0.004124950 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461032, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.004124950] HEAP: Allocated 6 bytes @ 0x3ffbb728 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[316]: 0.004136375 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[317]: 0.004148350 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[318]: 0.004158625 - core[1].svIdle(17), plen 0: [] +EVENT[319]: 0.004177025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[320]: 0.004229325 - core[0].svPrint(26), plen 69: [msg: I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728 +, lvl: 0, unused: 0] +[0.004229325] LOG: I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728 +EVENT[321]: 0.004246325 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[322]: 0.004259475 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[323]: 0.004259475 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[324]: 0.004275750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[325]: 0.004286600 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[326]: 0.004297375 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[327]: 0.004311250 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[328]: 0.004322050 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[329]: 0.004332900 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[330]: 0.004344800 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[331]: 0.004355375 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[332]: 0.004367550 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[333]: 0.004394600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[334]: 0.004405450 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[335]: 0.004417125 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] +EVENT[336]: 0.004417125 - core[1].svTaskStartReady(6), plen 0: [tid: 12254080] +EVENT[337]: 0.004428475 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[338]: 0.004446600 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[339]: 0.004461050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[340]: 0.004485000 - core[1].svPrint(26), plen 63: [msg: I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728 +, lvl: 0, unused: 0] +[0.004485000] LOG: I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728 +EVENT[341]: 0.004501225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[342]: 0.004514850 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461032, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.004514850] HEAP: Freed bytes @ 0x3ffbb728 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[343]: 0.004542000 - core[0].svPrint(26), plen 34: [msg: I (312) example: Wait notify 0 +, lvl: 0, unused: 0] +[0.004542000] LOG: I (312) example: Wait notify 0 +EVENT[344]: 0.004553025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[345]: 0.004566700 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[346]: 0.004580775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[347]: 0.004591450 - core[1].svIdle(17), plen 0: [] +EVENT[348]: 0.004602475 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[349]: 0.004618600 - core[0].svIdle(17), plen 0: [] +EVENT[350]: 0.004669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[351]: 0.004682875 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[352]: 0.004698150 - core[1].svIdle(17), plen 0: [] +EVENT[353]: 0.004813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[354]: 0.004828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[355]: 0.004843775 - core[0].svIdle(17), plen 0: [] +EVENT[356]: 0.005669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[357]: 0.005682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[358]: 0.005698100 - core[1].svIdle(17), plen 0: [] +EVENT[359]: 0.005813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[360]: 0.005828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[361]: 0.005843775 - core[0].svIdle(17), plen 0: [] +EVENT[362]: 0.006669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[363]: 0.006682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[364]: 0.006698075 - core[1].svIdle(17), plen 0: [] +EVENT[365]: 0.006813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[366]: 0.006828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[367]: 0.006843825 - core[0].svIdle(17), plen 0: [] +EVENT[368]: 0.007669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[369]: 0.007682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[370]: 0.007698075 - core[1].svIdle(17), plen 0: [] +EVENT[371]: 0.007813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[372]: 0.007828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[373]: 0.007843775 - core[0].svIdle(17), plen 0: [] +EVENT[374]: 0.008669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[375]: 0.008687175 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[376]: 0.008702325 - core[1].svIdle(17), plen 0: [] +EVENT[377]: 0.008813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[378]: 0.008828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[379]: 0.008843775 - core[0].svIdle(17), plen 0: [] +EVENT[380]: 0.009669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[381]: 0.009682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[382]: 0.009698075 - core[1].svIdle(17), plen 0: [] +EVENT[383]: 0.009813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[384]: 0.009828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[385]: 0.009843825 - core[0].svIdle(17), plen 0: [] +EVENT[386]: 0.010669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[387]: 0.010682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[388]: 0.010698075 - core[1].svIdle(17), plen 0: [] +EVENT[389]: 0.010813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[390]: 0.010828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[391]: 0.010843775 - core[0].svIdle(17), plen 0: [] +EVENT[392]: 0.011669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[393]: 0.011682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[394]: 0.011698325 - core[1].svIdle(17), plen 0: [] +EVENT[395]: 0.011813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[396]: 0.011828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[397]: 0.011843775 - core[0].svIdle(17), plen 0: [] +EVENT[398]: 0.012669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[399]: 0.012682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[400]: 0.012698100 - core[1].svIdle(17), plen 0: [] +EVENT[401]: 0.012813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[402]: 0.012828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[403]: 0.012843775 - core[0].svIdle(17), plen 0: [] +EVENT[404]: 0.013669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[405]: 0.013682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[406]: 0.013698075 - core[1].svIdle(17), plen 0: [] +EVENT[407]: 0.013813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[408]: 0.013828850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[409]: 0.013844050 - core[0].svIdle(17), plen 0: [] +EVENT[410]: 0.014669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[411]: 0.014682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[412]: 0.014698075 - core[1].svIdle(17), plen 0: [] +EVENT[413]: 0.014813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[414]: 0.014828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[415]: 0.014843775 - core[0].svIdle(17), plen 0: [] +EVENT[416]: 0.015669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[417]: 0.015682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[418]: 0.015698325 - core[1].svIdle(17), plen 0: [] +EVENT[419]: 0.015813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[420]: 0.015828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[421]: 0.015843775 - core[0].svIdle(17), plen 0: [] +EVENT[422]: 0.016669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[423]: 0.016682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[424]: 0.016698100 - core[1].svIdle(17), plen 0: [] +EVENT[425]: 0.016813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[426]: 0.016828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[427]: 0.016843775 - core[0].svIdle(17), plen 0: [] +EVENT[428]: 0.017669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[429]: 0.017682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[430]: 0.017698075 - core[1].svIdle(17), plen 0: [] +EVENT[431]: 0.017813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[432]: 0.017828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[433]: 0.017843825 - core[0].svIdle(17), plen 0: [] +EVENT[434]: 0.018669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[435]: 0.018682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[436]: 0.018698075 - core[1].svIdle(17), plen 0: [] +EVENT[437]: 0.018813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[438]: 0.018828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[439]: 0.018843775 - core[0].svIdle(17), plen 0: [] +EVENT[440]: 0.019669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[441]: 0.019682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[442]: 0.019698325 - core[1].svIdle(17), plen 0: [] +EVENT[443]: 0.019813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[444]: 0.019828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[445]: 0.019843775 - core[0].svIdle(17), plen 0: [] +EVENT[446]: 0.020669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[447]: 0.020687200 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[448]: 0.020702325 - core[1].svIdle(17), plen 0: [] +EVENT[449]: 0.020813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[450]: 0.020828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[451]: 0.020843775 - core[0].svIdle(17), plen 0: [] +EVENT[452]: 0.021669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[453]: 0.021682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[454]: 0.021698075 - core[1].svIdle(17), plen 0: [] +EVENT[455]: 0.021813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[456]: 0.021828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[457]: 0.021843825 - core[0].svIdle(17), plen 0: [] +EVENT[458]: 0.022669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[459]: 0.022682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[460]: 0.022698075 - core[1].svIdle(17), plen 0: [] +EVENT[461]: 0.022813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[462]: 0.022828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[463]: 0.022843775 - core[0].svIdle(17), plen 0: [] +EVENT[464]: 0.023669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[465]: 0.023682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[466]: 0.023698325 - core[1].svIdle(17), plen 0: [] +EVENT[467]: 0.023813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[468]: 0.023828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[469]: 0.023843775 - core[0].svIdle(17), plen 0: [] +EVENT[470]: 0.024669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[471]: 0.024682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[472]: 0.024698100 - core[1].svIdle(17), plen 0: [] +EVENT[473]: 0.024813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[474]: 0.024828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[475]: 0.024843775 - core[0].svIdle(17), plen 0: [] +EVENT[476]: 0.025669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[477]: 0.025682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[478]: 0.025698075 - core[1].svIdle(17), plen 0: [] +EVENT[479]: 0.025813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[480]: 0.025828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[481]: 0.025843825 - core[0].svIdle(17), plen 0: [] +EVENT[482]: 0.026669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[483]: 0.026682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[484]: 0.026698075 - core[1].svIdle(17), plen 0: [] +EVENT[485]: 0.026813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[486]: 0.026828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[487]: 0.026843775 - core[0].svIdle(17), plen 0: [] +EVENT[488]: 0.027669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[489]: 0.027682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[490]: 0.027698325 - core[1].svIdle(17), plen 0: [] +EVENT[491]: 0.027813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[492]: 0.027828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[493]: 0.027843775 - core[0].svIdle(17), plen 0: [] +EVENT[494]: 0.028669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[495]: 0.028682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[496]: 0.028698100 - core[1].svIdle(17), plen 0: [] +EVENT[497]: 0.028813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[498]: 0.028828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[499]: 0.028843775 - core[0].svIdle(17), plen 0: [] +EVENT[500]: 0.029669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[501]: 0.029682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[502]: 0.029698075 - core[1].svIdle(17), plen 0: [] +EVENT[503]: 0.029813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[504]: 0.029828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[505]: 0.029843825 - core[0].svIdle(17), plen 0: [] +EVENT[506]: 0.030669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[507]: 0.030682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[508]: 0.030698075 - core[1].svIdle(17), plen 0: [] +EVENT[509]: 0.030813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[510]: 0.030828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[511]: 0.030843775 - core[0].svIdle(17), plen 0: [] +EVENT[512]: 0.031669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[513]: 0.031682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[514]: 0.031698325 - core[1].svIdle(17), plen 0: [] +EVENT[515]: 0.031813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[516]: 0.031828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[517]: 0.031828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[518]: 0.031840900 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[519]: 0.031860400 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[520]: 0.031895800 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461032, size: 2, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.031895800] HEAP: Allocated 2 bytes @ 0x3ffbb728 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[521]: 0.031930350 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461048, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.031930350] HEAP: Allocated 4 bytes @ 0x3ffbb738 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[522]: 0.031947275 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[523]: 0.031963225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[524]: 0.032027500 - core[0].svPrint(26), plen 69: [msg: I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738 +, lvl: 0, unused: 0] +[0.032027500] LOG: I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738 +EVENT[525]: 0.032041200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[526]: 0.032054450 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[527]: 0.032054450 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[528]: 0.032070625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[529]: 0.032081475 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[530]: 0.032092275 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[531]: 0.032106075 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[532]: 0.032116925 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[533]: 0.032127825 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[534]: 0.032139925 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[535]: 0.032150500 - core[0].svIdle(17), plen 0: [] +EVENT[536]: 0.032166625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[537]: 0.032182825 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[538]: 0.032246375 - core[1].svPrint(26), plen 63: [msg: I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738 +, lvl: 0, unused: 0] +[0.032246375] LOG: I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738 +EVENT[539]: 0.032267375 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461048, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.032267375] HEAP: Freed bytes @ 0x3ffbb738 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[540]: 0.032294250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[541]: 0.032305725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[542]: 0.032322425 - core[1].svIdle(17), plen 0: [] +EVENT[543]: 0.032669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[544]: 0.032682850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[545]: 0.032698425 - core[1].svIdle(17), plen 0: [] +EVENT[546]: 0.032813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[547]: 0.032828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[548]: 0.032828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[549]: 0.032840850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[550]: 0.032856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[551]: 0.032891700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461048, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.032891700] HEAP: Allocated 4 bytes @ 0x3ffbb738 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[552]: 0.032926225 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461064, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.032926225] HEAP: Allocated 8 bytes @ 0x3ffbb748 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[553]: 0.032943250 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[554]: 0.032963425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[555]: 0.033027675 - core[0].svPrint(26), plen 69: [msg: I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748 +, lvl: 0, unused: 0] +[0.033027675] LOG: I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748 +EVENT[556]: 0.033041400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[557]: 0.033054625 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[558]: 0.033054625 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[559]: 0.033070875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[560]: 0.033081725 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[561]: 0.033092475 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[562]: 0.033106200 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[563]: 0.033116975 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[564]: 0.033127725 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[565]: 0.033139725 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[566]: 0.033151025 - core[0].svIdle(17), plen 0: [] +EVENT[567]: 0.033162675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[568]: 0.033179000 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[569]: 0.033242525 - core[1].svPrint(26), plen 63: [msg: I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748 +, lvl: 0, unused: 0] +[0.033242525] LOG: I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748 +EVENT[570]: 0.033267050 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461064, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.033267050] HEAP: Freed bytes @ 0x3ffbb748 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[571]: 0.033294050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[572]: 0.033305475 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[573]: 0.033322050 - core[1].svIdle(17), plen 0: [] +EVENT[574]: 0.033669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[575]: 0.033682950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[576]: 0.033698525 - core[1].svIdle(17), plen 0: [] +EVENT[577]: 0.033813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[578]: 0.033828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[579]: 0.033828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[580]: 0.033840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[581]: 0.033856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[582]: 0.033892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461064, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.033892175] HEAP: Allocated 6 bytes @ 0x3ffbb748 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[583]: 0.033926575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461080, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.033926575] HEAP: Allocated 12 bytes @ 0x3ffbb758 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[584]: 0.033943475 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[585]: 0.033959450 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[586]: 0.034029800 - core[0].svPrint(26), plen 70: [msg: I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758 +, lvl: 0, unused: 0] +[0.034029800] LOG: I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758 +EVENT[587]: 0.034047625 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[588]: 0.034060850 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[589]: 0.034060850 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[590]: 0.034077150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[591]: 0.034088000 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[592]: 0.034098775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[593]: 0.034112500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[594]: 0.034123375 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[595]: 0.034134200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[596]: 0.034146200 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[597]: 0.034156450 - core[0].svIdle(17), plen 0: [] +EVENT[598]: 0.034167850 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[599]: 0.034184225 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[600]: 0.034247900 - core[1].svPrint(26), plen 63: [msg: I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758 +, lvl: 0, unused: 0] +[0.034247900] LOG: I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758 +EVENT[601]: 0.034269100 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461080, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.034269100] HEAP: Freed bytes @ 0x3ffbb758 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[602]: 0.034300025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[603]: 0.034311500 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[604]: 0.034328200 - core[1].svIdle(17), plen 0: [] +EVENT[605]: 0.034669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[606]: 0.034682850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[607]: 0.034698425 - core[1].svIdle(17), plen 0: [] +EVENT[608]: 0.034813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[609]: 0.034828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[610]: 0.034843825 - core[0].svIdle(17), plen 0: [] +EVENT[611]: 0.035669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[612]: 0.035682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[613]: 0.035698075 - core[1].svIdle(17), plen 0: [] +EVENT[614]: 0.035813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[615]: 0.035828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[616]: 0.035843775 - core[0].svIdle(17), plen 0: [] +EVENT[617]: 0.036669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[618]: 0.036682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[619]: 0.036698325 - core[1].svIdle(17), plen 0: [] +EVENT[620]: 0.036813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[621]: 0.036828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[622]: 0.036843775 - core[0].svIdle(17), plen 0: [] +EVENT[623]: 0.037669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[624]: 0.037682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[625]: 0.037698100 - core[1].svIdle(17), plen 0: [] +EVENT[626]: 0.037813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[627]: 0.037828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[628]: 0.037843775 - core[0].svIdle(17), plen 0: [] +EVENT[629]: 0.038669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[630]: 0.038682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[631]: 0.038698075 - core[1].svIdle(17), plen 0: [] +EVENT[632]: 0.038813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[633]: 0.038828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[634]: 0.038843825 - core[0].svIdle(17), plen 0: [] +EVENT[635]: 0.039669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[636]: 0.039682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[637]: 0.039698075 - core[1].svIdle(17), plen 0: [] +EVENT[638]: 0.039813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[639]: 0.039828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[640]: 0.039843775 - core[0].svIdle(17), plen 0: [] +EVENT[641]: 0.040669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[642]: 0.040682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[643]: 0.040698325 - core[1].svIdle(17), plen 0: [] +EVENT[644]: 0.040813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[645]: 0.040828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[646]: 0.040843775 - core[0].svIdle(17), plen 0: [] +EVENT[647]: 0.041669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[648]: 0.041682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[649]: 0.041698100 - core[1].svIdle(17), plen 0: [] +EVENT[650]: 0.041813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[651]: 0.041828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[652]: 0.041843775 - core[0].svIdle(17), plen 0: [] +EVENT[653]: 0.042669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[654]: 0.042682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[655]: 0.042698075 - core[1].svIdle(17), plen 0: [] +EVENT[656]: 0.042813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[657]: 0.042828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[658]: 0.042843825 - core[0].svIdle(17), plen 0: [] +EVENT[659]: 0.043669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[660]: 0.043682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[661]: 0.043698075 - core[1].svIdle(17), plen 0: [] +EVENT[662]: 0.043813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[663]: 0.043828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[664]: 0.043843775 - core[0].svIdle(17), plen 0: [] +EVENT[665]: 0.044669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[666]: 0.044687175 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[667]: 0.044702300 - core[1].svIdle(17), plen 0: [] +EVENT[668]: 0.044813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[669]: 0.044828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[670]: 0.044843775 - core[0].svIdle(17), plen 0: [] +EVENT[671]: 0.045669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[672]: 0.045682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[673]: 0.045698075 - core[1].svIdle(17), plen 0: [] +EVENT[674]: 0.045813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[675]: 0.045828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[676]: 0.045843825 - core[0].svIdle(17), plen 0: [] +EVENT[677]: 0.046669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[678]: 0.046682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[679]: 0.046698075 - core[1].svIdle(17), plen 0: [] +EVENT[680]: 0.046813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[681]: 0.046828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[682]: 0.046843775 - core[0].svIdle(17), plen 0: [] +EVENT[683]: 0.047669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[684]: 0.047682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[685]: 0.047698325 - core[1].svIdle(17), plen 0: [] +EVENT[686]: 0.047813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[687]: 0.047828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[688]: 0.047843775 - core[0].svIdle(17), plen 0: [] +EVENT[689]: 0.048669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[690]: 0.048682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[691]: 0.048698100 - core[1].svIdle(17), plen 0: [] +EVENT[692]: 0.048813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[693]: 0.048828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[694]: 0.048843775 - core[0].svIdle(17), plen 0: [] +EVENT[695]: 0.049669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[696]: 0.049682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[697]: 0.049698075 - core[1].svIdle(17), plen 0: [] +EVENT[698]: 0.049813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[699]: 0.049828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[700]: 0.049843825 - core[0].svIdle(17), plen 0: [] +EVENT[701]: 0.050669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[702]: 0.050682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[703]: 0.050698075 - core[1].svIdle(17), plen 0: [] +EVENT[704]: 0.050813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[705]: 0.050828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[706]: 0.050843775 - core[0].svIdle(17), plen 0: [] +EVENT[707]: 0.051669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[708]: 0.051682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[709]: 0.051698325 - core[1].svIdle(17), plen 0: [] +EVENT[710]: 0.051813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[711]: 0.051828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[712]: 0.051843775 - core[0].svIdle(17), plen 0: [] +EVENT[713]: 0.052669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[714]: 0.052682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[715]: 0.052698100 - core[1].svIdle(17), plen 0: [] +EVENT[716]: 0.052813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[717]: 0.052828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[718]: 0.052843775 - core[0].svIdle(17), plen 0: [] +EVENT[719]: 0.053669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[720]: 0.053682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[721]: 0.053698075 - core[1].svIdle(17), plen 0: [] +EVENT[722]: 0.053813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[723]: 0.053828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[724]: 0.053843825 - core[0].svIdle(17), plen 0: [] +EVENT[725]: 0.054669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[726]: 0.054682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[727]: 0.054698075 - core[1].svIdle(17), plen 0: [] +EVENT[728]: 0.054813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[729]: 0.054828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[730]: 0.054843775 - core[0].svIdle(17), plen 0: [] +EVENT[731]: 0.055669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[732]: 0.055682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[733]: 0.055698325 - core[1].svIdle(17), plen 0: [] +EVENT[734]: 0.055813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[735]: 0.055828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[736]: 0.055843775 - core[0].svIdle(17), plen 0: [] +EVENT[737]: 0.056669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[738]: 0.056687200 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[739]: 0.056702350 - core[1].svIdle(17), plen 0: [] +EVENT[740]: 0.056813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[741]: 0.056828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[742]: 0.056843775 - core[0].svIdle(17), plen 0: [] +EVENT[743]: 0.057669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[744]: 0.057682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[745]: 0.057698075 - core[1].svIdle(17), plen 0: [] +EVENT[746]: 0.057813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[747]: 0.057828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[748]: 0.057843825 - core[0].svIdle(17), plen 0: [] +EVENT[749]: 0.058669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[750]: 0.058682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[751]: 0.058698075 - core[1].svIdle(17), plen 0: [] +EVENT[752]: 0.058813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[753]: 0.058828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[754]: 0.058843775 - core[0].svIdle(17), plen 0: [] +EVENT[755]: 0.059669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[756]: 0.059682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[757]: 0.059698325 - core[1].svIdle(17), plen 0: [] +EVENT[758]: 0.059813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[759]: 0.059828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[760]: 0.059843775 - core[0].svIdle(17), plen 0: [] +EVENT[761]: 0.060669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[762]: 0.060682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[763]: 0.060698100 - core[1].svIdle(17), plen 0: [] +EVENT[764]: 0.060813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[765]: 0.060828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[766]: 0.060843775 - core[0].svIdle(17), plen 0: [] +EVENT[767]: 0.061669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[768]: 0.061682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[769]: 0.061698075 - core[1].svIdle(17), plen 0: [] +EVENT[770]: 0.061813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[771]: 0.061828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[772]: 0.061828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[773]: 0.061840850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[774]: 0.061856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[775]: 0.061891850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461080, size: 3, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.061891850] HEAP: Allocated 3 bytes @ 0x3ffbb758 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[776]: 0.061926275 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461096, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.061926275] HEAP: Allocated 6 bytes @ 0x3ffbb768 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[777]: 0.061943300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[778]: 0.061959425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[779]: 0.062023675 - core[0].svPrint(26), plen 69: [msg: I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768 +, lvl: 0, unused: 0] +[0.062023675] LOG: I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768 +EVENT[780]: 0.062041475 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[781]: 0.062054600 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[782]: 0.062054600 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[783]: 0.062070800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[784]: 0.062081675 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[785]: 0.062092450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[786]: 0.062106525 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[787]: 0.062117350 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[788]: 0.062128225 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[789]: 0.062140100 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[790]: 0.062150525 - core[0].svIdle(17), plen 0: [] +EVENT[791]: 0.062162975 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[792]: 0.062179175 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[793]: 0.062242725 - core[1].svPrint(26), plen 63: [msg: I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768 +, lvl: 0, unused: 0] +[0.062242725] LOG: I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768 +EVENT[794]: 0.062263725 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461096, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.062263725] HEAP: Freed bytes @ 0x3ffbb768 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[795]: 0.062294025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[796]: 0.062305500 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[797]: 0.062322200 - core[1].svIdle(17), plen 0: [] +EVENT[798]: 0.062669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[799]: 0.062682850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[800]: 0.062698425 - core[1].svIdle(17), plen 0: [] +EVENT[801]: 0.062813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[802]: 0.062828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[803]: 0.062828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[804]: 0.062840850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[805]: 0.062856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[806]: 0.062891850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461096, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.062891850] HEAP: Allocated 6 bytes @ 0x3ffbb768 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[807]: 0.062926275 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461112, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.062926275] HEAP: Allocated 12 bytes @ 0x3ffbb778 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[808]: 0.062943300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[809]: 0.062959425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[810]: 0.063025900 - core[0].svPrint(26), plen 70: [msg: I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778 +, lvl: 0, unused: 0] +[0.063025900] LOG: I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778 +EVENT[811]: 0.063039450 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[812]: 0.063056850 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[813]: 0.063056850 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[814]: 0.063073175 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[815]: 0.063084025 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[816]: 0.063094775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[817]: 0.063108500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[818]: 0.063119350 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[819]: 0.063130175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[820]: 0.063142025 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[821]: 0.063152300 - core[0].svIdle(17), plen 0: [] +EVENT[822]: 0.063163775 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[823]: 0.063180075 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[824]: 0.063243525 - core[1].svPrint(26), plen 63: [msg: I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778 +, lvl: 0, unused: 0] +[0.063243525] LOG: I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778 +EVENT[825]: 0.063264675 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461112, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.063264675] HEAP: Freed bytes @ 0x3ffbb778 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[826]: 0.063291675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[827]: 0.063303100 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[828]: 0.063319675 - core[1].svIdle(17), plen 0: [] +EVENT[829]: 0.063669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[830]: 0.063682950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[831]: 0.063698525 - core[1].svIdle(17), plen 0: [] +EVENT[832]: 0.063813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[833]: 0.063828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[834]: 0.063828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[835]: 0.063840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[836]: 0.063856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[837]: 0.063892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461112, size: 9, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.063892175] HEAP: Allocated 9 bytes @ 0x3ffbb778 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[838]: 0.063930700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461128, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.063930700] HEAP: Allocated 18 bytes @ 0x3ffbb788 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[839]: 0.063947725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[840]: 0.063963700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[841]: 0.064034050 - core[0].svPrint(26), plen 70: [msg: I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788 +, lvl: 0, unused: 0] +[0.064034050] LOG: I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788 +EVENT[842]: 0.064047650 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[843]: 0.064060875 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[844]: 0.064060875 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[845]: 0.064077175 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[846]: 0.064088025 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[847]: 0.064098800 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[848]: 0.064112775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[849]: 0.064123600 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[850]: 0.064134475 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[851]: 0.064146325 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[852]: 0.064157625 - core[0].svIdle(17), plen 0: [] +EVENT[853]: 0.064169250 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[854]: 0.064189700 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[855]: 0.064253250 - core[1].svPrint(26), plen 63: [msg: I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788 +, lvl: 0, unused: 0] +[0.064253250] LOG: I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788 +EVENT[856]: 0.064274450 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461128, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.064274450] HEAP: Freed bytes @ 0x3ffbb788 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[857]: 0.064301350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[858]: 0.064312775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[859]: 0.064329350 - core[1].svIdle(17), plen 0: [] +EVENT[860]: 0.064669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[861]: 0.064682950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[862]: 0.064698525 - core[1].svIdle(17), plen 0: [] +EVENT[863]: 0.064813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[864]: 0.064828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[865]: 0.064843775 - core[0].svIdle(17), plen 0: [] +EVENT[866]: 0.065669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[867]: 0.065682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[868]: 0.065698325 - core[1].svIdle(17), plen 0: [] +EVENT[869]: 0.065813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[870]: 0.065828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[871]: 0.065843775 - core[0].svIdle(17), plen 0: [] +EVENT[872]: 0.066669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[873]: 0.066682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[874]: 0.066698100 - core[1].svIdle(17), plen 0: [] +EVENT[875]: 0.066813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[876]: 0.066828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[877]: 0.066843775 - core[0].svIdle(17), plen 0: [] +EVENT[878]: 0.067669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[879]: 0.067682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[880]: 0.067698075 - core[1].svIdle(17), plen 0: [] +EVENT[881]: 0.067813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[882]: 0.067828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[883]: 0.067843825 - core[0].svIdle(17), plen 0: [] +EVENT[884]: 0.068669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[885]: 0.068682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[886]: 0.068698075 - core[1].svIdle(17), plen 0: [] +EVENT[887]: 0.068813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[888]: 0.068828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[889]: 0.068843775 - core[0].svIdle(17), plen 0: [] +EVENT[890]: 0.069669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[891]: 0.069682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[892]: 0.069698325 - core[1].svIdle(17), plen 0: [] +EVENT[893]: 0.069813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[894]: 0.069828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[895]: 0.069848100 - core[0].svIdle(17), plen 0: [] +EVENT[896]: 0.070669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[897]: 0.070682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[898]: 0.070698075 - core[1].svIdle(17), plen 0: [] +EVENT[899]: 0.070813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[900]: 0.070828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[901]: 0.070843775 - core[0].svIdle(17), plen 0: [] +EVENT[902]: 0.071669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[903]: 0.071682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[904]: 0.071698325 - core[1].svIdle(17), plen 0: [] +EVENT[905]: 0.071813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[906]: 0.071828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[907]: 0.071843775 - core[0].svIdle(17), plen 0: [] +EVENT[908]: 0.072669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[909]: 0.072682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[910]: 0.072698100 - core[1].svIdle(17), plen 0: [] +EVENT[911]: 0.072813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[912]: 0.072828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[913]: 0.072843775 - core[0].svIdle(17), plen 0: [] +EVENT[914]: 0.073669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[915]: 0.073682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[916]: 0.073698075 - core[1].svIdle(17), plen 0: [] +EVENT[917]: 0.073813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[918]: 0.073828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[919]: 0.073843825 - core[0].svIdle(17), plen 0: [] +EVENT[920]: 0.074669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[921]: 0.074682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[922]: 0.074698075 - core[1].svIdle(17), plen 0: [] +EVENT[923]: 0.074813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[924]: 0.074828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[925]: 0.074843775 - core[0].svIdle(17), plen 0: [] +EVENT[926]: 0.075669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[927]: 0.075682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[928]: 0.075698325 - core[1].svIdle(17), plen 0: [] +EVENT[929]: 0.075813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[930]: 0.075828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[931]: 0.075843775 - core[0].svIdle(17), plen 0: [] +EVENT[932]: 0.076669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[933]: 0.076682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[934]: 0.076698100 - core[1].svIdle(17), plen 0: [] +EVENT[935]: 0.076813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[936]: 0.076828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[937]: 0.076843775 - core[0].svIdle(17), plen 0: [] +EVENT[938]: 0.077669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[939]: 0.077682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[940]: 0.077698075 - core[1].svIdle(17), plen 0: [] +EVENT[941]: 0.077813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[942]: 0.077828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[943]: 0.077843825 - core[0].svIdle(17), plen 0: [] +EVENT[944]: 0.078669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[945]: 0.078682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[946]: 0.078698075 - core[1].svIdle(17), plen 0: [] +EVENT[947]: 0.078813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[948]: 0.078828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[949]: 0.078843775 - core[0].svIdle(17), plen 0: [] +EVENT[950]: 0.079669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[951]: 0.079682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[952]: 0.079698325 - core[1].svIdle(17), plen 0: [] +EVENT[953]: 0.079813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[954]: 0.079828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[955]: 0.079843775 - core[0].svIdle(17), plen 0: [] +EVENT[956]: 0.080669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[957]: 0.080682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[958]: 0.080698100 - core[1].svIdle(17), plen 0: [] +EVENT[959]: 0.080813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[960]: 0.080828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[961]: 0.080843775 - core[0].svIdle(17), plen 0: [] +EVENT[962]: 0.081669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[963]: 0.081682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[964]: 0.081698075 - core[1].svIdle(17), plen 0: [] +EVENT[965]: 0.081813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[966]: 0.081828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[967]: 0.081843825 - core[0].svIdle(17), plen 0: [] +EVENT[968]: 0.082669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[969]: 0.082682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[970]: 0.082698325 - core[1].svIdle(17), plen 0: [] +EVENT[971]: 0.082813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[972]: 0.082828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[973]: 0.082843775 - core[0].svIdle(17), plen 0: [] +EVENT[974]: 0.083669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[975]: 0.083682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[976]: 0.083698100 - core[1].svIdle(17), plen 0: [] +EVENT[977]: 0.083813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[978]: 0.083828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[979]: 0.083843775 - core[0].svIdle(17), plen 0: [] +EVENT[980]: 0.084669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[981]: 0.084682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[982]: 0.084698075 - core[1].svIdle(17), plen 0: [] +EVENT[983]: 0.084813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[984]: 0.084828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[985]: 0.084843825 - core[0].svIdle(17), plen 0: [] +EVENT[986]: 0.085669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[987]: 0.085682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[988]: 0.085698075 - core[1].svIdle(17), plen 0: [] +EVENT[989]: 0.085813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[990]: 0.085828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[991]: 0.085843775 - core[0].svIdle(17), plen 0: [] +EVENT[992]: 0.086669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[993]: 0.086682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[994]: 0.086698325 - core[1].svIdle(17), plen 0: [] +EVENT[995]: 0.086813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[996]: 0.086828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[997]: 0.086843775 - core[0].svIdle(17), plen 0: [] +EVENT[998]: 0.087669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[999]: 0.087682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1000]: 0.087698100 - core[1].svIdle(17), plen 0: [] +EVENT[1001]: 0.087813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1002]: 0.087828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1003]: 0.087843775 - core[0].svIdle(17), plen 0: [] +EVENT[1004]: 0.088669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1005]: 0.088682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1006]: 0.088698075 - core[1].svIdle(17), plen 0: [] +EVENT[1007]: 0.088813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1008]: 0.088828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1009]: 0.088843825 - core[0].svIdle(17), plen 0: [] +EVENT[1010]: 0.089669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1011]: 0.089682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1012]: 0.089698075 - core[1].svIdle(17), plen 0: [] +EVENT[1013]: 0.089813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1014]: 0.089828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1015]: 0.089843775 - core[0].svIdle(17), plen 0: [] +EVENT[1016]: 0.090669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1017]: 0.090682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1018]: 0.090698325 - core[1].svIdle(17), plen 0: [] +EVENT[1019]: 0.090813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1020]: 0.090828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1021]: 0.090843775 - core[0].svIdle(17), plen 0: [] +EVENT[1022]: 0.091669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1023]: 0.091682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1024]: 0.091698100 - core[1].svIdle(17), plen 0: [] +EVENT[1025]: 0.091813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1026]: 0.091828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[1027]: 0.091828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[1028]: 0.091840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1029]: 0.091856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[1030]: 0.091892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461128, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.091892175] HEAP: Allocated 4 bytes @ 0x3ffbb788 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1031]: 0.091930000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461144, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.091930000] HEAP: Allocated 8 bytes @ 0x3ffbb798 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1032]: 0.091946900 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1033]: 0.091962875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1034]: 0.092027050 - core[0].svPrint(26), plen 69: [msg: I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798 +, lvl: 0, unused: 0] +[0.092027050] LOG: I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798 +EVENT[1035]: 0.092040625 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1036]: 0.092053750 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[1037]: 0.092053750 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[1038]: 0.092069950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1039]: 0.092080825 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1040]: 0.092091600 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1041]: 0.092105500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1042]: 0.092116300 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[1043]: 0.092127150 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1044]: 0.092139050 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1045]: 0.092149275 - core[0].svIdle(17), plen 0: [] +EVENT[1046]: 0.092160725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1047]: 0.092181000 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1048]: 0.092244550 - core[1].svPrint(26), plen 63: [msg: I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798 +, lvl: 0, unused: 0] +[0.092244550] LOG: I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798 +EVENT[1049]: 0.092265750 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461144, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.092265750] HEAP: Freed bytes @ 0x3ffbb798 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1050]: 0.092292625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1051]: 0.092304050 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1052]: 0.092320625 - core[1].svIdle(17), plen 0: [] +EVENT[1053]: 0.092669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1054]: 0.092682950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1055]: 0.092698525 - core[1].svIdle(17), plen 0: [] +EVENT[1056]: 0.092813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1057]: 0.092828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[1058]: 0.092828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[1059]: 0.092840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1060]: 0.092856775 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[1061]: 0.092892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461144, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.092892175] HEAP: Allocated 8 bytes @ 0x3ffbb798 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1062]: 0.092926700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461160, size: 16, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.092926700] HEAP: Allocated 16 bytes @ 0x3ffbb7a8 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1063]: 0.092943650 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1064]: 0.092963825 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1065]: 0.093030300 - core[0].svPrint(26), plen 70: [msg: I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8 +, lvl: 0, unused: 0] +[0.093030300] LOG: I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8 +EVENT[1066]: 0.093043950 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1067]: 0.093057125 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[1068]: 0.093057125 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[1069]: 0.093073450 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1070]: 0.093084300 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1071]: 0.093095050 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1072]: 0.093108775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1073]: 0.093119625 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[1074]: 0.093130450 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1075]: 0.093142300 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1076]: 0.093152575 - core[0].svIdle(17), plen 0: [] +EVENT[1077]: 0.093164050 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1078]: 0.093180350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1079]: 0.093243800 - core[1].svPrint(26), plen 63: [msg: I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8 +, lvl: 0, unused: 0] +[0.093243800] LOG: I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8 +EVENT[1080]: 0.093268825 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461160, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.093268825] HEAP: Freed bytes @ 0x3ffbb7a8 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1081]: 0.093295825 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1082]: 0.093307375 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1083]: 0.093323950 - core[1].svIdle(17), plen 0: [] +EVENT[1084]: 0.093669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1085]: 0.093682950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1086]: 0.093698525 - core[1].svIdle(17), plen 0: [] +EVENT[1087]: 0.093813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1088]: 0.093828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[1089]: 0.093828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[1090]: 0.093840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1091]: 0.093856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[1092]: 0.093892000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461160, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.093892000] HEAP: Allocated 12 bytes @ 0x3ffbb7a8 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1093]: 0.093926400 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461176, size: 24, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.093926400] HEAP: Allocated 24 bytes @ 0x3ffbb7b8 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1094]: 0.093943300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1095]: 0.093959425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1096]: 0.094029750 - core[0].svPrint(26), plen 70: [msg: I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8 +, lvl: 0, unused: 0] +[0.094029750] LOG: I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8 +EVENT[1097]: 0.094047575 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1098]: 0.094060800 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[1099]: 0.094060800 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[1100]: 0.094077125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1101]: 0.094087975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1102]: 0.094098725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1103]: 0.094112450 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1104]: 0.094123350 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[1105]: 0.094134175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1106]: 0.094146025 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1107]: 0.094157325 - core[0].svIdle(17), plen 0: [] +EVENT[1108]: 0.094168950 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1109]: 0.094185350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1110]: 0.094248900 - core[1].svPrint(26), plen 63: [msg: I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8 +, lvl: 0, unused: 0] +[0.094248900] LOG: I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8 +EVENT[1111]: 0.094270100 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461176, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.094270100] HEAP: Freed bytes @ 0x3ffbb7b8 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1112]: 0.094301100 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1113]: 0.094312575 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1114]: 0.094329275 - core[1].svIdle(17), plen 0: [] +EVENT[1115]: 0.094669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1116]: 0.094682850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1117]: 0.094698425 - core[1].svIdle(17), plen 0: [] +EVENT[1118]: 0.094813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1119]: 0.094828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1120]: 0.094843825 - core[0].svIdle(17), plen 0: [] +EVENT[1121]: 0.095669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1122]: 0.095682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1123]: 0.095698075 - core[1].svIdle(17), plen 0: [] +EVENT[1124]: 0.095813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1125]: 0.095828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1126]: 0.095843775 - core[0].svIdle(17), plen 0: [] +EVENT[1127]: 0.096669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1128]: 0.096682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1129]: 0.096698325 - core[1].svIdle(17), plen 0: [] +EVENT[1130]: 0.096813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1131]: 0.096828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1132]: 0.096843775 - core[0].svIdle(17), plen 0: [] +EVENT[1133]: 0.097669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1134]: 0.097682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1135]: 0.097698100 - core[1].svIdle(17), plen 0: [] +EVENT[1136]: 0.097813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1137]: 0.097828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1138]: 0.097843775 - core[0].svIdle(17), plen 0: [] +EVENT[1139]: 0.098669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1140]: 0.098682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1141]: 0.098698075 - core[1].svIdle(17), plen 0: [] +EVENT[1142]: 0.098813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1143]: 0.098828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1144]: 0.098843825 - core[0].svIdle(17), plen 0: [] +EVENT[1145]: 0.099669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1146]: 0.099682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1147]: 0.099698075 - core[1].svIdle(17), plen 0: [] +EVENT[1148]: 0.099813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1149]: 0.099828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1150]: 0.099843775 - core[0].svIdle(17), plen 0: [] +EVENT[1151]: 0.100669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1152]: 0.100682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1153]: 0.100698325 - core[1].svIdle(17), plen 0: [] +EVENT[1154]: 0.100813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1155]: 0.100828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1156]: 0.100843775 - core[0].svIdle(17), plen 0: [] +EVENT[1157]: 0.101669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1158]: 0.101682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1159]: 0.101698100 - core[1].svIdle(17), plen 0: [] +EVENT[1160]: 0.101813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1161]: 0.101828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1162]: 0.101843775 - core[0].svIdle(17), plen 0: [] +EVENT[1163]: 0.102669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1164]: 0.102682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1165]: 0.102698075 - core[1].svIdle(17), plen 0: [] +EVENT[1166]: 0.102813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1167]: 0.102828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1168]: 0.102843825 - core[0].svIdle(17), plen 0: [] +EVENT[1169]: 0.103669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1170]: 0.103682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1171]: 0.103698075 - core[1].svIdle(17), plen 0: [] +EVENT[1172]: 0.103813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1173]: 0.103828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1174]: 0.103843775 - core[0].svIdle(17), plen 0: [] +EVENT[1175]: 0.104669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1176]: 0.104686550 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1177]: 0.104701825 - core[1].svIdle(17), plen 0: [] +EVENT[1178]: 0.104813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1179]: 0.104828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1180]: 0.104843775 - core[0].svIdle(17), plen 0: [] +EVENT[1181]: 0.105669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1182]: 0.105682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1183]: 0.105698075 - core[1].svIdle(17), plen 0: [] +EVENT[1184]: 0.105813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1185]: 0.105828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1186]: 0.105843825 - core[0].svIdle(17), plen 0: [] +EVENT[1187]: 0.106669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1188]: 0.106682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1189]: 0.106698075 - core[1].svIdle(17), plen 0: [] +EVENT[1190]: 0.106813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1191]: 0.106828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1192]: 0.106843775 - core[0].svIdle(17), plen 0: [] +EVENT[1193]: 0.107669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1194]: 0.107682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1195]: 0.107698325 - core[1].svIdle(17), plen 0: [] +EVENT[1196]: 0.107813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1197]: 0.107828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1198]: 0.107843775 - core[0].svIdle(17), plen 0: [] +EVENT[1199]: 0.108669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1200]: 0.108682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1201]: 0.108698100 - core[1].svIdle(17), plen 0: [] +EVENT[1202]: 0.108813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1203]: 0.108828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1204]: 0.108843775 - core[0].svIdle(17), plen 0: [] +EVENT[1205]: 0.109669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1206]: 0.109682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1207]: 0.109698075 - core[1].svIdle(17), plen 0: [] +EVENT[1208]: 0.109813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1209]: 0.109828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1210]: 0.109843825 - core[0].svIdle(17), plen 0: [] +EVENT[1211]: 0.110669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1212]: 0.110682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1213]: 0.110698075 - core[1].svIdle(17), plen 0: [] +EVENT[1214]: 0.110813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1215]: 0.110828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1216]: 0.110843775 - core[0].svIdle(17), plen 0: [] +EVENT[1217]: 0.111669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1218]: 0.111682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1219]: 0.111698325 - core[1].svIdle(17), plen 0: [] +EVENT[1220]: 0.111813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1221]: 0.111828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1222]: 0.111843775 - core[0].svIdle(17), plen 0: [] +EVENT[1223]: 0.112669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1224]: 0.112682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1225]: 0.112698100 - core[1].svIdle(17), plen 0: [] +EVENT[1226]: 0.112813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1227]: 0.112828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1228]: 0.112843775 - core[0].svIdle(17), plen 0: [] +EVENT[1229]: 0.113669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1230]: 0.113682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1231]: 0.113698075 - core[1].svIdle(17), plen 0: [] +EVENT[1232]: 0.113813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1233]: 0.113828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1234]: 0.113843825 - core[0].svIdle(17), plen 0: [] +EVENT[1235]: 0.114669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1236]: 0.114682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1237]: 0.114698075 - core[1].svIdle(17), plen 0: [] +EVENT[1238]: 0.114813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1239]: 0.114828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1240]: 0.114843775 - core[0].svIdle(17), plen 0: [] +EVENT[1241]: 0.115669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1242]: 0.115682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1243]: 0.115698325 - core[1].svIdle(17), plen 0: [] +EVENT[1244]: 0.115813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1245]: 0.115828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1246]: 0.115843775 - core[0].svIdle(17), plen 0: [] +EVENT[1247]: 0.116669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1248]: 0.116687200 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1249]: 0.116702350 - core[1].svIdle(17), plen 0: [] +EVENT[1250]: 0.116813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1251]: 0.116828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1252]: 0.116843775 - core[0].svIdle(17), plen 0: [] +EVENT[1253]: 0.117669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1254]: 0.117682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1255]: 0.117698075 - core[1].svIdle(17), plen 0: [] +EVENT[1256]: 0.117813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1257]: 0.117828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1258]: 0.117843825 - core[0].svIdle(17), plen 0: [] +EVENT[1259]: 0.118669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1260]: 0.118682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1261]: 0.118698075 - core[1].svIdle(17), plen 0: [] +EVENT[1262]: 0.118813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1263]: 0.118828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1264]: 0.118843775 - core[0].svIdle(17), plen 0: [] +EVENT[1265]: 0.119669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1266]: 0.119682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1267]: 0.119698325 - core[1].svIdle(17), plen 0: [] +EVENT[1268]: 0.119813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1269]: 0.119828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1270]: 0.119843775 - core[0].svIdle(17), plen 0: [] +EVENT[1271]: 0.120669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1272]: 0.120682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1273]: 0.120698100 - core[1].svIdle(17), plen 0: [] +EVENT[1274]: 0.120813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1275]: 0.120828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1276]: 0.120843775 - core[0].svIdle(17), plen 0: [] +EVENT[1277]: 0.121669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1278]: 0.121682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1279]: 0.121698075 - core[1].svIdle(17), plen 0: [] +EVENT[1280]: 0.121813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1281]: 0.121828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[1282]: 0.121828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[1283]: 0.121840850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1284]: 0.121856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[1285]: 0.121891850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461176, size: 5, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.121891850] HEAP: Allocated 5 bytes @ 0x3ffbb7b8 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1286]: 0.121926275 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461192, size: 10, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.121926275] HEAP: Allocated 10 bytes @ 0x3ffbb7c8 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1287]: 0.121943300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1288]: 0.121959425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1289]: 0.122029850 - core[0].svPrint(26), plen 70: [msg: I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8 +, lvl: 0, unused: 0] +[0.122029850] LOG: I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8 +EVENT[1290]: 0.122047575 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1291]: 0.122060800 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[1292]: 0.122060800 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[1293]: 0.122077050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1294]: 0.122087900 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1295]: 0.122098675 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1296]: 0.122112500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1297]: 0.122123400 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[1298]: 0.122134225 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1299]: 0.122146175 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1300]: 0.122156425 - core[0].svIdle(17), plen 0: [] +EVENT[1301]: 0.122167850 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1302]: 0.122184200 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1303]: 0.122247750 - core[1].svPrint(26), plen 63: [msg: I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8 +, lvl: 0, unused: 0] +[0.122247750] LOG: I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8 +EVENT[1304]: 0.122268950 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461192, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.122268950] HEAP: Freed bytes @ 0x3ffbb7c8 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1305]: 0.122299975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1306]: 0.122311450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1307]: 0.122328150 - core[1].svIdle(17), plen 0: [] +EVENT[1308]: 0.122669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1309]: 0.122682850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1310]: 0.122698425 - core[1].svIdle(17), plen 0: [] +EVENT[1311]: 0.122813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1312]: 0.122828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[1313]: 0.122828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[1314]: 0.122840850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1315]: 0.122856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[1316]: 0.122891850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461192, size: 10, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.122891850] HEAP: Allocated 10 bytes @ 0x3ffbb7c8 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1317]: 0.122926275 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461208, size: 20, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.122926275] HEAP: Allocated 20 bytes @ 0x3ffbb7d8 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1318]: 0.122943300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1319]: 0.122959425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1320]: 0.123029850 - core[0].svPrint(26), plen 70: [msg: I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8 +, lvl: 0, unused: 0] +[0.123029850] LOG: I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8 +EVENT[1321]: 0.123043400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1322]: 0.123060825 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[1323]: 0.123060825 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[1324]: 0.123077125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1325]: 0.123087975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1326]: 0.123098725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1327]: 0.123112450 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1328]: 0.123123300 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[1329]: 0.123134125 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1330]: 0.123146000 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1331]: 0.123156250 - core[0].svIdle(17), plen 0: [] +EVENT[1332]: 0.123167725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1333]: 0.123184025 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1334]: 0.123247475 - core[1].svPrint(26), plen 63: [msg: I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8 +, lvl: 0, unused: 0] +[0.123247475] LOG: I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8 +EVENT[1335]: 0.123268650 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461208, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.123268650] HEAP: Freed bytes @ 0x3ffbb7d8 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1336]: 0.123295650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1337]: 0.123307075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1338]: 0.123323650 - core[1].svIdle(17), plen 0: [] +EVENT[1339]: 0.123669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1340]: 0.123682950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1341]: 0.123698525 - core[1].svIdle(17), plen 0: [] +EVENT[1342]: 0.123813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1343]: 0.123828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[1344]: 0.123828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[1345]: 0.123840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1346]: 0.123856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[1347]: 0.123892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461208, size: 15, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.123892175] HEAP: Allocated 15 bytes @ 0x3ffbb7d8 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1348]: 0.123930850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461228, size: 30, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.123930850] HEAP: Allocated 30 bytes @ 0x3ffbb7ec from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1349]: 0.123947750 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1350]: 0.123963725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1351]: 0.124034075 - core[0].svPrint(26), plen 70: [msg: I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec +, lvl: 0, unused: 0] +[0.124034075] LOG: I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec +EVENT[1352]: 0.124047800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1353]: 0.124061025 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[1354]: 0.124061025 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[1355]: 0.124077325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1356]: 0.124088175 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1357]: 0.124098950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1358]: 0.124112675 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1359]: 0.124125000 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[1360]: 0.124135825 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1361]: 0.124147700 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1362]: 0.124158975 - core[0].svIdle(17), plen 0: [] +EVENT[1363]: 0.124170625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1364]: 0.124190325 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1365]: 0.124253875 - core[1].svPrint(26), plen 63: [msg: I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec +, lvl: 0, unused: 0] +[0.124253875] LOG: I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec +EVENT[1366]: 0.124275075 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461228, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.124275075] HEAP: Freed bytes @ 0x3ffbb7ec from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1367]: 0.124301975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1368]: 0.124313400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1369]: 0.124329975 - core[1].svIdle(17), plen 0: [] +EVENT[1370]: 0.124669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1371]: 0.124682950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1372]: 0.124698525 - core[1].svIdle(17), plen 0: [] +EVENT[1373]: 0.124813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1374]: 0.124828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1375]: 0.124843775 - core[0].svIdle(17), plen 0: [] +EVENT[1376]: 0.125669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1377]: 0.125682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1378]: 0.125698325 - core[1].svIdle(17), plen 0: [] +EVENT[1379]: 0.125813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1380]: 0.125828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1381]: 0.125843775 - core[0].svIdle(17), plen 0: [] +EVENT[1382]: 0.126669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1383]: 0.126682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1384]: 0.126698100 - core[1].svIdle(17), plen 0: [] +EVENT[1385]: 0.126813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1386]: 0.126828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1387]: 0.126843775 - core[0].svIdle(17), plen 0: [] +EVENT[1388]: 0.127669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1389]: 0.127682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1390]: 0.127698075 - core[1].svIdle(17), plen 0: [] +EVENT[1391]: 0.127813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1392]: 0.127828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1393]: 0.127843825 - core[0].svIdle(17), plen 0: [] +EVENT[1394]: 0.128669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1395]: 0.128682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1396]: 0.128698075 - core[1].svIdle(17), plen 0: [] +EVENT[1397]: 0.128813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1398]: 0.128828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1399]: 0.128843775 - core[0].svIdle(17), plen 0: [] +EVENT[1400]: 0.129669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1401]: 0.129682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1402]: 0.129698325 - core[1].svIdle(17), plen 0: [] +EVENT[1403]: 0.129813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1404]: 0.129828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1405]: 0.129848100 - core[0].svIdle(17), plen 0: [] +EVENT[1406]: 0.130669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1407]: 0.130682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1408]: 0.130698075 - core[1].svIdle(17), plen 0: [] +EVENT[1409]: 0.130813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1410]: 0.130828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1411]: 0.130843775 - core[0].svIdle(17), plen 0: [] +EVENT[1412]: 0.131669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1413]: 0.131682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1414]: 0.131698325 - core[1].svIdle(17), plen 0: [] +EVENT[1415]: 0.131813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1416]: 0.131828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1417]: 0.131843775 - core[0].svIdle(17), plen 0: [] +EVENT[1418]: 0.132669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1419]: 0.132682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1420]: 0.132698100 - core[1].svIdle(17), plen 0: [] +EVENT[1421]: 0.132813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1422]: 0.132828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1423]: 0.132843775 - core[0].svIdle(17), plen 0: [] +EVENT[1424]: 0.133669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1425]: 0.133682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1426]: 0.133698075 - core[1].svIdle(17), plen 0: [] +EVENT[1427]: 0.133813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1428]: 0.133828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1429]: 0.133843825 - core[0].svIdle(17), plen 0: [] +EVENT[1430]: 0.134669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1431]: 0.134682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1432]: 0.134698075 - core[1].svIdle(17), plen 0: [] +EVENT[1433]: 0.134813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1434]: 0.134828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1435]: 0.134843775 - core[0].svIdle(17), plen 0: [] +EVENT[1436]: 0.135669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1437]: 0.135682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1438]: 0.135698325 - core[1].svIdle(17), plen 0: [] +EVENT[1439]: 0.135813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1440]: 0.135828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1441]: 0.135843775 - core[0].svIdle(17), plen 0: [] +EVENT[1442]: 0.136669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1443]: 0.136682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1444]: 0.136698100 - core[1].svIdle(17), plen 0: [] +EVENT[1445]: 0.136813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1446]: 0.136828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1447]: 0.136843775 - core[0].svIdle(17), plen 0: [] +EVENT[1448]: 0.137669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1449]: 0.137682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1450]: 0.137698075 - core[1].svIdle(17), plen 0: [] +EVENT[1451]: 0.137813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1452]: 0.137828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1453]: 0.137843825 - core[0].svIdle(17), plen 0: [] +EVENT[1454]: 0.138669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1455]: 0.138682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1456]: 0.138698075 - core[1].svIdle(17), plen 0: [] +EVENT[1457]: 0.138813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1458]: 0.138828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1459]: 0.138843775 - core[0].svIdle(17), plen 0: [] +EVENT[1460]: 0.139669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1461]: 0.139682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1462]: 0.139698325 - core[1].svIdle(17), plen 0: [] +EVENT[1463]: 0.139813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1464]: 0.139828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1465]: 0.139843775 - core[0].svIdle(17), plen 0: [] +EVENT[1466]: 0.140669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1467]: 0.140682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1468]: 0.140698100 - core[1].svIdle(17), plen 0: [] +EVENT[1469]: 0.140813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1470]: 0.140828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1471]: 0.140843775 - core[0].svIdle(17), plen 0: [] +EVENT[1472]: 0.141669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1473]: 0.141682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1474]: 0.141698075 - core[1].svIdle(17), plen 0: [] +EVENT[1475]: 0.141813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1476]: 0.141828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1477]: 0.141843825 - core[0].svIdle(17), plen 0: [] +EVENT[1478]: 0.142669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1479]: 0.142682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1480]: 0.142698325 - core[1].svIdle(17), plen 0: [] +EVENT[1481]: 0.142813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1482]: 0.142828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1483]: 0.142843775 - core[0].svIdle(17), plen 0: [] +EVENT[1484]: 0.143669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1485]: 0.143682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1486]: 0.143698100 - core[1].svIdle(17), plen 0: [] +EVENT[1487]: 0.143813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1488]: 0.143828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1489]: 0.143843775 - core[0].svIdle(17), plen 0: [] +EVENT[1490]: 0.144669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1491]: 0.144682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1492]: 0.144698075 - core[1].svIdle(17), plen 0: [] +EVENT[1493]: 0.144813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1494]: 0.144828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1495]: 0.144843825 - core[0].svIdle(17), plen 0: [] +EVENT[1496]: 0.145669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1497]: 0.145682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1498]: 0.145698075 - core[1].svIdle(17), plen 0: [] +EVENT[1499]: 0.145813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1500]: 0.145828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1501]: 0.145843775 - core[0].svIdle(17), plen 0: [] +EVENT[1502]: 0.146669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1503]: 0.146682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1504]: 0.146698325 - core[1].svIdle(17), plen 0: [] +EVENT[1505]: 0.146813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1506]: 0.146828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1507]: 0.146843775 - core[0].svIdle(17), plen 0: [] +EVENT[1508]: 0.147669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1509]: 0.147682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1510]: 0.147698100 - core[1].svIdle(17), plen 0: [] +EVENT[1511]: 0.147813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1512]: 0.147828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1513]: 0.147843775 - core[0].svIdle(17), plen 0: [] +EVENT[1514]: 0.148669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1515]: 0.148682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1516]: 0.148698075 - core[1].svIdle(17), plen 0: [] +EVENT[1517]: 0.148813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1518]: 0.148828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1519]: 0.148843825 - core[0].svIdle(17), plen 0: [] +EVENT[1520]: 0.149669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1521]: 0.149682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1522]: 0.149698075 - core[1].svIdle(17), plen 0: [] +EVENT[1523]: 0.149813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1524]: 0.149828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1525]: 0.149843775 - core[0].svIdle(17), plen 0: [] +EVENT[1526]: 0.150669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1527]: 0.150682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1528]: 0.150698325 - core[1].svIdle(17), plen 0: [] +EVENT[1529]: 0.150813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1530]: 0.150828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1531]: 0.150843775 - core[0].svIdle(17), plen 0: [] +EVENT[1532]: 0.151669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1533]: 0.151682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1534]: 0.151698100 - core[1].svIdle(17), plen 0: [] +EVENT[1535]: 0.151813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1536]: 0.151828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[1537]: 0.151828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[1538]: 0.151840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1539]: 0.151856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[1540]: 0.151892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461228, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.151892175] HEAP: Allocated 6 bytes @ 0x3ffbb7ec from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1541]: 0.151930650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461244, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.151930650] HEAP: Allocated 12 bytes @ 0x3ffbb7fc from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1542]: 0.151947550 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1543]: 0.151963550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1544]: 0.152033875 - core[0].svPrint(26), plen 70: [msg: I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc +, lvl: 0, unused: 0] +[0.152033875] LOG: I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc +EVENT[1545]: 0.152047475 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1546]: 0.152060700 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[1547]: 0.152060700 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[1548]: 0.152076950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1549]: 0.152087800 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1550]: 0.152098575 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1551]: 0.152112375 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1552]: 0.152123175 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[1553]: 0.152134025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1554]: 0.152145900 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1555]: 0.152156200 - core[0].svIdle(17), plen 0: [] +EVENT[1556]: 0.152167725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1557]: 0.152188150 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1558]: 0.152251700 - core[1].svPrint(26), plen 63: [msg: I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc +, lvl: 0, unused: 0] +[0.152251700] LOG: I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc +EVENT[1559]: 0.152272900 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461244, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.152272900] HEAP: Freed bytes @ 0x3ffbb7fc from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1560]: 0.152299800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1561]: 0.152311225 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1562]: 0.152327800 - core[1].svIdle(17), plen 0: [] +EVENT[1563]: 0.152669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1564]: 0.152682950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1565]: 0.152698525 - core[1].svIdle(17), plen 0: [] +EVENT[1566]: 0.152813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1567]: 0.152828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[1568]: 0.152828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[1569]: 0.152840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1570]: 0.152856775 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[1571]: 0.152892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461244, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.152892175] HEAP: Allocated 12 bytes @ 0x3ffbb7fc from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1572]: 0.152926700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461260, size: 24, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.152926700] HEAP: Allocated 24 bytes @ 0x3ffbb80c from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1573]: 0.152943650 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1574]: 0.152963825 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1575]: 0.153034250 - core[0].svPrint(26), plen 70: [msg: I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c +, lvl: 0, unused: 0] +[0.153034250] LOG: I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c +EVENT[1576]: 0.153047900 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1577]: 0.153061075 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[1578]: 0.153061075 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[1579]: 0.153077400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1580]: 0.153088250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1581]: 0.153098975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1582]: 0.153112750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1583]: 0.153123700 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[1584]: 0.153134500 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1585]: 0.153146375 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1586]: 0.153156625 - core[0].svIdle(17), plen 0: [] +EVENT[1587]: 0.153168100 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1588]: 0.153184400 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1589]: 0.153247850 - core[1].svPrint(26), plen 63: [msg: I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c +, lvl: 0, unused: 0] +[0.153247850] LOG: I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c +EVENT[1590]: 0.153272900 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461260, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.153272900] HEAP: Freed bytes @ 0x3ffbb80c from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1591]: 0.153299900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1592]: 0.153311325 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1593]: 0.153327900 - core[1].svIdle(17), plen 0: [] +EVENT[1594]: 0.153669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1595]: 0.153682950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1596]: 0.153698525 - core[1].svIdle(17), plen 0: [] +EVENT[1597]: 0.153813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1598]: 0.153828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[1599]: 0.153828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[1600]: 0.153840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1601]: 0.153856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[1602]: 0.153892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461260, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.153892175] HEAP: Allocated 18 bytes @ 0x3ffbb80c from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1603]: 0.153926725 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461284, size: 36, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.153926725] HEAP: Allocated 36 bytes @ 0x3ffbb824 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1604]: 0.153943625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1605]: 0.153959625 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1606]: 0.154029950 - core[0].svPrint(26), plen 70: [msg: I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824 +, lvl: 0, unused: 0] +[0.154029950] LOG: I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824 +EVENT[1607]: 0.154047775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1608]: 0.154061125 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[1609]: 0.154061125 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[1610]: 0.154077450 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1611]: 0.154088300 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1612]: 0.154099050 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1613]: 0.154112775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1614]: 0.154123675 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[1615]: 0.154134500 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1616]: 0.154146350 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1617]: 0.154157650 - core[0].svIdle(17), plen 0: [] +EVENT[1618]: 0.154169275 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1619]: 0.154185675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1620]: 0.154249225 - core[1].svPrint(26), plen 63: [msg: I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824 +, lvl: 0, unused: 0] +[0.154249225] LOG: I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824 +EVENT[1621]: 0.154270425 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461284, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.154270425] HEAP: Freed bytes @ 0x3ffbb824 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1622]: 0.154301425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1623]: 0.154312900 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1624]: 0.154329600 - core[1].svIdle(17), plen 0: [] +EVENT[1625]: 0.154669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1626]: 0.154682850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1627]: 0.154698425 - core[1].svIdle(17), plen 0: [] +EVENT[1628]: 0.154813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1629]: 0.154828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1630]: 0.154843825 - core[0].svIdle(17), plen 0: [] +EVENT[1631]: 0.155669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1632]: 0.155682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1633]: 0.155698075 - core[1].svIdle(17), plen 0: [] +EVENT[1634]: 0.155813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1635]: 0.155828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1636]: 0.155843775 - core[0].svIdle(17), plen 0: [] +EVENT[1637]: 0.156669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1638]: 0.156682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1639]: 0.156698325 - core[1].svIdle(17), plen 0: [] +EVENT[1640]: 0.156813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1641]: 0.156828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1642]: 0.156843775 - core[0].svIdle(17), plen 0: [] +EVENT[1643]: 0.157669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1644]: 0.157682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1645]: 0.157698100 - core[1].svIdle(17), plen 0: [] +EVENT[1646]: 0.157813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1647]: 0.157828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1648]: 0.157843775 - core[0].svIdle(17), plen 0: [] +EVENT[1649]: 0.158669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1650]: 0.158682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1651]: 0.158698075 - core[1].svIdle(17), plen 0: [] +EVENT[1652]: 0.158813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1653]: 0.158828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1654]: 0.158843825 - core[0].svIdle(17), plen 0: [] +EVENT[1655]: 0.159669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1656]: 0.159682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1657]: 0.159698075 - core[1].svIdle(17), plen 0: [] +EVENT[1658]: 0.159813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1659]: 0.159828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1660]: 0.159843775 - core[0].svIdle(17), plen 0: [] +EVENT[1661]: 0.160669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1662]: 0.160682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1663]: 0.160698325 - core[1].svIdle(17), plen 0: [] +EVENT[1664]: 0.160813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1665]: 0.160828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1666]: 0.160843775 - core[0].svIdle(17), plen 0: [] +EVENT[1667]: 0.161669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1668]: 0.161682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1669]: 0.161698100 - core[1].svIdle(17), plen 0: [] +EVENT[1670]: 0.161813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1671]: 0.161828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1672]: 0.161843775 - core[0].svIdle(17), plen 0: [] +EVENT[1673]: 0.162669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1674]: 0.162682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1675]: 0.162698075 - core[1].svIdle(17), plen 0: [] +EVENT[1676]: 0.162813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1677]: 0.162828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1678]: 0.162843825 - core[0].svIdle(17), plen 0: [] +EVENT[1679]: 0.163669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1680]: 0.163682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1681]: 0.163698075 - core[1].svIdle(17), plen 0: [] +EVENT[1682]: 0.163813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1683]: 0.163828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1684]: 0.163843775 - core[0].svIdle(17), plen 0: [] +EVENT[1685]: 0.164669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1686]: 0.164686550 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1687]: 0.164701825 - core[1].svIdle(17), plen 0: [] +EVENT[1688]: 0.164813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1689]: 0.164828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1690]: 0.164843775 - core[0].svIdle(17), plen 0: [] +EVENT[1691]: 0.165669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1692]: 0.165682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1693]: 0.165698075 - core[1].svIdle(17), plen 0: [] +EVENT[1694]: 0.165813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1695]: 0.165828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1696]: 0.165843825 - core[0].svIdle(17), plen 0: [] +EVENT[1697]: 0.166669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1698]: 0.166682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1699]: 0.166698075 - core[1].svIdle(17), plen 0: [] +EVENT[1700]: 0.166813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1701]: 0.166828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1702]: 0.166843775 - core[0].svIdle(17), plen 0: [] +EVENT[1703]: 0.167669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1704]: 0.167682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1705]: 0.167698325 - core[1].svIdle(17), plen 0: [] +EVENT[1706]: 0.167813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1707]: 0.167828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1708]: 0.167843775 - core[0].svIdle(17), plen 0: [] +EVENT[1709]: 0.168669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1710]: 0.168682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1711]: 0.168698100 - core[1].svIdle(17), plen 0: [] +EVENT[1712]: 0.168813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1713]: 0.168828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1714]: 0.168843775 - core[0].svIdle(17), plen 0: [] +EVENT[1715]: 0.169669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1716]: 0.169682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1717]: 0.169698075 - core[1].svIdle(17), plen 0: [] +EVENT[1718]: 0.169813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1719]: 0.169828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1720]: 0.169843825 - core[0].svIdle(17), plen 0: [] +EVENT[1721]: 0.170669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1722]: 0.170682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1723]: 0.170698075 - core[1].svIdle(17), plen 0: [] +EVENT[1724]: 0.170813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1725]: 0.170828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1726]: 0.170843775 - core[0].svIdle(17), plen 0: [] +EVENT[1727]: 0.171669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1728]: 0.171682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1729]: 0.171698325 - core[1].svIdle(17), plen 0: [] +EVENT[1730]: 0.171813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1731]: 0.171828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1732]: 0.171843775 - core[0].svIdle(17), plen 0: [] +EVENT[1733]: 0.172669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1734]: 0.172682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1735]: 0.172698100 - core[1].svIdle(17), plen 0: [] +EVENT[1736]: 0.172813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1737]: 0.172828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1738]: 0.172843775 - core[0].svIdle(17), plen 0: [] +EVENT[1739]: 0.173669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1740]: 0.173682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1741]: 0.173698075 - core[1].svIdle(17), plen 0: [] +EVENT[1742]: 0.173813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1743]: 0.173828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1744]: 0.173843825 - core[0].svIdle(17), plen 0: [] +EVENT[1745]: 0.174669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1746]: 0.174682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1747]: 0.174698075 - core[1].svIdle(17), plen 0: [] +EVENT[1748]: 0.174813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1749]: 0.174828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1750]: 0.174843775 - core[0].svIdle(17), plen 0: [] +EVENT[1751]: 0.175669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1752]: 0.175682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1753]: 0.175698325 - core[1].svIdle(17), plen 0: [] +EVENT[1754]: 0.175813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1755]: 0.175828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1756]: 0.175843775 - core[0].svIdle(17), plen 0: [] +EVENT[1757]: 0.176669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1758]: 0.176687200 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1759]: 0.176702350 - core[1].svIdle(17), plen 0: [] +EVENT[1760]: 0.176813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1761]: 0.176828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1762]: 0.176843775 - core[0].svIdle(17), plen 0: [] +EVENT[1763]: 0.177669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1764]: 0.177682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1765]: 0.177698075 - core[1].svIdle(17), plen 0: [] +EVENT[1766]: 0.177813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1767]: 0.177828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1768]: 0.177843825 - core[0].svIdle(17), plen 0: [] +EVENT[1769]: 0.178669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1770]: 0.178682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1771]: 0.178698075 - core[1].svIdle(17), plen 0: [] +EVENT[1772]: 0.178813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1773]: 0.178828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1774]: 0.178843775 - core[0].svIdle(17), plen 0: [] +EVENT[1775]: 0.179669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1776]: 0.179682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1777]: 0.179698325 - core[1].svIdle(17), plen 0: [] +EVENT[1778]: 0.179813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1779]: 0.179828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1780]: 0.179843775 - core[0].svIdle(17), plen 0: [] +EVENT[1781]: 0.180669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1782]: 0.180682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1783]: 0.180698100 - core[1].svIdle(17), plen 0: [] +EVENT[1784]: 0.180813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1785]: 0.180828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1786]: 0.180843775 - core[0].svIdle(17), plen 0: [] +EVENT[1787]: 0.181669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1788]: 0.181682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1789]: 0.181698075 - core[1].svIdle(17), plen 0: [] +EVENT[1790]: 0.181813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1791]: 0.181828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[1792]: 0.181828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[1793]: 0.181840850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1794]: 0.181856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[1795]: 0.181891850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461284, size: 7, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.181891850] HEAP: Allocated 7 bytes @ 0x3ffbb824 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1796]: 0.181926275 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461300, size: 14, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.181926275] HEAP: Allocated 14 bytes @ 0x3ffbb834 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1797]: 0.181943300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1798]: 0.181959300 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1799]: 0.182029725 - core[0].svPrint(26), plen 70: [msg: I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834 +, lvl: 0, unused: 0] +[0.182029725] LOG: I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834 +EVENT[1800]: 0.182047475 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1801]: 0.182060700 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[1802]: 0.182060700 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[1803]: 0.182076925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1804]: 0.182087800 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1805]: 0.182098550 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1806]: 0.182112400 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1807]: 0.182123275 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[1808]: 0.182134150 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1809]: 0.182146025 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1810]: 0.182156325 - core[0].svIdle(17), plen 0: [] +EVENT[1811]: 0.182167850 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1812]: 0.182184150 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1813]: 0.182247700 - core[1].svPrint(26), plen 63: [msg: I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834 +, lvl: 0, unused: 0] +[0.182247700] LOG: I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834 +EVENT[1814]: 0.182268900 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461300, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.182268900] HEAP: Freed bytes @ 0x3ffbb834 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1815]: 0.182300050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1816]: 0.182311525 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1817]: 0.182328225 - core[1].svIdle(17), plen 0: [] +EVENT[1818]: 0.182669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1819]: 0.182682850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1820]: 0.182698425 - core[1].svIdle(17), plen 0: [] +EVENT[1821]: 0.182813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1822]: 0.182828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[1823]: 0.182828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[1824]: 0.182840850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1825]: 0.182856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[1826]: 0.182891700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461300, size: 14, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.182891700] HEAP: Allocated 14 bytes @ 0x3ffbb834 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1827]: 0.182926225 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461320, size: 28, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.182926225] HEAP: Allocated 28 bytes @ 0x3ffbb848 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1828]: 0.182943250 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1829]: 0.182959250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1830]: 0.183029675 - core[0].svPrint(26), plen 70: [msg: I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848 +, lvl: 0, unused: 0] +[0.183029675] LOG: I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848 +EVENT[1831]: 0.183043225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1832]: 0.183060650 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[1833]: 0.183060650 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[1834]: 0.183076975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1835]: 0.183087825 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1836]: 0.183098575 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1837]: 0.183112300 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1838]: 0.183123150 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[1839]: 0.183133975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1840]: 0.183145825 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1841]: 0.183156100 - core[0].svIdle(17), plen 0: [] +EVENT[1842]: 0.183167575 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1843]: 0.183183875 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1844]: 0.183247325 - core[1].svPrint(26), plen 63: [msg: I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848 +, lvl: 0, unused: 0] +[0.183247325] LOG: I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848 +EVENT[1845]: 0.183268600 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461320, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.183268600] HEAP: Freed bytes @ 0x3ffbb848 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1846]: 0.183295600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1847]: 0.183307025 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1848]: 0.183323600 - core[1].svIdle(17), plen 0: [] +EVENT[1849]: 0.183669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1850]: 0.183682950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1851]: 0.183698525 - core[1].svIdle(17), plen 0: [] +EVENT[1852]: 0.183813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1853]: 0.183828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[1854]: 0.183828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[1855]: 0.183840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1856]: 0.183856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[1857]: 0.183892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461320, size: 21, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.183892175] HEAP: Allocated 21 bytes @ 0x3ffbb848 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1858]: 0.183930850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461348, size: 42, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.183930850] HEAP: Allocated 42 bytes @ 0x3ffbb864 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1859]: 0.183947750 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1860]: 0.183963725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1861]: 0.184034075 - core[0].svPrint(26), plen 70: [msg: I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864 +, lvl: 0, unused: 0] +[0.184034075] LOG: I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864 +EVENT[1862]: 0.184047800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1863]: 0.184061025 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[1864]: 0.184061025 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[1865]: 0.184077325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1866]: 0.184088175 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1867]: 0.184098950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1868]: 0.184112675 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1869]: 0.184125000 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[1870]: 0.184135825 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1871]: 0.184147700 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1872]: 0.184158975 - core[0].svIdle(17), plen 0: [] +EVENT[1873]: 0.184170625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1874]: 0.184190325 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1875]: 0.184253875 - core[1].svPrint(26), plen 63: [msg: I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864 +, lvl: 0, unused: 0] +[0.184253875] LOG: I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864 +EVENT[1876]: 0.184275075 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461348, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.184275075] HEAP: Freed bytes @ 0x3ffbb864 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1877]: 0.184301975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1878]: 0.184313400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1879]: 0.184329975 - core[1].svIdle(17), plen 0: [] +EVENT[1880]: 0.184669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1881]: 0.184682950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1882]: 0.184698525 - core[1].svIdle(17), plen 0: [] +EVENT[1883]: 0.184813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1884]: 0.184828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1885]: 0.184843775 - core[0].svIdle(17), plen 0: [] +EVENT[1886]: 0.185669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1887]: 0.185682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1888]: 0.185698325 - core[1].svIdle(17), plen 0: [] +EVENT[1889]: 0.185813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1890]: 0.185828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1891]: 0.185843775 - core[0].svIdle(17), plen 0: [] +EVENT[1892]: 0.186669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1893]: 0.186682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1894]: 0.186698100 - core[1].svIdle(17), plen 0: [] +EVENT[1895]: 0.186813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1896]: 0.186828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1897]: 0.186843775 - core[0].svIdle(17), plen 0: [] +EVENT[1898]: 0.187669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1899]: 0.187682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1900]: 0.187698075 - core[1].svIdle(17), plen 0: [] +EVENT[1901]: 0.187813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1902]: 0.187828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1903]: 0.187843825 - core[0].svIdle(17), plen 0: [] +EVENT[1904]: 0.188669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1905]: 0.188682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1906]: 0.188698075 - core[1].svIdle(17), plen 0: [] +EVENT[1907]: 0.188813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1908]: 0.188828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1909]: 0.188843775 - core[0].svIdle(17), plen 0: [] +EVENT[1910]: 0.189669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1911]: 0.189682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1912]: 0.189698325 - core[1].svIdle(17), plen 0: [] +EVENT[1913]: 0.189813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1914]: 0.189828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1915]: 0.189848100 - core[0].svIdle(17), plen 0: [] +EVENT[1916]: 0.190669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1917]: 0.190682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1918]: 0.190698075 - core[1].svIdle(17), plen 0: [] +EVENT[1919]: 0.190813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1920]: 0.190828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1921]: 0.190843775 - core[0].svIdle(17), plen 0: [] +EVENT[1922]: 0.191669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1923]: 0.191682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1924]: 0.191698325 - core[1].svIdle(17), plen 0: [] +EVENT[1925]: 0.191813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1926]: 0.191828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1927]: 0.191843775 - core[0].svIdle(17), plen 0: [] +EVENT[1928]: 0.192669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1929]: 0.192682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1930]: 0.192698100 - core[1].svIdle(17), plen 0: [] +EVENT[1931]: 0.192813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1932]: 0.192828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1933]: 0.192843775 - core[0].svIdle(17), plen 0: [] +EVENT[1934]: 0.193669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1935]: 0.193682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1936]: 0.193698075 - core[1].svIdle(17), plen 0: [] +EVENT[1937]: 0.193813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1938]: 0.193828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1939]: 0.193843825 - core[0].svIdle(17), plen 0: [] +EVENT[1940]: 0.194669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1941]: 0.194682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1942]: 0.194698075 - core[1].svIdle(17), plen 0: [] +EVENT[1943]: 0.194813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1944]: 0.194828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1945]: 0.194843775 - core[0].svIdle(17), plen 0: [] +EVENT[1946]: 0.195669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1947]: 0.195682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1948]: 0.195698325 - core[1].svIdle(17), plen 0: [] +EVENT[1949]: 0.195813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1950]: 0.195828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1951]: 0.195843775 - core[0].svIdle(17), plen 0: [] +EVENT[1952]: 0.196669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1953]: 0.196682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1954]: 0.196698100 - core[1].svIdle(17), plen 0: [] +EVENT[1955]: 0.196813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1956]: 0.196828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1957]: 0.196843775 - core[0].svIdle(17), plen 0: [] +EVENT[1958]: 0.197669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1959]: 0.197682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1960]: 0.197698075 - core[1].svIdle(17), plen 0: [] +EVENT[1961]: 0.197813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1962]: 0.197828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1963]: 0.197843825 - core[0].svIdle(17), plen 0: [] +EVENT[1964]: 0.198669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1965]: 0.198682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1966]: 0.198698075 - core[1].svIdle(17), plen 0: [] +EVENT[1967]: 0.198813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1968]: 0.198828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1969]: 0.198843775 - core[0].svIdle(17), plen 0: [] +EVENT[1970]: 0.199669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1971]: 0.199682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1972]: 0.199698325 - core[1].svIdle(17), plen 0: [] +EVENT[1973]: 0.199813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1974]: 0.199828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1975]: 0.199843775 - core[0].svIdle(17), plen 0: [] +EVENT[1976]: 0.200669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1977]: 0.200682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1978]: 0.200698100 - core[1].svIdle(17), plen 0: [] +EVENT[1979]: 0.200813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1980]: 0.200828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1981]: 0.200843775 - core[0].svIdle(17), plen 0: [] +EVENT[1982]: 0.201669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1983]: 0.201682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1984]: 0.201698075 - core[1].svIdle(17), plen 0: [] +EVENT[1985]: 0.201813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1986]: 0.201828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1987]: 0.201843825 - core[0].svIdle(17), plen 0: [] +EVENT[1988]: 0.202669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1989]: 0.202682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1990]: 0.202698325 - core[1].svIdle(17), plen 0: [] +EVENT[1991]: 0.202813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1992]: 0.202828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1993]: 0.202843775 - core[0].svIdle(17), plen 0: [] +EVENT[1994]: 0.203669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1995]: 0.203682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1996]: 0.203698100 - core[1].svIdle(17), plen 0: [] +EVENT[1997]: 0.203813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1998]: 0.203828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1999]: 0.203843775 - core[0].svIdle(17), plen 0: [] +EVENT[2000]: 0.204669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2001]: 0.204682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2002]: 0.204698075 - core[1].svIdle(17), plen 0: [] +EVENT[2003]: 0.204813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2004]: 0.204828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2005]: 0.204843825 - core[0].svIdle(17), plen 0: [] +EVENT[2006]: 0.205669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2007]: 0.205682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2008]: 0.205698075 - core[1].svIdle(17), plen 0: [] +EVENT[2009]: 0.205813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2010]: 0.205828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2011]: 0.205843775 - core[0].svIdle(17), plen 0: [] +EVENT[2012]: 0.206669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2013]: 0.206682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2014]: 0.206698325 - core[1].svIdle(17), plen 0: [] +EVENT[2015]: 0.206813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2016]: 0.206828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2017]: 0.206843775 - core[0].svIdle(17), plen 0: [] +EVENT[2018]: 0.207669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2019]: 0.207682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2020]: 0.207698100 - core[1].svIdle(17), plen 0: [] +EVENT[2021]: 0.207813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2022]: 0.207828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2023]: 0.207843775 - core[0].svIdle(17), plen 0: [] +EVENT[2024]: 0.208669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2025]: 0.208682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2026]: 0.208698075 - core[1].svIdle(17), plen 0: [] +EVENT[2027]: 0.208813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2028]: 0.208828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2029]: 0.208843825 - core[0].svIdle(17), plen 0: [] +EVENT[2030]: 0.209669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2031]: 0.209682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2032]: 0.209698075 - core[1].svIdle(17), plen 0: [] +EVENT[2033]: 0.209813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2034]: 0.209828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2035]: 0.209843775 - core[0].svIdle(17), plen 0: [] +EVENT[2036]: 0.210669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2037]: 0.210682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2038]: 0.210698325 - core[1].svIdle(17), plen 0: [] +EVENT[2039]: 0.210813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2040]: 0.210828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2041]: 0.210843775 - core[0].svIdle(17), plen 0: [] +EVENT[2042]: 0.211669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2043]: 0.211682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2044]: 0.211698100 - core[1].svIdle(17), plen 0: [] +EVENT[2045]: 0.211813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2046]: 0.211828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[2047]: 0.211828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[2048]: 0.211840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2049]: 0.211856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[2050]: 0.211892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461348, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.211892175] HEAP: Allocated 8 bytes @ 0x3ffbb864 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2051]: 0.211930650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461364, size: 16, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.211930650] HEAP: Allocated 16 bytes @ 0x3ffbb874 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2052]: 0.211947550 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2053]: 0.211963550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2054]: 0.212033875 - core[0].svPrint(26), plen 70: [msg: I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874 +, lvl: 0, unused: 0] +[0.212033875] LOG: I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874 +EVENT[2055]: 0.212047475 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2056]: 0.212060700 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[2057]: 0.212060700 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[2058]: 0.212076950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2059]: 0.212087800 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2060]: 0.212098575 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2061]: 0.212112375 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2062]: 0.212123175 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[2063]: 0.212134025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2064]: 0.212145900 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2065]: 0.212156200 - core[0].svIdle(17), plen 0: [] +EVENT[2066]: 0.212167725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2067]: 0.212188150 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2068]: 0.212251700 - core[1].svPrint(26), plen 63: [msg: I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874 +, lvl: 0, unused: 0] +[0.212251700] LOG: I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874 +EVENT[2069]: 0.212272900 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461364, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.212272900] HEAP: Freed bytes @ 0x3ffbb874 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2070]: 0.212299800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2071]: 0.212311225 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2072]: 0.212327800 - core[1].svIdle(17), plen 0: [] +EVENT[2073]: 0.212669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2074]: 0.212682950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2075]: 0.212698525 - core[1].svIdle(17), plen 0: [] +EVENT[2076]: 0.212813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2077]: 0.212828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[2078]: 0.212828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[2079]: 0.212840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2080]: 0.212856775 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[2081]: 0.212892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461364, size: 16, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.212892175] HEAP: Allocated 16 bytes @ 0x3ffbb874 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2082]: 0.212926875 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461384, size: 32, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.212926875] HEAP: Allocated 32 bytes @ 0x3ffbb888 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2083]: 0.212943800 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2084]: 0.212963975 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2085]: 0.213034425 - core[0].svPrint(26), plen 70: [msg: I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888 +, lvl: 0, unused: 0] +[0.213034425] LOG: I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888 +EVENT[2086]: 0.213048050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2087]: 0.213061250 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[2088]: 0.213061250 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[2089]: 0.213077550 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2090]: 0.213088400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2091]: 0.213099150 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2092]: 0.213112875 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2093]: 0.213123725 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[2094]: 0.213134550 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2095]: 0.213146575 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2096]: 0.213156950 - core[0].svIdle(17), plen 0: [] +EVENT[2097]: 0.213168350 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2098]: 0.213184750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2099]: 0.213248200 - core[1].svPrint(26), plen 63: [msg: I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888 +, lvl: 0, unused: 0] +[0.213248200] LOG: I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888 +EVENT[2100]: 0.213273225 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461384, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.213273225] HEAP: Freed bytes @ 0x3ffbb888 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2101]: 0.213300225 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2102]: 0.213311650 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2103]: 0.213328225 - core[1].svIdle(17), plen 0: [] +EVENT[2104]: 0.213669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2105]: 0.213682950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2106]: 0.213698525 - core[1].svIdle(17), plen 0: [] +EVENT[2107]: 0.213813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2108]: 0.213828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[2109]: 0.213828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[2110]: 0.213840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2111]: 0.213856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[2112]: 0.213892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461384, size: 24, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.213892175] HEAP: Allocated 24 bytes @ 0x3ffbb888 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2113]: 0.213926725 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461412, size: 48, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.213926725] HEAP: Allocated 48 bytes @ 0x3ffbb8a4 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2114]: 0.213943625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2115]: 0.213959625 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2116]: 0.214029950 - core[0].svPrint(26), plen 70: [msg: I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4 +, lvl: 0, unused: 0] +[0.214029950] LOG: I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4 +EVENT[2117]: 0.214050450 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2118]: 0.214063675 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[2119]: 0.214063675 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[2120]: 0.214080000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2121]: 0.214090850 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2122]: 0.214101600 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2123]: 0.214115500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2124]: 0.214126375 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[2125]: 0.214137200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2126]: 0.214149050 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2127]: 0.214160350 - core[0].svIdle(17), plen 0: [] +EVENT[2128]: 0.214171975 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2129]: 0.214188375 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2130]: 0.214251925 - core[1].svPrint(26), plen 63: [msg: I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4 +, lvl: 0, unused: 0] +[0.214251925] LOG: I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4 +EVENT[2131]: 0.214273125 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461412, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.214273125] HEAP: Freed bytes @ 0x3ffbb8a4 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2132]: 0.214303450 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2133]: 0.214314925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2134]: 0.214331625 - core[1].svIdle(17), plen 0: [] +EVENT[2135]: 0.214669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2136]: 0.214682850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2137]: 0.214698425 - core[1].svIdle(17), plen 0: [] +EVENT[2138]: 0.214813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2139]: 0.214828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2140]: 0.214843825 - core[0].svIdle(17), plen 0: [] +EVENT[2141]: 0.215669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2142]: 0.215682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2143]: 0.215698075 - core[1].svIdle(17), plen 0: [] +EVENT[2144]: 0.215813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2145]: 0.215828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2146]: 0.215843775 - core[0].svIdle(17), plen 0: [] +EVENT[2147]: 0.216669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2148]: 0.216682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2149]: 0.216698325 - core[1].svIdle(17), plen 0: [] +EVENT[2150]: 0.216813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2151]: 0.216828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2152]: 0.216843775 - core[0].svIdle(17), plen 0: [] +EVENT[2153]: 0.217669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2154]: 0.217682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2155]: 0.217698100 - core[1].svIdle(17), plen 0: [] +EVENT[2156]: 0.217813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2157]: 0.217828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2158]: 0.217843775 - core[0].svIdle(17), plen 0: [] +EVENT[2159]: 0.218669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2160]: 0.218682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2161]: 0.218698075 - core[1].svIdle(17), plen 0: [] +EVENT[2162]: 0.218813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2163]: 0.218828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2164]: 0.218843825 - core[0].svIdle(17), plen 0: [] +EVENT[2165]: 0.219669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2166]: 0.219682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2167]: 0.219698075 - core[1].svIdle(17), plen 0: [] +EVENT[2168]: 0.219813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2169]: 0.219828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2170]: 0.219843775 - core[0].svIdle(17), plen 0: [] +EVENT[2171]: 0.220669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2172]: 0.220682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2173]: 0.220698325 - core[1].svIdle(17), plen 0: [] +EVENT[2174]: 0.220813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2175]: 0.220828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2176]: 0.220843775 - core[0].svIdle(17), plen 0: [] +EVENT[2177]: 0.221669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2178]: 0.221682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2179]: 0.221698100 - core[1].svIdle(17), plen 0: [] +EVENT[2180]: 0.221813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2181]: 0.221828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2182]: 0.221843775 - core[0].svIdle(17), plen 0: [] +EVENT[2183]: 0.222669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2184]: 0.222682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2185]: 0.222698075 - core[1].svIdle(17), plen 0: [] +EVENT[2186]: 0.222813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2187]: 0.222828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2188]: 0.222843825 - core[0].svIdle(17), plen 0: [] +EVENT[2189]: 0.223669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2190]: 0.223682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2191]: 0.223698075 - core[1].svIdle(17), plen 0: [] +EVENT[2192]: 0.223813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2193]: 0.223828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2194]: 0.223843775 - core[0].svIdle(17), plen 0: [] +EVENT[2195]: 0.224669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2196]: 0.224687175 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2197]: 0.224702325 - core[1].svIdle(17), plen 0: [] +EVENT[2198]: 0.224813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2199]: 0.224828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2200]: 0.224843775 - core[0].svIdle(17), plen 0: [] +EVENT[2201]: 0.225669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2202]: 0.225682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2203]: 0.225698075 - core[1].svIdle(17), plen 0: [] +EVENT[2204]: 0.225813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2205]: 0.225828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2206]: 0.225843825 - core[0].svIdle(17), plen 0: [] +EVENT[2207]: 0.226669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2208]: 0.226682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2209]: 0.226698075 - core[1].svIdle(17), plen 0: [] +EVENT[2210]: 0.226813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2211]: 0.226828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2212]: 0.226843775 - core[0].svIdle(17), plen 0: [] +EVENT[2213]: 0.227669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2214]: 0.227682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2215]: 0.227698325 - core[1].svIdle(17), plen 0: [] +EVENT[2216]: 0.227813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2217]: 0.227828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2218]: 0.227843775 - core[0].svIdle(17), plen 0: [] +EVENT[2219]: 0.228669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2220]: 0.228682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2221]: 0.228698100 - core[1].svIdle(17), plen 0: [] +EVENT[2222]: 0.228813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2223]: 0.228828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2224]: 0.228843775 - core[0].svIdle(17), plen 0: [] +EVENT[2225]: 0.229669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2226]: 0.229682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2227]: 0.229698075 - core[1].svIdle(17), plen 0: [] +EVENT[2228]: 0.229813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2229]: 0.229828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2230]: 0.229843825 - core[0].svIdle(17), plen 0: [] +EVENT[2231]: 0.230669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2232]: 0.230682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2233]: 0.230698075 - core[1].svIdle(17), plen 0: [] +EVENT[2234]: 0.230813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2235]: 0.230828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2236]: 0.230843775 - core[0].svIdle(17), plen 0: [] +EVENT[2237]: 0.231669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2238]: 0.231682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2239]: 0.231698325 - core[1].svIdle(17), plen 0: [] +EVENT[2240]: 0.231813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2241]: 0.231828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2242]: 0.231843775 - core[0].svIdle(17), plen 0: [] +EVENT[2243]: 0.232669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2244]: 0.232682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2245]: 0.232698100 - core[1].svIdle(17), plen 0: [] +EVENT[2246]: 0.232813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2247]: 0.232828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2248]: 0.232843775 - core[0].svIdle(17), plen 0: [] +EVENT[2249]: 0.233669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2250]: 0.233682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2251]: 0.233698075 - core[1].svIdle(17), plen 0: [] +EVENT[2252]: 0.233813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2253]: 0.233828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2254]: 0.233843825 - core[0].svIdle(17), plen 0: [] +EVENT[2255]: 0.234669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2256]: 0.234682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2257]: 0.234698075 - core[1].svIdle(17), plen 0: [] +EVENT[2258]: 0.234813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2259]: 0.234828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2260]: 0.234843775 - core[0].svIdle(17), plen 0: [] +EVENT[2261]: 0.235669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2262]: 0.235682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2263]: 0.235698325 - core[1].svIdle(17), plen 0: [] +EVENT[2264]: 0.235813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2265]: 0.235828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2266]: 0.235843775 - core[0].svIdle(17), plen 0: [] +EVENT[2267]: 0.236669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2268]: 0.236686525 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2269]: 0.236701650 - core[1].svIdle(17), plen 0: [] +EVENT[2270]: 0.236813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2271]: 0.236828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2272]: 0.236843775 - core[0].svIdle(17), plen 0: [] +EVENT[2273]: 0.237669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2274]: 0.237682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2275]: 0.237698075 - core[1].svIdle(17), plen 0: [] +EVENT[2276]: 0.237813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2277]: 0.237828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2278]: 0.237843825 - core[0].svIdle(17), plen 0: [] +EVENT[2279]: 0.238669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2280]: 0.238682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2281]: 0.238698075 - core[1].svIdle(17), plen 0: [] +EVENT[2282]: 0.238813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2283]: 0.238828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2284]: 0.238843775 - core[0].svIdle(17), plen 0: [] +EVENT[2285]: 0.239669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2286]: 0.239682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2287]: 0.239698325 - core[1].svIdle(17), plen 0: [] +EVENT[2288]: 0.239813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2289]: 0.239828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2290]: 0.239843775 - core[0].svIdle(17), plen 0: [] +EVENT[2291]: 0.240669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2292]: 0.240682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2293]: 0.240698100 - core[1].svIdle(17), plen 0: [] +EVENT[2294]: 0.240813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2295]: 0.240828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2296]: 0.240843775 - core[0].svIdle(17), plen 0: [] +EVENT[2297]: 0.241669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2298]: 0.241682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2299]: 0.241698075 - core[1].svIdle(17), plen 0: [] +EVENT[2300]: 0.241813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2301]: 0.241828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[2302]: 0.241828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[2303]: 0.241840850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2304]: 0.241856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[2305]: 0.241891850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461412, size: 9, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.241891850] HEAP: Allocated 9 bytes @ 0x3ffbb8a4 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2306]: 0.241926275 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461428, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.241926275] HEAP: Allocated 18 bytes @ 0x3ffbb8b4 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2307]: 0.241943300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2308]: 0.241959300 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2309]: 0.242029725 - core[0].svPrint(26), plen 70: [msg: I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4 +, lvl: 0, unused: 0] +[0.242029725] LOG: I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4 +EVENT[2310]: 0.242047550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2311]: 0.242060775 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[2312]: 0.242060775 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[2313]: 0.242077000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2314]: 0.242087875 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2315]: 0.242098625 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2316]: 0.242112475 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2317]: 0.242123350 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[2318]: 0.242134175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2319]: 0.242146150 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2320]: 0.242156400 - core[0].svIdle(17), plen 0: [] +EVENT[2321]: 0.242167800 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2322]: 0.242184175 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2323]: 0.242247725 - core[1].svPrint(26), plen 63: [msg: I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4 +, lvl: 0, unused: 0] +[0.242247725] LOG: I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4 +EVENT[2324]: 0.242268925 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461428, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.242268925] HEAP: Freed bytes @ 0x3ffbb8b4 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2325]: 0.242299925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2326]: 0.242311400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2327]: 0.242328100 - core[1].svIdle(17), plen 0: [] +EVENT[2328]: 0.242669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2329]: 0.242682850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2330]: 0.242698425 - core[1].svIdle(17), plen 0: [] +EVENT[2331]: 0.242813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2332]: 0.242828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[2333]: 0.242828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[2334]: 0.242840850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2335]: 0.242856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[2336]: 0.242891850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461428, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.242891850] HEAP: Allocated 18 bytes @ 0x3ffbb8b4 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2337]: 0.242926425 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461452, size: 36, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.242926425] HEAP: Allocated 36 bytes @ 0x3ffbb8cc from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2338]: 0.242943450 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2339]: 0.242959450 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2340]: 0.243029875 - core[0].svPrint(26), plen 70: [msg: I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc +, lvl: 0, unused: 0] +[0.243029875] LOG: I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc +EVENT[2341]: 0.243043425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2342]: 0.243060250 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[2343]: 0.243060250 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[2344]: 0.243076550 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2345]: 0.243087400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2346]: 0.243098150 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2347]: 0.243111875 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2348]: 0.243122725 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[2349]: 0.243133550 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2350]: 0.243145575 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2351]: 0.243155950 - core[0].svIdle(17), plen 0: [] +EVENT[2352]: 0.243167350 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2353]: 0.243183750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2354]: 0.243247200 - core[1].svPrint(26), plen 63: [msg: I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc +, lvl: 0, unused: 0] +[0.243247200] LOG: I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc +EVENT[2355]: 0.243268350 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461452, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.243268350] HEAP: Freed bytes @ 0x3ffbb8cc from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2356]: 0.243295350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2357]: 0.243306775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2358]: 0.243323350 - core[1].svIdle(17), plen 0: [] +EVENT[2359]: 0.243669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2360]: 0.243682950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2361]: 0.243698525 - core[1].svIdle(17), plen 0: [] +EVENT[2362]: 0.243813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2363]: 0.243828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[2364]: 0.243828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[2365]: 0.243840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2366]: 0.243856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[2367]: 0.243892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461452, size: 27, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.243892175] HEAP: Allocated 27 bytes @ 0x3ffbb8cc from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2368]: 0.243930850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461484, size: 54, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.243930850] HEAP: Allocated 54 bytes @ 0x3ffbb8ec from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2369]: 0.243947750 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2370]: 0.243963875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2371]: 0.244034325 - core[0].svPrint(26), plen 70: [msg: I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec +, lvl: 0, unused: 0] +[0.244034325] LOG: I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec +EVENT[2372]: 0.244047925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2373]: 0.244061150 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[2374]: 0.244061150 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[2375]: 0.244077475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2376]: 0.244088325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2377]: 0.244099075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2378]: 0.244112800 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2379]: 0.244123700 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[2380]: 0.244134525 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2381]: 0.244146375 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2382]: 0.244157675 - core[0].svIdle(17), plen 0: [] +EVENT[2383]: 0.244169300 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2384]: 0.244189750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2385]: 0.244253300 - core[1].svPrint(26), plen 63: [msg: I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec +, lvl: 0, unused: 0] +[0.244253300] LOG: I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec +EVENT[2386]: 0.244274500 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461484, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.244274500] HEAP: Freed bytes @ 0x3ffbb8ec from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2387]: 0.244301400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2388]: 0.244312825 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2389]: 0.244329400 - core[1].svIdle(17), plen 0: [] +EVENT[2390]: 0.244669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2391]: 0.244682950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2392]: 0.244698525 - core[1].svIdle(17), plen 0: [] +EVENT[2393]: 0.244813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2394]: 0.244828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2395]: 0.244843775 - core[0].svIdle(17), plen 0: [] +EVENT[2396]: 0.245669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2397]: 0.245682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2398]: 0.245698325 - core[1].svIdle(17), plen 0: [] +EVENT[2399]: 0.245813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2400]: 0.245828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2401]: 0.245843775 - core[0].svIdle(17), plen 0: [] +EVENT[2402]: 0.246669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2403]: 0.246682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2404]: 0.246698100 - core[1].svIdle(17), plen 0: [] +EVENT[2405]: 0.246813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2406]: 0.246828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2407]: 0.246843775 - core[0].svIdle(17), plen 0: [] +EVENT[2408]: 0.247669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2409]: 0.247682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2410]: 0.247698075 - core[1].svIdle(17), plen 0: [] +EVENT[2411]: 0.247813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2412]: 0.247828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2413]: 0.247843825 - core[0].svIdle(17), plen 0: [] +EVENT[2414]: 0.248669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2415]: 0.248682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2416]: 0.248698075 - core[1].svIdle(17), plen 0: [] +EVENT[2417]: 0.248813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2418]: 0.248828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2419]: 0.248843775 - core[0].svIdle(17), plen 0: [] +EVENT[2420]: 0.249669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2421]: 0.249682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2422]: 0.249698325 - core[1].svIdle(17), plen 0: [] +EVENT[2423]: 0.249813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2424]: 0.249828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2425]: 0.249848325 - core[0].svIdle(17), plen 0: [] +EVENT[2426]: 0.250669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2427]: 0.250682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2428]: 0.250698075 - core[1].svIdle(17), plen 0: [] +EVENT[2429]: 0.250813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2430]: 0.250828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2431]: 0.250843775 - core[0].svIdle(17), plen 0: [] +EVENT[2432]: 0.251669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2433]: 0.251682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2434]: 0.251698325 - core[1].svIdle(17), plen 0: [] +EVENT[2435]: 0.251813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2436]: 0.251828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2437]: 0.251843775 - core[0].svIdle(17), plen 0: [] +EVENT[2438]: 0.252669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2439]: 0.252682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2440]: 0.252698100 - core[1].svIdle(17), plen 0: [] +EVENT[2441]: 0.252813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2442]: 0.252828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2443]: 0.252843775 - core[0].svIdle(17), plen 0: [] +EVENT[2444]: 0.253669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2445]: 0.253682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2446]: 0.253698075 - core[1].svIdle(17), plen 0: [] +EVENT[2447]: 0.253813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2448]: 0.253828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2449]: 0.253843825 - core[0].svIdle(17), plen 0: [] +EVENT[2450]: 0.254669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2451]: 0.254682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2452]: 0.254698075 - core[1].svIdle(17), plen 0: [] +EVENT[2453]: 0.254813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2454]: 0.254828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2455]: 0.254843775 - core[0].svIdle(17), plen 0: [] +EVENT[2456]: 0.255669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2457]: 0.255682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2458]: 0.255698325 - core[1].svIdle(17), plen 0: [] +EVENT[2459]: 0.255813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2460]: 0.255828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2461]: 0.255843775 - core[0].svIdle(17), plen 0: [] +EVENT[2462]: 0.256669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2463]: 0.256682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2464]: 0.256698100 - core[1].svIdle(17), plen 0: [] +EVENT[2465]: 0.256813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2466]: 0.256828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2467]: 0.256843775 - core[0].svIdle(17), plen 0: [] +EVENT[2468]: 0.257669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2469]: 0.257682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2470]: 0.257698075 - core[1].svIdle(17), plen 0: [] +EVENT[2471]: 0.257813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2472]: 0.257828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2473]: 0.257843825 - core[0].svIdle(17), plen 0: [] +EVENT[2474]: 0.258669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2475]: 0.258682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2476]: 0.258698075 - core[1].svIdle(17), plen 0: [] +EVENT[2477]: 0.258813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2478]: 0.258828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2479]: 0.258843775 - core[0].svIdle(17), plen 0: [] +EVENT[2480]: 0.259669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2481]: 0.259682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2482]: 0.259698325 - core[1].svIdle(17), plen 0: [] +EVENT[2483]: 0.259813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2484]: 0.259828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2485]: 0.259843775 - core[0].svIdle(17), plen 0: [] +EVENT[2486]: 0.260669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2487]: 0.260682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2488]: 0.260698100 - core[1].svIdle(17), plen 0: [] +EVENT[2489]: 0.260813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2490]: 0.260828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2491]: 0.260843775 - core[0].svIdle(17), plen 0: [] +EVENT[2492]: 0.261669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2493]: 0.261682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2494]: 0.261698075 - core[1].svIdle(17), plen 0: [] +EVENT[2495]: 0.261813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2496]: 0.261828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2497]: 0.261843825 - core[0].svIdle(17), plen 0: [] +EVENT[2498]: 0.262669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2499]: 0.262682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2500]: 0.262698325 - core[1].svIdle(17), plen 0: [] +EVENT[2501]: 0.262813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2502]: 0.262828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2503]: 0.262843775 - core[0].svIdle(17), plen 0: [] +EVENT[2504]: 0.263669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2505]: 0.263682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2506]: 0.263698100 - core[1].svIdle(17), plen 0: [] +EVENT[2507]: 0.263813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2508]: 0.263828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2509]: 0.263843775 - core[0].svIdle(17), plen 0: [] +EVENT[2510]: 0.264669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2511]: 0.264682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2512]: 0.264698075 - core[1].svIdle(17), plen 0: [] +EVENT[2513]: 0.264813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2514]: 0.264828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2515]: 0.264843825 - core[0].svIdle(17), plen 0: [] +EVENT[2516]: 0.265669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2517]: 0.265682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2518]: 0.265698075 - core[1].svIdle(17), plen 0: [] +EVENT[2519]: 0.265813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2520]: 0.265828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2521]: 0.265843775 - core[0].svIdle(17), plen 0: [] +EVENT[2522]: 0.266669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2523]: 0.266682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2524]: 0.266698325 - core[1].svIdle(17), plen 0: [] +EVENT[2525]: 0.266813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2526]: 0.266828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2527]: 0.266843775 - core[0].svIdle(17), plen 0: [] +EVENT[2528]: 0.267669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2529]: 0.267682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2530]: 0.267698100 - core[1].svIdle(17), plen 0: [] +EVENT[2531]: 0.267813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2532]: 0.267828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2533]: 0.267843775 - core[0].svIdle(17), plen 0: [] +EVENT[2534]: 0.268669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2535]: 0.268682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2536]: 0.268698075 - core[1].svIdle(17), plen 0: [] +EVENT[2537]: 0.268813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2538]: 0.268828600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2539]: 0.268843825 - core[0].svIdle(17), plen 0: [] +EVENT[2540]: 0.269669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2541]: 0.269682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2542]: 0.269698075 - core[1].svIdle(17), plen 0: [] +EVENT[2543]: 0.269813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2544]: 0.269828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2545]: 0.269843775 - core[0].svIdle(17), plen 0: [] +EVENT[2546]: 0.270669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2547]: 0.270682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2548]: 0.270698325 - core[1].svIdle(17), plen 0: [] +EVENT[2549]: 0.270813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2550]: 0.270828700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2551]: 0.270843775 - core[0].svIdle(17), plen 0: [] +EVENT[2552]: 0.271669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2553]: 0.271682975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2554]: 0.271698100 - core[1].svIdle(17), plen 0: [] +EVENT[2555]: 0.271813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2556]: 0.271828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[2557]: 0.271828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[2558]: 0.271840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2559]: 0.271856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[2560]: 0.271875150 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12254080, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] +EVENT[2561]: 0.271886225 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] +EVENT[2562]: 0.271886225 - core[1].svTaskStartReady(6), plen 0: [tid: 12254080] +EVENT[2563]: 0.271899375 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] +EVENT[2564]: 0.271915925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2565]: 0.271927300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2566]: 0.271944250 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[2567]: 0.271962125 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] +EVENT[2568]: 0.271978075 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2569]: 0.271993975 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2570]: 0.272043200 - core[0].svPrint(26), plen 37: [msg: I (580) example: Got notify val 1 +, lvl: 0, unused: 0] +[0.272043200] LOG: I (580) example: Got notify val 1 +EVENT[2571]: 0.272059500 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2572]: 0.272075450 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2573]: 0.272119800 - core[0].svPrint(26), plen 34: [msg: I (580) example: Wait notify 1 +, lvl: 0, unused: 0] +[0.272119800] LOG: I (580) example: Wait notify 1 +EVENT[2574]: 0.272138175 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2575]: 0.272149575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2576]: 0.272165625 - core[0].svIdle(17), plen 0: [] +EVENT[2577]: 0.272669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2578]: 0.272682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2579]: 0.272698075 - core[1].svIdle(17), plen 0: [] +EVENT[2580]: 0.272813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2581]: 0.272828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[2582]: 0.272828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[2583]: 0.272840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2584]: 0.272856775 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[2585]: 0.272871200 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12254080, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] +EVENT[2586]: 0.272882200 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] +EVENT[2587]: 0.272882200 - core[1].svTaskStartReady(6), plen 0: [tid: 12254080] +EVENT[2588]: 0.272895325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] +EVENT[2589]: 0.272911925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2590]: 0.272923300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2591]: 0.272940250 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[2592]: 0.272953950 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] +EVENT[2593]: 0.272969875 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2594]: 0.272985925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2595]: 0.273035525 - core[0].svPrint(26), plen 37: [msg: I (581) example: Got notify val 1 +, lvl: 0, unused: 0] +[0.273035525] LOG: I (581) example: Got notify val 1 +EVENT[2596]: 0.273051825 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2597]: 0.273067775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2598]: 0.273112250 - core[0].svPrint(26), plen 34: [msg: I (581) example: Wait notify 2 +, lvl: 0, unused: 0] +[0.273112250] LOG: I (581) example: Wait notify 2 +EVENT[2599]: 0.273130625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2600]: 0.273142025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2601]: 0.273158075 - core[0].svIdle(17), plen 0: [] +EVENT[2602]: 0.273669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2603]: 0.273682925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2604]: 0.273698075 - core[1].svIdle(17), plen 0: [] +EVENT[2605]: 0.273813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2606]: 0.273828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[2607]: 0.273828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[2608]: 0.273840975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2609]: 0.273856775 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[2610]: 0.273871200 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12254080, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] +EVENT[2611]: 0.273882200 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] +EVENT[2612]: 0.273882200 - core[1].svTaskStartReady(6), plen 0: [tid: 12254080] +EVENT[2613]: 0.273895325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] +EVENT[2614]: 0.273911925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2615]: 0.273923300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2616]: 0.273940250 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[2617]: 0.273953950 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] +EVENT[2618]: 0.273969875 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2619]: 0.273985925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2620]: 0.274031175 - core[0].svPrint(26), plen 37: [msg: I (582) example: Got notify val 1 +, lvl: 0, unused: 0] +[0.274031175] LOG: I (582) example: Got notify val 1 +EVENT[2621]: 0.329656225 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2622]: 0.329664950 - core[0].svTraceStop(11), plen 0: [] +EVENT[2623]: 0.329664950 - core[1].svTraceStop(11), plen 0: [] +Processed 2624 events =============== LOG TRACE REPORT =============== -Processed 0 log messages. +Processed 60 log messages. =============== HEAP TRACE REPORT =============== -Processed 14 heap events. -[0.008957950] HEAP: Allocated 80 bytes @ 0x3ffb8e4c from task "blink_task" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:391 -/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:498 +Processed 99 heap events. +[0.001529550] HEAP: Allocated 8 bytes @ 0x3ffb70d8 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.001864250] HEAP: Allocated 2500 bytes @ 0x3ffb70e8 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.001904100] HEAP: Allocated 340 bytes @ 0x3ffb7aec from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.002037875] HEAP: Allocated 124 bytes @ 0x3ffb7c50 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.002107400] HEAP: Allocated 2500 bytes @ 0x3ffb7cd0 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.002141800] HEAP: Allocated 340 bytes @ 0x3ffb86d4 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.002245650] HEAP: Allocated 1 bytes @ 0x3ffb8838 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.002782075] HEAP: Allocated 8 bytes @ 0x3ffb8858 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.002860725] HEAP: Allocated 2500 bytes @ 0x3ffb8868 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.002902375] HEAP: Allocated 340 bytes @ 0x3ffb926c from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003037100] HEAP: Allocated 124 bytes @ 0x3ffb93d0 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003090750] HEAP: Allocated 2500 bytes @ 0x3ffb9450 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003125150] HEAP: Allocated 340 bytes @ 0x3ffb9e54 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003220600] HEAP: Allocated 2 bytes @ 0x3ffb9fb8 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003544375] HEAP: Allocated 8 bytes @ 0x3ffb8848 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003597875] HEAP: Allocated 2500 bytes @ 0x3ffb9fd8 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003637125] HEAP: Allocated 340 bytes @ 0x3ffba9dc from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003887725] HEAP: Allocated 124 bytes @ 0x3ffbab40 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003941625] HEAP: Allocated 2500 bytes @ 0x3ffbabc0 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003976025] HEAP: Allocated 340 bytes @ 0x3ffbb5c4 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.004075375] HEAP: Allocated 3 bytes @ 0x3ffb9fc8 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.031895800] HEAP: Allocated 2 bytes @ 0x3ffbb728 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.032891700] HEAP: Allocated 4 bytes @ 0x3ffbb738 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.033892175] HEAP: Allocated 6 bytes @ 0x3ffbb748 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.061891850] HEAP: Allocated 3 bytes @ 0x3ffbb758 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.062891850] HEAP: Allocated 6 bytes @ 0x3ffbb768 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.063892175] HEAP: Allocated 9 bytes @ 0x3ffbb778 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.091892175] HEAP: Allocated 4 bytes @ 0x3ffbb788 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.092892175] HEAP: Allocated 8 bytes @ 0x3ffbb798 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.093892000] HEAP: Allocated 12 bytes @ 0x3ffbb7a8 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.121891850] HEAP: Allocated 5 bytes @ 0x3ffbb7b8 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.122891850] HEAP: Allocated 10 bytes @ 0x3ffbb7c8 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.123892175] HEAP: Allocated 15 bytes @ 0x3ffbb7d8 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.151892175] HEAP: Allocated 6 bytes @ 0x3ffbb7ec from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.152892175] HEAP: Allocated 12 bytes @ 0x3ffbb7fc from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.153892175] HEAP: Allocated 18 bytes @ 0x3ffbb80c from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.181891850] HEAP: Allocated 7 bytes @ 0x3ffbb824 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.182891700] HEAP: Allocated 14 bytes @ 0x3ffbb834 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.183892175] HEAP: Allocated 21 bytes @ 0x3ffbb848 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.211892175] HEAP: Allocated 8 bytes @ 0x3ffbb864 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.009089600] HEAP: Allocated 80 bytes @ 0x3ffb5014 from task "blink_task" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:391 -/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:498 +[0.212892175] HEAP: Allocated 16 bytes @ 0x3ffbb874 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.009223275] HEAP: Allocated 96 bytes @ 0x3ffb5068 from task "blink_task" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:68 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 +[0.213892175] HEAP: Allocated 24 bytes @ 0x3ffbb888 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.009507600] HEAP: Allocated 10 bytes @ 0x3ffb8e08 from task "blink_task" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:72 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 +[0.241891850] HEAP: Allocated 9 bytes @ 0x3ffbb8a4 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.014984150] HEAP: Allocated 97 bytes @ 0x3ffb50cc from task "blink_task2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:33 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 +[0.242891850] HEAP: Allocated 18 bytes @ 0x3ffbb8b4 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.019395425] HEAP: Allocated 11 bytes @ 0x3ffb8e18 from task "blink_task2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/get-started/blink/main/blink.c:37 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 +[0.243892175] HEAP: Allocated 27 bytes @ 0x3ffbb8cc from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -Found 374 leaked bytes in 6 blocks. +Found 17706 leaked bytes in 45 blocks. diff --git a/tools/esp_app_trace/test/sysview/expected_output.json b/tools/esp_app_trace/test/sysview/expected_output.json index ea5ab64374ba..4a42e26841c4 100644 --- a/tools/esp_app_trace/test/sysview/expected_output.json +++ b/tools/esp_app_trace/test/sysview/expected_output.json @@ -2,2282 +2,24678 @@ "events": [ { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 10, - "in_irq": true, + "in_irq": false, "params": {}, "ts": 0 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 10, - "in_irq": true, + "in_irq": false, "params": {}, "ts": 0 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 24, - "in_irq": true, + "in_irq": false, "params": { "cpu_freq": 160000000, "id_shift": 0, "ram_base": 1061158912, "sys_freq": 40000000 }, - "ts": 1.095e-05 + "ts": 6.65e-06 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 24, - "in_irq": true, + "in_irq": false, "params": { "cpu_freq": 160000000, "id_shift": 0, "ram_base": 1061158912, "sys_freq": 40000000 }, - "ts": 1.095e-05 + "ts": 6.65e-06 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { - "desc": "N=FreeRTOS Application,D=ESP32,C=Xtensa,O=FreeRTOS" + "desc": "N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS" }, - "ts": 2.48e-05 + "ts": 1.855e-05 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { - "desc": "N=FreeRTOS Application,D=ESP32,C=Xtensa,O=FreeRTOS" + "desc": "N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS" }, - "ts": 2.48e-05 + "ts": 1.855e-05 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#5=SysTick" }, - "ts": 5.165e-05 + "ts": 2.7675e-05 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#5=SysTick" }, - "ts": 5.165e-05 + "ts": 2.7675e-05 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#6=WIFI_MAC" }, - "ts": 0.00010415 + "ts": 4.9775e-05 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#6=WIFI_MAC" }, - "ts": 0.00010415 + "ts": 4.9775e-05 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#7=WIFI_NMI" }, - "ts": 0.0001211 + "ts": 6.3875e-05 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#7=WIFI_NMI" }, - "ts": 0.0001211 + "ts": 6.3875e-05 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#8=WIFI_BB" }, - "ts": 0.000138125 + "ts": 7.3825e-05 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#8=WIFI_BB" }, - "ts": 0.000138125 + "ts": 7.3825e-05 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#9=BT_MAC" }, - "ts": 0.000154825 + "ts": 8.75e-05 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#9=BT_MAC" }, - "ts": 0.000154825 + "ts": 8.75e-05 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#10=BT_BB" }, - "ts": 0.00019335 + "ts": 0.000101575 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#10=BT_BB" }, - "ts": 0.00019335 + "ts": 0.000101575 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#11=BT_BB_NMI" }, - "ts": 0.000212875 + "ts": 0.000112375 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#11=BT_BB_NMI" }, - "ts": 0.000212875 + "ts": 0.000112375 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#12=RWBT" }, - "ts": 0.000231625 + "ts": 0.0001223 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#12=RWBT" }, - "ts": 0.000231625 + "ts": 0.0001223 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#13=RWBLE" }, - "ts": 0.00025025 + "ts": 0.0001323 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#13=RWBLE" }, - "ts": 0.00025025 + "ts": 0.0001323 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#14=RWBT_NMI" }, - "ts": 0.00026945 + "ts": 0.0001468 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#14=RWBT_NMI" }, - "ts": 0.00026945 + "ts": 0.0001468 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#15=RWBLE_NMI" }, - "ts": 0.000288925 + "ts": 0.0001576 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#15=RWBLE_NMI" }, - "ts": 0.000288925 + "ts": 0.0001576 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#16=SLC0" }, - "ts": 0.000310575 + "ts": 0.0001719 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#16=SLC0" }, - "ts": 0.000310575 + "ts": 0.0001719 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#17=SLC1" }, - "ts": 0.00032915 + "ts": 0.00018955 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#17=SLC1" }, - "ts": 0.00032915 + "ts": 0.00018955 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#18=UHCI0" }, - "ts": 0.000347675 + "ts": 0.000199525 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#18=UHCI0" }, - "ts": 0.000347675 + "ts": 0.000199525 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#19=UHCI1" }, - "ts": 0.000366225 + "ts": 0.0002095 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#19=UHCI1" }, - "ts": 0.000366225 + "ts": 0.0002095 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#20=TG0_T0_LEVEL" }, - "ts": 0.00038635 + "ts": 0.00022475 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#20=TG0_T0_LEVEL" }, - "ts": 0.00038635 + "ts": 0.00022475 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#21=TG0_T1_LEVEL" }, - "ts": 0.000406575 + "ts": 0.00023615 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#21=TG0_T1_LEVEL" }, - "ts": 0.000406575 + "ts": 0.00023615 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#22=TG0_WDT_LEVEL" }, - "ts": 0.0004273 + "ts": 0.00025185 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#22=TG0_WDT_LEVEL" }, - "ts": 0.0004273 + "ts": 0.00025185 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#23=TG0_LACT_LEVEL" }, - "ts": 0.000448 + "ts": 0.000263625 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#23=TG0_LACT_LEVEL" }, - "ts": 0.000448 + "ts": 0.000263625 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#24=TG1_T0_LEVEL" }, - "ts": 0.00046825 + "ts": 0.00027905 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#24=TG1_T0_LEVEL" }, - "ts": 0.00046825 + "ts": 0.00027905 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#25=TG1_T1_LEVEL" }, - "ts": 0.0004885 + "ts": 0.00029445 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#25=TG1_T1_LEVEL" }, - "ts": 0.0004885 + "ts": 0.00029445 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#26=TG1_WDT_LEVEL" }, - "ts": 0.000508975 + "ts": 0.00031 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#26=TG1_WDT_LEVEL" }, - "ts": 0.000508975 + "ts": 0.00031 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#27=TG1_LACT_LEVEL" }, - "ts": 0.00052985 + "ts": 0.000321975 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#27=TG1_LACT_LEVEL" }, - "ts": 0.00052985 + "ts": 0.000321975 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#28=GPIO" }, - "ts": 0.000548375 + "ts": 0.000331875 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#28=GPIO" }, - "ts": 0.000548375 + "ts": 0.000331875 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#29=GPIO_NMI" }, - "ts": 0.000570825 + "ts": 0.000350775 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#29=GPIO_NMI" }, - "ts": 0.000570825 + "ts": 0.000350775 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#30=FROM_CPU0" }, - "ts": 0.000590425 + "ts": 0.000361675 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#30=FROM_CPU0" }, - "ts": 0.000590425 + "ts": 0.000361675 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#31=FROM_CPU1" }, - "ts": 0.00061 + "ts": 0.000376375 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#31=FROM_CPU1" }, - "ts": 0.00061 + "ts": 0.000376375 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#32=FROM_CPU2" }, - "ts": 0.000629625 + "ts": 0.0003872 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#32=FROM_CPU2" }, - "ts": 0.000629625 + "ts": 0.0003872 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#33=FROM_CPU3" }, - "ts": 0.000649425 + "ts": 0.0004019 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#33=FROM_CPU3" }, - "ts": 0.000649425 + "ts": 0.0004019 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#34=SPI0" }, - "ts": 0.000667975 + "ts": 0.00041565 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#34=SPI0" }, - "ts": 0.000667975 + "ts": 0.00041565 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#35=SPI1" }, - "ts": 0.0006865 + "ts": 0.0004254 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#35=SPI1" }, - "ts": 0.0006865 + "ts": 0.0004254 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#36=SPI2" }, - "ts": 0.000704825 + "ts": 0.000435175 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#36=SPI2" }, - "ts": 0.000704825 + "ts": 0.000435175 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#37=SPI3" }, - "ts": 0.0007231 + "ts": 0.0004449 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#37=SPI3" }, - "ts": 0.0007231 + "ts": 0.0004449 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#38=I2S0" }, - "ts": 0.00074155 + "ts": 0.00045885 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#38=I2S0" }, - "ts": 0.00074155 + "ts": 0.00045885 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#39=I2S1" }, - "ts": 0.00076 + "ts": 0.0004686 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#39=I2S1" }, - "ts": 0.00076 + "ts": 0.0004686 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#40=UART0" }, - "ts": 0.000778475 + "ts": 0.000478575 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#40=UART0" }, - "ts": 0.000778475 + "ts": 0.000478575 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#41=UART1" }, - "ts": 0.00079705 + "ts": 0.0004925 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#41=UART1" }, - "ts": 0.00079705 + "ts": 0.0004925 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#42=UART2" }, - "ts": 0.000815625 + "ts": 0.000506375 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#42=UART2" }, - "ts": 0.000815625 + "ts": 0.000506375 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#43=SDIO_HOST" }, - "ts": 0.000835 + "ts": 0.00051715 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#43=SDIO_HOST" }, - "ts": 0.000835 + "ts": 0.00051715 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#44=ETH_MAC" }, - "ts": 0.000854075 + "ts": 0.000527475 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#44=ETH_MAC" }, - "ts": 0.000854075 + "ts": 0.000527475 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#45=PWM0" }, - "ts": 0.0008756 + "ts": 0.000541625 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#45=PWM0" }, - "ts": 0.0008756 + "ts": 0.000541625 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#46=PWM1" }, - "ts": 0.00089385 + "ts": 0.0005553 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#46=PWM1" }, - "ts": 0.00089385 + "ts": 0.0005553 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { - "desc": "I#47=PWM2" + "desc": "I#47=RESERVED" }, - "ts": 0.000912375 + "ts": 0.000565975 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { - "desc": "I#47=PWM2" + "desc": "I#47=RESERVED" }, - "ts": 0.000912375 + "ts": 0.000565975 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { - "desc": "I#48=PWM3" + "desc": "I#48=RESERVED" }, - "ts": 0.00093095 + "ts": 0.00057655 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { - "desc": "I#48=PWM3" + "desc": "I#48=RESERVED" }, - "ts": 0.00093095 + "ts": 0.00057655 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#49=LEDC" }, - "ts": 0.000949375 + "ts": 0.000590325 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#49=LEDC" }, - "ts": 0.000949375 + "ts": 0.000590325 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#50=EFUSE" }, - "ts": 0.000968075 + "ts": 0.000604225 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#50=EFUSE" }, - "ts": 0.000968075 + "ts": 0.000604225 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { - "desc": "I#51=CAN" + "desc": "I#51=TWAI" }, - "ts": 0.000986275 + "ts": 0.000618075 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { - "desc": "I#51=CAN" + "desc": "I#51=TWAI" }, - "ts": 0.000986275 + "ts": 0.000618075 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#52=RTC_CORE" }, - "ts": 0.001005625 + "ts": 0.00062865 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#52=RTC_CORE" }, - "ts": 0.001005625 + "ts": 0.00062865 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#53=RMT" }, - "ts": 0.0010237 + "ts": 0.00063825 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#53=RMT" }, - "ts": 0.0010237 + "ts": 0.00063825 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#54=PCNT" }, - "ts": 0.00104205 + "ts": 0.000648075 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#54=PCNT" }, - "ts": 0.00104205 + "ts": 0.000648075 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#55=I2C_EXT0" }, - "ts": 0.0010615 + "ts": 0.0006627 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#55=I2C_EXT0" }, - "ts": 0.0010615 + "ts": 0.0006627 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#56=I2C_EXT1" }, - "ts": 0.0010811 + "ts": 0.000674475 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#56=I2C_EXT1" }, - "ts": 0.0010811 + "ts": 0.000674475 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#57=RSA" }, - "ts": 0.001099425 + "ts": 0.000689475 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#57=RSA" }, - "ts": 0.001099425 + "ts": 0.000689475 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#58=SPI1_DMA" }, - "ts": 0.001118625 + "ts": 0.000705425 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#58=SPI1_DMA" }, - "ts": 0.001118625 + "ts": 0.000705425 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#59=SPI2_DMA" }, - "ts": 0.001137775 + "ts": 0.00071735 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#59=SPI2_DMA" }, - "ts": 0.001137775 + "ts": 0.00071735 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#60=SPI3_DMA" }, - "ts": 0.00115695 + "ts": 0.000729475 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#60=SPI3_DMA" }, - "ts": 0.00115695 + "ts": 0.000729475 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#61=WDT" }, - "ts": 0.001175175 + "ts": 0.0007403 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#61=WDT" }, - "ts": 0.001175175 + "ts": 0.0007403 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#62=TIMER1" }, - "ts": 0.0011973 + "ts": 0.00076065 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#62=TIMER1" }, - "ts": 0.0011973 + "ts": 0.00076065 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#63=TIMER2" }, - "ts": 0.00121625 + "ts": 0.0007722 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#63=TIMER2" }, - "ts": 0.00121625 + "ts": 0.0007722 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#64=TG0_T0_EDGE" }, - "ts": 0.001236175 + "ts": 0.00078515 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#64=TG0_T0_EDGE" }, - "ts": 0.001236175 + "ts": 0.00078515 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#65=TG0_T1_EDGE" }, - "ts": 0.001256275 + "ts": 0.00080585 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#65=TG0_T1_EDGE" }, - "ts": 0.001256275 + "ts": 0.00080585 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#66=TG0_WDT_EDGE" }, - "ts": 0.001276675 + "ts": 0.00081875 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#66=TG0_WDT_EDGE" }, - "ts": 0.001276675 + "ts": 0.00081875 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#67=TG0_LACT_EDGE" }, - "ts": 0.001297375 + "ts": 0.00083605 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#67=TG0_LACT_EDGE" }, - "ts": 0.001297375 + "ts": 0.00083605 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#68=TG1_T0_EDGE" }, - "ts": 0.001317425 + "ts": 0.00084885 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#68=TG1_T0_EDGE" }, - "ts": 0.001317425 + "ts": 0.00084885 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#69=TG1_T1_EDGE" }, - "ts": 0.00133765 + "ts": 0.000861475 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#69=TG1_T1_EDGE" }, - "ts": 0.00133765 + "ts": 0.000861475 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#70=TG1_WDT_EDGE" }, - "ts": 0.00135795 + "ts": 0.000878425 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#70=TG1_WDT_EDGE" }, - "ts": 0.00135795 + "ts": 0.000878425 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#71=TG1_LACT_EDGE" }, - "ts": 0.001378625 + "ts": 0.000891925 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#71=TG1_LACT_EDGE" }, - "ts": 0.001378625 + "ts": 0.000891925 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#72=MMU_IA" }, - "ts": 0.0013975 + "ts": 0.000907825 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#72=MMU_IA" }, - "ts": 0.0013975 + "ts": 0.000907825 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#73=MPU_IA" }, - "ts": 0.001416425 + "ts": 0.0009233 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#73=MPU_IA" }, - "ts": 0.001416425 + "ts": 0.0009233 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#74=CACHE_IA" }, - "ts": 0.00143555 + "ts": 0.00093545 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 14, - "in_irq": true, + "in_irq": false, "params": { "desc": "I#74=CACHE_IA" }, - "ts": 0.00143555 + "ts": 0.00093545 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 13, - "in_irq": true, + "in_irq": false, "params": { "time": 10000 }, - "ts": 0.00144195 + "ts": 0.000944 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 13, - "in_irq": true, + "in_irq": false, "params": { "time": 10000 }, - "ts": 0.00144195 + "ts": 0.000944 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 9, - "in_irq": true, + "in_irq": false, "params": { - "name": "esp_timer", - "prio": 22, - "tid": 12253880 + "name": "ipc0", + "prio": 24, + "tid": 12253204 }, - "ts": 0.0016474 + "ts": 0.001056 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 9, - "in_irq": true, + "in_irq": false, "params": { - "name": "esp_timer", - "prio": 22, - "tid": 12253880 + "name": "ipc0", + "prio": 24, + "tid": 12253204 }, - "ts": 0.0016474 + "ts": 0.001056 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 21, - "in_irq": true, + "in_irq": false, "params": { - "base": 1073408692, - "sz": 3436, - "tid": 12253880, + "base": 1073410064, + "sz": 1344, + "tid": 12253204, "unused": 0 }, - "ts": 0.001652 + "ts": 0.001061525 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 21, - "in_irq": true, + "in_irq": false, "params": { - "base": 1073408692, - "sz": 3436, - "tid": 12253880, + "base": 1073410064, + "sz": 1344, + "tid": 12253204, "unused": 0 }, - "ts": 0.001652 + "ts": 0.001061525 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 9, - "in_irq": true, + "in_irq": false, "params": { - "name": "ipc0", + "name": "ipc1", "prio": 24, - "tid": 12254636 + "tid": 12253560 }, - "ts": 0.00173855 + "ts": 0.00117065 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 9, - "in_irq": true, + "in_irq": false, "params": { - "name": "ipc0", + "name": "ipc1", "prio": 24, - "tid": 12254636 + "tid": 12253560 }, - "ts": 0.00173855 + "ts": 0.00117065 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 21, - "in_irq": true, + "in_irq": false, "params": { - "base": 1073430180, - "sz": 1388, - "tid": 12254636, + "base": 1073431024, + "sz": 1344, + "tid": 12253560, "unused": 0 }, - "ts": 0.00174275 + "ts": 0.0011759 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 21, - "in_irq": true, + "in_irq": false, "params": { - "base": 1073430180, - "sz": 1388, - "tid": 12254636, + "base": 1073431024, + "sz": 1344, + "tid": 12253560, "unused": 0 }, - "ts": 0.00174275 + "ts": 0.0011759 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 9, - "in_irq": true, + "in_irq": false, "params": { - "name": "ipc1", - "prio": 24, - "tid": 12275372 + "name": "main", + "prio": 1, + "tid": 12254080 }, - "ts": 0.001828975 + "ts": 0.001327475 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 9, - "in_irq": true, + "in_irq": false, "params": { - "name": "ipc1", - "prio": 24, - "tid": 12275372 + "name": "main", + "prio": 1, + "tid": 12254080 }, - "ts": 0.001828975 + "ts": 0.001327475 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 21, - "in_irq": true, + "in_irq": false, "params": { - "base": 1073432232, - "sz": 1384, - "tid": 12275372, + "base": 1073433076, + "sz": 1916, + "tid": 12254080, "unused": 0 }, - "ts": 0.001833225 + "ts": 0.0013329 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 21, - "in_irq": true, + "in_irq": false, "params": { - "base": 1073432232, - "sz": 1384, - "tid": 12275372, + "base": 1073433076, + "sz": 1916, + "tid": 12254080, "unused": 0 }, - "ts": 0.001833225 + "ts": 0.0013329 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, + "ctx_name": "IDLE1", + "id": 27, + "in_irq": false, "params": { - "name": "blink_task", - "prio": 5, - "tid": 12291908 + "mod_cnt": 0 }, - "ts": 0.001871225 + "ts": 0.00134065 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, + "ctx_name": "IDLE1", + "id": 27, + "in_irq": false, "params": { - "name": "blink_task", - "prio": 5, - "tid": 12291908 + "mod_cnt": 0 }, - "ts": 0.001871225 - }, - { - "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, - "params": { - "base": 1073448452, - "sz": 524, - "tid": 12291908, - "unused": 0 - }, - "ts": 0.00187565 + "ts": 0.00134065 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 21, + "ctx_name": "SysTick", + "id": 2, "in_irq": true, "params": { - "base": 1073448452, - "sz": 524, - "tid": 12291908, - "unused": 0 + "irq_num": 5 }, - "ts": 0.00187565 + "ts": 0.001348325 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 9, + "ctx_name": "SysTick", + "id": 2, "in_irq": true, "params": { - "name": "main", - "prio": 1, - "tid": 12282660 + "irq_num": 5 }, - "ts": 0.0020708 + "ts": 0.0013597 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, - "params": { - "name": "main", - "prio": 1, - "tid": 12282660 - }, - "ts": 0.0020708 + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.001370975 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 21, + "ctx_name": "SysTick", + "id": 6, "in_irq": true, "params": { - "base": 1073437472, - "sz": 3296, - "tid": 12282660, - "unused": 0 + "tid": 12254080 }, - "ts": 0.0020752 + "ts": 0.001381825 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, + "ctx_name": "IDLE1", + "id": 6, + "in_irq": false, "params": { - "base": 1073437472, - "sz": 3296, - "tid": 12282660, - "unused": 0 + "tid": 12254080 }, - "ts": 0.0020752 + "ts": 0.001381825 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, - "params": { - "name": "IDLE0", - "prio": 0, - "tid": 12284560 - }, - "ts": 0.002153375 + "ctx_name": "IDLE0", + "id": 3, + "in_irq": false, + "params": {}, + "ts": 0.0013969 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, - "params": { - "name": "IDLE0", - "prio": 0, - "tid": 12284560 - }, - "ts": 0.002153375 + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0014077 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 21, + "ctx_name": "FROM_CPU0", + "id": 2, "in_irq": true, "params": { - "base": 1073441932, - "sz": 1236, - "tid": 12284560, - "unused": 0 + "irq_num": 30 }, - "ts": 0.00215785 + "ts": 0.001419225 }, { - "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.001430725 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, "params": { - "base": 1073441932, - "sz": 1236, - "tid": 12284560, - "unused": 0 + "tid": 12254080 }, - "ts": 0.00215785 + "ts": 0.001447075 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, + "ctx_name": "main", + "id": 22, + "in_irq": false, "params": { - "name": "IDLE1", - "prio": 0, - "tid": 12286460 + "desc": "M=ESP32 SystemView Heap Tracing Module", + "evt_off": 512, + "mod_id": 0 }, - "ts": 0.00222895 + "ts": 0.00147395 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, + "ctx_name": "IDLE1", + "id": 22, + "in_irq": false, "params": { - "name": "IDLE1", - "prio": 0, - "tid": 12286460 + "desc": "M=ESP32 SystemView Heap Tracing Module", + "evt_off": 512, + "mod_id": 0 }, - "ts": 0.00222895 + "ts": 0.00147395 }, { + "addr": "0x3ffb70d8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6bef", + "0x400e693b", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0" + ], "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, - "params": { - "base": 1073443832, - "sz": 1112, - "tid": 12286460, - "unused": 0 - }, - "ts": 0.00223325 + "ctx_name": "main", + "id": 512, + "in_irq": false, + "size": 8, + "ts": 0.00152955 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 21, + "ctx_name": "SysTick", + "id": 2, "in_irq": true, "params": { - "base": 1073443832, - "sz": 1112, - "tid": 12286460, - "unused": 0 + "irq_num": 5 }, - "ts": 0.00223325 + "ts": 0.0016694 }, { - "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, - "params": { - "name": "Tmr Svc", - "prio": 1, - "tid": 12289116 - }, - "ts": 0.002319675 + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.00168285 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, - "params": { - "name": "Tmr Svc", - "prio": 1, - "tid": 12289116 - }, - "ts": 0.002319675 + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0016995 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 21, + "ctx_name": "SysTick", + "id": 2, "in_irq": true, "params": { - "base": 1073445976, - "sz": 1384, - "tid": 12289116, - "unused": 0 + "irq_num": 5 }, - "ts": 0.0023241 + "ts": 0.00181295 }, { - "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, + "core_id": 0, + "ctx_name": "main", + "id": 3, + "in_irq": false, + "params": {}, + "ts": 0.00182845 + }, + { + "addr": "0x3ffb70e8", + "callers": [ + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6c38", + "0x400e693b", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "main", + "id": 512, + "in_irq": false, + "size": 2500, + "ts": 0.00186425 + }, + { + "addr": "0x3ffb7aec", + "callers": [ + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6c38", + "0x400e693b", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "main", + "id": 512, + "in_irq": false, + "size": 340, + "ts": 0.0019041 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 8, + "in_irq": false, "params": { - "base": 1073445976, - "sz": 1384, - "tid": 12289116, - "unused": 0 + "tid": 12286700 }, - "ts": 0.0023241 + "ts": 0.001926775 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "main", "id": 9, - "in_irq": true, + "in_irq": false, "params": { - "name": "blink_task2", + "name": "alloc0", "prio": 5, - "tid": 12294320 + "tid": 12286700 }, - "ts": 0.0024312 + "ts": 0.0019394 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 9, - "in_irq": true, + "in_irq": false, "params": { - "name": "blink_task2", + "name": "alloc0", "prio": 5, - "tid": 12294320 + "tid": 12286700 }, - "ts": 0.0024312 + "ts": 0.0019394 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "main", "id": 21, - "in_irq": true, + "in_irq": false, "params": { - "base": 1073451180, - "sz": 1748, - "tid": 12294320, + "base": 1073443048, + "sz": 4294965096, + "tid": 12286700, "unused": 0 }, - "ts": 0.00243875 + "ts": 0.0019485 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 21, - "in_irq": true, + "in_irq": false, "params": { - "base": 1073451180, - "sz": 1748, - "tid": 12294320, + "base": 1073443048, + "sz": 4294965096, + "tid": 12286700, "unused": 0 }, - "ts": 0.00243875 + "ts": 0.0019485 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 27, - "in_irq": true, + "ctx_name": "main", + "id": 6, + "in_irq": false, "params": { - "mod_cnt": 0 + "tid": 12286700 }, - "ts": 0.00244615 + "ts": 0.0019592 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 27, + "ctx_name": "IDLE1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.0019592 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, "in_irq": true, "params": { - "mod_cnt": 0 + "irq_num": 30 }, - "ts": 0.00244615 + "ts": 0.001974775 }, { - "core_id": 1, - "ctx_name": "IDLE1", + "core_id": 0, + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 0.002484225 + "ts": 0.00198615 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, + "ctx_name": "alloc0", + "id": 4, "in_irq": false, "params": { - "cause": 4, - "tid": 12291908 + "tid": 12286700 }, - "ts": 0.002496125 + "ts": 0.0020025 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, + "addr": "0x3ffb7c50", + "callers": [ + "0x40081fef", + "0x40089414", + "0x40088679", + "0x400d6aa4", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 124, + "ts": 0.002037875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 47, "in_irq": false, "params": { - "tid": 12294320 + "ucQueueType": 0, + "uxItemSize": 4, + "uxQueueLength": 10 }, - "ts": 0.002508025 + "ts": 0.002052175 }, { + "addr": "0x3ffb7cd0", + "callers": [ + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6ae0", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 2500, + "ts": 0.0021074 + }, + { + "addr": "0x3ffb86d4", + "callers": [ + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6ae0", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 340, + "ts": 0.0021418 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 8, + "in_irq": false, "params": { - "irq_num": 30 + "tid": 12289748 + }, + "ts": 0.0021685 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 9, + "in_irq": false, + "params": { + "name": "free0", + "prio": 5, + "tid": 12289748 }, - "ts": 0.00251635 + "ts": 0.002181 }, { "core_id": 1, "ctx_name": "IDLE1", - "id": 7, + "id": 9, "in_irq": false, "params": { - "cause": 27, - "tid": 12294320 + "name": "free0", + "prio": 5, + "tid": 12289748 }, - "ts": 0.002524325 + "ts": 0.002181 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc0", + "id": 21, "in_irq": false, - "params": {}, - "ts": 0.00253235 + "params": { + "base": 1073446096, + "sz": 4294965088, + "tid": 12289748, + "unused": 0 + }, + "ts": 0.00219015 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, + "ctx_name": "IDLE1", + "id": 21, + "in_irq": false, "params": { - "irq_num": 31 + "base": 1073446096, + "sz": 4294965088, + "tid": 12289748, + "unused": 0 }, - "ts": 0.0025412 + "ts": 0.00219015 }, { "core_id": 0, - "ctx_name": "main", - "id": 4, + "ctx_name": "alloc0", + "id": 6, "in_irq": false, "params": { - "tid": 12282660 + "tid": 12289748 }, - "ts": 0.002548475 + "ts": 0.002200975 }, { "core_id": 1, "ctx_name": "IDLE1", - "id": 18, + "id": 6, "in_irq": false, - "params": {}, - "ts": 0.002556375 + "params": { + "tid": 12289748 + }, + "ts": 0.002200975 }, { - "core_id": 0, + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.00221635 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.00222925 + }, + { + "addr": "0x3ffb8838", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 1, + "ts": 0.00224565 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.00225695 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.002286975 + }, + { + "addr": "0x3ffb8848", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 2, + "ts": 0.0022979 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.002308975 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.002321625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.002332075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.00236625 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848\n", + "ts": 0.002605525 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848\n", + "ts": 0.002605525 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "ts": 0.0026271 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.002640225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.002640225 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.002656425 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.0026673 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.002678075 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.00269225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.002703 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.002713925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.002725475 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.00273595 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.00275345 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 + }, + "ts": 0.00277025 + }, + { + "addr": "0x3ffb8858", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6bef", + "0x400e693b", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "main", + "id": 512, + "in_irq": false, + "size": 8, + "ts": 0.002782075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.00281335 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.002824975 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 3, + "in_irq": false, + "params": {}, + "ts": 0.00283595 + }, + { + "addr": "0x3ffb8868", + "callers": [ + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6c38", + "0x400e693b", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "main", + "id": 512, + "in_irq": false, + "size": 2500, + "ts": 0.002860725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.002875775 + }, + { + "addr": "0x3ffb926c", + "callers": [ + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6c38", + "0x400e693b", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "main", + "id": 512, + "in_irq": false, + "size": 340, + "ts": 0.002902375 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 8, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.002925 + }, + { + "core_id": 0, "ctx_name": "main", - "id": 33, + "id": 9, "in_irq": false, "params": { - "xTaskToDelete": 12282660 + "name": "alloc1", + "prio": 5, + "tid": 12292716 + }, + "ts": 0.00293765 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 9, + "in_irq": false, + "params": { + "name": "alloc1", + "prio": 5, + "tid": 12292716 + }, + "ts": 0.00293765 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 21, + "in_irq": false, + "params": { + "base": 1073449064, + "sz": 4294965096, + "tid": 12292716, + "unused": 0 + }, + "ts": 0.0029468 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 21, + "in_irq": false, + "params": { + "base": 1073449064, + "sz": 4294965096, + "tid": 12292716, + "unused": 0 + }, + "ts": 0.0029468 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 6, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.002957675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.002957675 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.0029733 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0029848 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.00300165 + }, + { + "addr": "0x3ffb93d0", + "callers": [ + "0x40081fef", + "0x40089414", + "0x40088679", + "0x400d6aa4", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 124, + "ts": 0.0030371 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 47, + "in_irq": false, + "params": { + "ucQueueType": 0, + "uxItemSize": 4, + "uxQueueLength": 10 + }, + "ts": 0.003051375 + }, + { + "addr": "0x3ffb9450", + "callers": [ + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6ae0", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 2500, + "ts": 0.00309075 + }, + { + "addr": "0x3ffb9e54", + "callers": [ + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6ae0", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 340, + "ts": 0.00312515 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 8, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.0031519 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 9, + "in_irq": false, + "params": { + "name": "free1", + "prio": 5, + "tid": 12295764 + }, + "ts": 0.0031644 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 9, + "in_irq": false, + "params": { + "name": "free1", + "prio": 5, + "tid": 12295764 + }, + "ts": 0.0031644 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073452112, + "sz": 4294965088, + "tid": 12295764, + "unused": 0 + }, + "ts": 0.00317355 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 21, + "in_irq": false, + "params": { + "base": 1073452112, + "sz": 4294965088, + "tid": 12295764, + "unused": 0 + }, + "ts": 0.00317355 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.003184375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.003184375 + }, + { + "addr": "0x3ffb9fb8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 2, + "ts": 0.0032206 + }, + { + "addr": "0x3ffb9fc8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 4, + "ts": 0.00325505 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.00327195 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.003294125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848\n", + "ts": 0.00333685 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848\n", + "ts": 0.00333685 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.003357 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.00336845 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.003385425 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8\n", + "ts": 0.00340425 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8\n", + "ts": 0.00340425 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.00341835 + }, + { + "addr": "0x3ffb8848", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.0034315 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.003443325 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.003462 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.00347595 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.003490025 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.003501925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0035128 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.00353205 + }, + { + "addr": "0x3ffb8848", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6bef", + "0x400e693b", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "main", + "id": 512, + "in_irq": false, + "size": 8, + "ts": 0.003544375 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, + "xTicksToWait": 4294967295 + }, + "ts": 0.003561425 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.0035801 + }, + { + "addr": "0x3ffb9fd8", + "callers": [ + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6c38", + "0x400e693b", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "main", + "id": 512, + "in_irq": false, + "size": 2500, + "ts": 0.003597875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.0036106 + }, + { + "addr": "0x3ffba9dc", + "callers": [ + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6c38", + "0x400e693b", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "main", + "id": 512, + "in_irq": false, + "size": 340, + "ts": 0.003637125 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8\n", + "ts": 0.003660625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8\n", + "ts": 0.003660625 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 8, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.003672 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0036882 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 9, + "in_irq": false, + "params": { + "name": "alloc2", + "prio": 5, + "tid": 12298716 + }, + "ts": 0.003700975 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 9, + "in_irq": true, + "params": { + "name": "alloc2", + "prio": 5, + "tid": 12298716 + }, + "ts": 0.003700975 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 21, + "in_irq": false, + "params": { + "base": 1073455064, + "sz": 4294965096, + "tid": 12298716, + "unused": 0 + }, + "ts": 0.00371195 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 21, + "in_irq": true, + "params": { + "base": 1073455064, + "sz": 4294965096, + "tid": 12298716, + "unused": 0 + }, + "ts": 0.00371195 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 6, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.00372485 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.00372485 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0037423 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.00375315 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.0037654 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0037764 + }, + { + "addr": "0x3ffb9fc8", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.00379175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.003803375 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.003819875 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.003831475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 3, + "in_irq": false, + "params": {}, + "ts": 0.003843175 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.003853725 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.00387545 + }, + { + "addr": "0x3ffbab40", + "callers": [ + "0x40081fef", + "0x40089414", + "0x40088679", + "0x400d6aa4", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 124, + "ts": 0.003887725 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 47, + "in_irq": false, + "params": { + "ucQueueType": 0, + "uxItemSize": 4, + "uxQueueLength": 10 + }, + "ts": 0.003902275 + }, + { + "addr": "0x3ffbabc0", + "callers": [ + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6ae0", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 2500, + "ts": 0.003941625 + }, + { + "addr": "0x3ffbb5c4", + "callers": [ + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6ae0", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 340, + "ts": 0.003976025 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 8, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.004002 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 9, + "in_irq": false, + "params": { + "name": "free2", + "prio": 5, + "tid": 12301764 + }, + "ts": 0.004014625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 9, + "in_irq": false, + "params": { + "name": "free2", + "prio": 5, + "tid": 12301764 + }, + "ts": 0.004014625 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 21, + "in_irq": false, + "params": { + "base": 1073458112, + "sz": 4294965088, + "tid": 12301764, + "unused": 0 + }, + "ts": 0.0040238 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073458112, + "sz": 4294965088, + "tid": 12301764, + "unused": 0 + }, + "ts": 0.0040238 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.0040346 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.0040346 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.00405085 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0040637 + }, + { + "addr": "0x3ffb9fc8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 3, + "ts": 0.004075375 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.004086825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.0041132 + }, + { + "addr": "0x3ffbb728", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 6, + "ts": 0.00412495 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.004136375 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.00414835 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.004158625 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.004177025 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728\n", + "ts": 0.004229325 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728\n", + "ts": 0.004229325 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.004246325 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.004259475 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.004259475 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.00427575 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.0042866 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.004297375 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.00431125 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.00432205 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0043329 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 + }, + "ts": 0.0043448 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.004355375 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.00436755 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.0043946 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.00440545 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 6, + "in_irq": true, + "params": { + "tid": 12254080 + }, + "ts": 0.004417125 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.004417125 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.004428475 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.0044466 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.00446105 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728\n", + "ts": 0.004485 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728\n", + "ts": 0.004485 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.004501225 + }, + { + "addr": "0x3ffbb728", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.00451485 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (312) example: Wait notify 0\n", + "ts": 0.004542 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (312) example: Wait notify 0\n", + "ts": 0.004542 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.004553025 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0045667 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.004580775 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.00459145 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.004602475 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0046186 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0046694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.004682875 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.00469815 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0048132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0048287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.004843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0056694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.005682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0056981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0058132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0058287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.005843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0066694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.006682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.006698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0068132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0068286 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.006843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0076694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.007682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.007698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0078132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0078287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.007843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0086694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.008687175 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.008702325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0088132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0088287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.008843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0096694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.009682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.009698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0098132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0098286 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.009843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0106694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.010682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.010698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0108132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0108287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.010843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0116694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.011682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.011698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0118132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0118287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.011843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0126694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.012682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0126981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0128132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0128287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.012843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0136694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.013682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.013698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0138132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.01382885 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.01384405 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0146694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.014682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.014698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0148132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0148287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.014843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0156694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.015682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.015698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0158132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0158287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.015843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0166694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.016682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0166981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0168132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0168287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.016843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0176694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.017682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.017698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0178132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0178286 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.017843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0186694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.018682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.018698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0188132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0188287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.018843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0196694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.019682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.019698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0198132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0198287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.019843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0206694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0206872 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.020702325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0208132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0208287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.020843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0216694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.021682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.021698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0218132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0218286 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.021843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0226694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.022682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.022698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0228132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0228287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.022843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0236694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.023682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.023698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0238132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0238287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.023843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0246694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.024682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0246981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0248132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0248287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.024843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0256694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.025682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.025698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0258132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0258286 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.025843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0266694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.026682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.026698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0268132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0268287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.026843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0276694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.027682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.027698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0278132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0278287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.027843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0286694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.028682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0286981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0288132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0288287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.028843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0296694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.029682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.029698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0298132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0298286 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.029843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0306694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.030682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.030698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0308132 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0308287 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.030843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0316694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.031682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.031698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0318132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12286700 + }, + "ts": 0.031828325 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.031828325 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0318409 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.0318604 + }, + { + "addr": "0x3ffbb728", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 2, + "ts": 0.0318958 + }, + { + "addr": "0x3ffbb738", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 4, + "ts": 0.03193035 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.031947275 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.031963225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738\n", + "ts": 0.0320275 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738\n", + "ts": 0.0320275 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "ts": 0.0320412 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.03205445 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.03205445 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.032070625 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.032081475 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.032092275 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.032106075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.032116925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.032127825 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 + }, + "ts": 0.032139925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0321505 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.032166625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.032182825 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738\n", + "ts": 0.032246375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738\n", + "ts": 0.032246375 + }, + { + "addr": "0x3ffbb738", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.032267375 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.03229425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.032305725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.032322425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0326694 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.03268285 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.032698425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0328132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.032828225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.032828225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.03284085 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.032856525 + }, + { + "addr": "0x3ffbb738", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 4, + "ts": 0.0328917 + }, + { + "addr": "0x3ffbb748", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 8, + "ts": 0.032926225 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.03294325 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.032963425 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748\n", + "ts": 0.033027675 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748\n", + "ts": 0.033027675 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.0330414 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.033054625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.033054625 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.033070875 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.033081725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.033092475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.0331062 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.033116975 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.033127725 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, + "xTicksToWait": 4294967295 + }, + "ts": 0.033139725 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.033151025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.033162675 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.033179 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748\n", + "ts": 0.033242525 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748\n", + "ts": 0.033242525 + }, + { + "addr": "0x3ffbb748", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.03326705 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.03329405 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.033305475 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.03332205 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0336694 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.03368295 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.033698525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0338132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.033828325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.033828325 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.033840975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.03385665 + }, + { + "addr": "0x3ffbb748", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 6, + "ts": 0.033892175 + }, + { + "addr": "0x3ffbb758", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 12, + "ts": 0.033926575 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.033943475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.03395945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758\n", + "ts": 0.0340298 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758\n", + "ts": 0.0340298 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.034047625 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.03406085 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.03406085 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.03407715 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.034088 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.034098775 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.0341125 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.034123375 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0341342 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 + }, + "ts": 0.0341462 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.03415645 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.03416785 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.034184225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758\n", + "ts": 0.0342479 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758\n", + "ts": 0.0342479 + }, + { + "addr": "0x3ffbb758", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.0342691 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.034300025 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0343115 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0343282 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0346694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.03468285 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.034698425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0348132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0348286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.034843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0356694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.035682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.035698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0358132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0358287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.035843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0366694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.036682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.036698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0368132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0368287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.036843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0376694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.037682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0376981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0378132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0378287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.037843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0386694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.038682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.038698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0388132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0388286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.038843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0396694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.039682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.039698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0398132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0398287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.039843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0406694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.040682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.040698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0408132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0408287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.040843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0416694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.041682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0416981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0418132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0418287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.041843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0426694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.042682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.042698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0428132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0428286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.042843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0436694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.043682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.043698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0438132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0438287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.043843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0446694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.044687175 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0447023 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0448132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0448287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.044843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0456694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.045682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.045698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0458132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0458286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.045843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0466694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.046682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.046698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0468132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0468287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.046843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0476694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.047682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.047698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0478132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0478287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.047843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0486694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.048682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0486981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0488132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0488287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.048843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0496694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.049682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.049698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0498132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0498286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.049843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0506694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.050682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.050698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0508132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0508287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.050843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0516694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.051682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.051698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0518132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0518287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.051843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0526694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.052682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0526981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0528132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0528287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.052843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0536694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.053682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.053698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0538132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0538286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.053843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0546694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.054682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.054698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0548132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0548287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.054843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0556694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.055682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.055698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0558132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0558287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.055843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0566694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0566872 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.05670235 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0568132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0568287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.056843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0576694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.057682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.057698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0578132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0578286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.057843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0586694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.058682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.058698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0588132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0588287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.058843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0596694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.059682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.059698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0598132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0598287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.059843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0606694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.060682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0606981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0608132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0608287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.060843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0616694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.061682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.061698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0618132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12286700 + }, + "ts": 0.061828225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.061828225 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.06184085 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.061856525 + }, + { + "addr": "0x3ffbb758", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 3, + "ts": 0.06189185 + }, + { + "addr": "0x3ffbb768", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 6, + "ts": 0.061926275 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.0619433 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.061959425 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768\n", + "ts": 0.062023675 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768\n", + "ts": 0.062023675 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "ts": 0.062041475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.0620546 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.0620546 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.0620708 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.062081675 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.06209245 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.062106525 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.06211735 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.062128225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 + }, + "ts": 0.0621401 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.062150525 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.062162975 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.062179175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768\n", + "ts": 0.062242725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768\n", + "ts": 0.062242725 + }, + { + "addr": "0x3ffbb768", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.062263725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.062294025 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0623055 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0623222 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0626694 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.06268285 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.062698425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0628132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.062828225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.062828225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.06284085 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.062856525 + }, + { + "addr": "0x3ffbb768", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 6, + "ts": 0.06289185 + }, + { + "addr": "0x3ffbb778", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 12, + "ts": 0.062926275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.0629433 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.062959425 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778\n", + "ts": 0.0630259 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778\n", + "ts": 0.0630259 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.06303945 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.06305685 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.06305685 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.063073175 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.063084025 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.063094775 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.0631085 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.06311935 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.063130175 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, + "xTicksToWait": 4294967295 + }, + "ts": 0.063142025 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0631523 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.063163775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.063180075 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778\n", + "ts": 0.063243525 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778\n", + "ts": 0.063243525 + }, + { + "addr": "0x3ffbb778", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.063264675 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.063291675 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0633031 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.063319675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0636694 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.06368295 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.063698525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0638132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.063828325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.063828325 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.063840975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.06385665 + }, + { + "addr": "0x3ffbb778", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 9, + "ts": 0.063892175 + }, + { + "addr": "0x3ffbb788", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 18, + "ts": 0.0639307 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.063947725 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.0639637 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788\n", + "ts": 0.06403405 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788\n", + "ts": 0.06403405 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.06404765 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.064060875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.064060875 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.064077175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.064088025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0640988 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.064112775 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.0641236 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.064134475 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 + }, + "ts": 0.064146325 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.064157625 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.06416925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.0641897 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788\n", + "ts": 0.06425325 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788\n", + "ts": 0.06425325 + }, + { + "addr": "0x3ffbb788", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.06427445 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.06430135 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.064312775 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.06432935 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0646694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.06468295 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.064698525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0648132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0648287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.064843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0656694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.065682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.065698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0658132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0658287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.065843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0666694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.066682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0666981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0668132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0668287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.066843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0676694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.067682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.067698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0678132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0678286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.067843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0686694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.068682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.068698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0688132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0688287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.068843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0696694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.069682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.069698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0698132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0698287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0698481 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0706694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.070682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.070698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0708132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0708287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.070843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0716694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.071682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.071698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0718132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0718287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.071843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0726694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.072682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0726981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0728132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0728287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.072843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0736694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.073682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.073698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0738132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0738286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.073843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0746694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.074682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.074698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0748132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0748287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.074843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0756694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.075682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.075698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0758132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0758287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.075843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0766694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.076682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0766981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0768132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0768287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.076843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0776694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.077682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.077698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0778132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0778286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.077843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0786694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.078682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.078698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0788132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0788287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.078843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0796694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.079682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.079698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0798132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0798287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.079843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0806694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.080682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0806981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0808132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0808287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.080843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0816694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.081682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.081698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0818132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0818286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.081843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0826694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.082682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.082698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0828132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0828287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.082843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0836694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.083682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0836981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0838132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0838287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.083843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0846694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.084682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.084698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0848132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0848286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.084843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0856694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.085682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.085698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0858132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0858287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.085843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0866694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.086682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.086698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0868132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0868287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.086843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0876694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.087682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0876981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0878132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0878287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.087843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0886694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.088682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.088698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0888132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0888286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.088843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0896694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.089682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.089698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0898132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0898287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.089843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0906694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.090682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.090698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0908132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0908287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.090843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0916694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.091682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0916981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0918132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12286700 + }, + "ts": 0.091828325 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.091828325 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.091840975 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.09185665 + }, + { + "addr": "0x3ffbb788", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 4, + "ts": 0.091892175 + }, + { + "addr": "0x3ffbb798", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 8, + "ts": 0.09193 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.0919469 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.091962875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798\n", + "ts": 0.09202705 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798\n", + "ts": 0.09202705 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "ts": 0.092040625 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.09205375 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.09205375 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.09206995 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.092080825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0920916 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.0921055 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.0921163 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09212715 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 + }, + "ts": 0.09213905 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.092149275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.092160725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.092181 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798\n", + "ts": 0.09224455 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798\n", + "ts": 0.09224455 + }, + { + "addr": "0x3ffbb798", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.09226575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.092292625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09230405 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.092320625 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0926694 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09268295 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.092698525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0928132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.092828325 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.092828325 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.092840975 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.092856775 + }, + { + "addr": "0x3ffbb798", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 8, + "ts": 0.092892175 + }, + { + "addr": "0x3ffbb7a8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 16, + "ts": 0.0929267 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.09294365 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.092963825 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8\n", + "ts": 0.0930303 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8\n", + "ts": 0.0930303 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.09304395 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.093057125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.093057125 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.09307345 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.0930843 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09309505 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.093108775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.093119625 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09313045 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, + "xTicksToWait": 4294967295 + }, + "ts": 0.0931423 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.093152575 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.09316405 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.09318035 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8\n", + "ts": 0.0932438 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8\n", + "ts": 0.0932438 + }, + { + "addr": "0x3ffbb7a8", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.093268825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.093295825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.093307375 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.09332395 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0936694 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09368295 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.093698525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0938132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.093828325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.093828325 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.093840975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.09385665 + }, + { + "addr": "0x3ffbb7a8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 12, + "ts": 0.093892 + }, + { + "addr": "0x3ffbb7b8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 24, + "ts": 0.0939264 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.0939433 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.093959425 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8\n", + "ts": 0.09402975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8\n", + "ts": 0.09402975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.094047575 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.0940608 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.0940608 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.094077125 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.094087975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.094098725 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.09411245 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.09412335 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.094134175 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 + }, + "ts": 0.094146025 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.094157325 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.09416895 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.09418535 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8\n", + "ts": 0.0942489 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8\n", + "ts": 0.0942489 + }, + { + "addr": "0x3ffbb7b8", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.0942701 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.0943011 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.094312575 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.094329275 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0946694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09468285 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.094698425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0948132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0948286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.094843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0956694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.095682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.095698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0958132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0958287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.095843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0966694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.096682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.096698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0968132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0968287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.096843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0976694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.097682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0976981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0978132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0978287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.097843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0986694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.098682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.098698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0988132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0988286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.098843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0996694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.099682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.099698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0998132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0998287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.099843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1006694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.100682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.100698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1008132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1008287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.100843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1016694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.101682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1016981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1018132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1018287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.101843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1026694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.102682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.102698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1028132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1028286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.102843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1036694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.103682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.103698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1038132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1038287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.103843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1046694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.10468655 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.104701825 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1048132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1048287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.104843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1056694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.105682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.105698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1058132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1058286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.105843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1066694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.106682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.106698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1068132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1068287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.106843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1076694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.107682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.107698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1078132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1078287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.107843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1086694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.108682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1086981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1088132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1088287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.108843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1096694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.109682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.109698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1098132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1098286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.109843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1106694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.110682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.110698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1108132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1108287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.110843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1116694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.111682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.111698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1118132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1118287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.111843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1126694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.112682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1126981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1128132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1128287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.112843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1136694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.113682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.113698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1138132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1138286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.113843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1146694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.114682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.114698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1148132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1148287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.114843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1156694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.115682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.115698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1158132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1158287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.115843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1166694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1166872 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.11670235 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1168132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1168287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.116843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1176694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.117682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.117698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1178132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1178286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.117843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1186694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.118682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.118698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1188132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1188287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.118843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1196694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.119682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.119698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1198132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1198287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.119843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1206694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.120682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1206981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1208132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1208287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.120843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1216694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.121682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.121698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1218132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12286700 + }, + "ts": 0.121828225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.121828225 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.12184085 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.121856525 + }, + { + "addr": "0x3ffbb7b8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 5, + "ts": 0.12189185 + }, + { + "addr": "0x3ffbb7c8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 10, + "ts": 0.121926275 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.1219433 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.121959425 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8\n", + "ts": 0.12202985 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8\n", + "ts": 0.12202985 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "ts": 0.122047575 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.1220608 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.1220608 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.12207705 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.1220879 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.122098675 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.1221125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.1221234 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.122134225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 + }, + "ts": 0.122146175 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.122156425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.12216785 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.1221842 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8\n", + "ts": 0.12224775 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8\n", + "ts": 0.12224775 + }, + { + "addr": "0x3ffbb7c8", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.12226895 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.122299975 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.12231145 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12232815 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1226694 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.12268285 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.122698425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1228132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.122828225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.122828225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.12284085 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.122856525 + }, + { + "addr": "0x3ffbb7c8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 10, + "ts": 0.12289185 + }, + { + "addr": "0x3ffbb7d8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 20, + "ts": 0.122926275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.1229433 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.122959425 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8\n", + "ts": 0.12302985 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8\n", + "ts": 0.12302985 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.1230434 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.123060825 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.123060825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.123077125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.123087975 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.123098725 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.12311245 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.1231233 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.123134125 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, + "xTicksToWait": 4294967295 + }, + "ts": 0.123146 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12315625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.123167725 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.123184025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8\n", + "ts": 0.123247475 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8\n", + "ts": 0.123247475 + }, + { + "addr": "0x3ffbb7d8", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.12326865 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.12329565 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.123307075 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12332365 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1236694 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.12368295 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.123698525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1238132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.123828325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.123828325 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.123840975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.12385665 + }, + { + "addr": "0x3ffbb7d8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 15, + "ts": 0.123892175 + }, + { + "addr": "0x3ffbb7ec", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 30, + "ts": 0.12393085 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.12394775 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.123963725 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec\n", + "ts": 0.124034075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec\n", + "ts": 0.124034075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.1240478 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.124061025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.124061025 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.124077325 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.124088175 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.12409895 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.124112675 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.124125 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.124135825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 + }, + "ts": 0.1241477 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.124158975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.124170625 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.124190325 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec\n", + "ts": 0.124253875 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec\n", + "ts": 0.124253875 + }, + { + "addr": "0x3ffbb7ec", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.124275075 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.124301975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1243134 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.124329975 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1246694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.12468295 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.124698525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1248132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1248287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.124843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1256694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.125682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.125698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1258132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1258287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.125843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1266694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.126682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1266981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1268132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1268287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.126843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1276694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.127682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.127698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1278132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1278286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.127843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1286694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.128682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.128698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1288132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1288287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.128843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1296694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.129682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.129698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1298132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1298287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1298481 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1306694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.130682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.130698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1308132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1308287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.130843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1316694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.131682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.131698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1318132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1318287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.131843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1326694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.132682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1326981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1328132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1328287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.132843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1336694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.133682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.133698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1338132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1338286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.133843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1346694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.134682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.134698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1348132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1348287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.134843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1356694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.135682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.135698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1358132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1358287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.135843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1366694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.136682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1366981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1368132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1368287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.136843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1376694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.137682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.137698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1378132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1378286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.137843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1386694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.138682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.138698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1388132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1388287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.138843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1396694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.139682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.139698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1398132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1398287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.139843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1406694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.140682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1406981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1408132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1408287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.140843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1416694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.141682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.141698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1418132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1418286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.141843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1426694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.142682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.142698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1428132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1428287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.142843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1436694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.143682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1436981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1438132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1438287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.143843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1446694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.144682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.144698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1448132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1448286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.144843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1456694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.145682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.145698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1458132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1458287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.145843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1466694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.146682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.146698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1468132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1468287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.146843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1476694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.147682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1476981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1478132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1478287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.147843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1486694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.148682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.148698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1488132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1488286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.148843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1496694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.149682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.149698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1498132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1498287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.149843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1506694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.150682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.150698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1508132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1508287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.150843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1516694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.151682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1516981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1518132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12286700 + }, + "ts": 0.151828325 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.151828325 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.151840975 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.15185665 + }, + { + "addr": "0x3ffbb7ec", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 6, + "ts": 0.151892175 + }, + { + "addr": "0x3ffbb7fc", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 12, + "ts": 0.15193065 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.15194755 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.15196355 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc\n", + "ts": 0.152033875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc\n", + "ts": 0.152033875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "ts": 0.152047475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.1520607 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.1520607 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.15207695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.1520878 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.152098575 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.152112375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.152123175 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.152134025 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 + }, + "ts": 0.1521459 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1521562 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.152167725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.15218815 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc\n", + "ts": 0.1522517 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc\n", + "ts": 0.1522517 + }, + { + "addr": "0x3ffbb7fc", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.1522729 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.1522998 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.152311225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1523278 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1526694 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15268295 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.152698525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1528132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.152828325 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.152828325 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.152840975 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.152856775 + }, + { + "addr": "0x3ffbb7fc", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 12, + "ts": 0.152892175 + }, + { + "addr": "0x3ffbb80c", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 24, + "ts": 0.1529267 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.15294365 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.152963825 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c\n", + "ts": 0.15303425 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c\n", + "ts": 0.15303425 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.1530479 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.153061075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.153061075 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.1530774 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.15308825 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.153098975 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.15311275 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.1531237 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1531345 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, + "xTicksToWait": 4294967295 + }, + "ts": 0.153146375 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.153156625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.1531681 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.1531844 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c\n", + "ts": 0.15324785 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c\n", + "ts": 0.15324785 + }, + { + "addr": "0x3ffbb80c", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.1532729 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.1532999 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.153311325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1533279 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1536694 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15368295 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.153698525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1538132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.153828325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.153828325 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.153840975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.15385665 + }, + { + "addr": "0x3ffbb80c", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 18, + "ts": 0.153892175 + }, + { + "addr": "0x3ffbb824", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 36, + "ts": 0.153926725 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.153943625 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.153959625 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824\n", + "ts": 0.15402995 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824\n", + "ts": 0.15402995 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.154047775 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.154061125 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.154061125 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.15407745 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.1540883 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15409905 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.154112775 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.154123675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1541345 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 + }, + "ts": 0.15414635 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.15415765 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.154169275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.154185675 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824\n", + "ts": 0.154249225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824\n", + "ts": 0.154249225 + }, + { + "addr": "0x3ffbb824", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.154270425 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.154301425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1543129 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1543296 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1546694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15468285 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.154698425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1548132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1548286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.154843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1556694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.155682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.155698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1558132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1558287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.155843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1566694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.156682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.156698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1568132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1568287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.156843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1576694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.157682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1576981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1578132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1578287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.157843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1586694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.158682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.158698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1588132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1588286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.158843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1596694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.159682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.159698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1598132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1598287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.159843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1606694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.160682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.160698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1608132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1608287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.160843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1616694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.161682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1616981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1618132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1618287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.161843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1626694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.162682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.162698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1628132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1628286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.162843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1636694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.163682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.163698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1638132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1638287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.163843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1646694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.16468655 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.164701825 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1648132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1648287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.164843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1656694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.165682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.165698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1658132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1658286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.165843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1666694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.166682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.166698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1668132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1668287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.166843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1676694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.167682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.167698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1678132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1678287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.167843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1686694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.168682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1686981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1688132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1688287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.168843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1696694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.169682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.169698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1698132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1698286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.169843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1706694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.170682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.170698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1708132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1708287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.170843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1716694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.171682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.171698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1718132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1718287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.171843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1726694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.172682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1726981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1728132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1728287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.172843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1736694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.173682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.173698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1738132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1738286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.173843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1746694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.174682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.174698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1748132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1748287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.174843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1756694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.175682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.175698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1758132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1758287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.175843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1766694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1766872 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.17670235 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1768132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1768287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.176843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1776694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.177682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.177698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1778132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1778286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.177843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1786694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.178682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.178698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1788132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1788287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.178843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1796694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.179682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.179698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1798132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1798287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.179843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1806694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.180682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1806981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1808132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1808287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.180843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1816694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.181682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.181698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1818132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12286700 + }, + "ts": 0.181828225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.181828225 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.18184085 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.181856525 + }, + { + "addr": "0x3ffbb824", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 7, + "ts": 0.18189185 + }, + { + "addr": "0x3ffbb834", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 14, + "ts": 0.181926275 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.1819433 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.1819593 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834\n", + "ts": 0.182029725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834\n", + "ts": 0.182029725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "ts": 0.182047475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.1820607 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.1820607 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.182076925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.1820878 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.18209855 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.1821124 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.182123275 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.18213415 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 + }, + "ts": 0.182146025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.182156325 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.18216785 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.18218415 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834\n", + "ts": 0.1822477 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834\n", + "ts": 0.1822477 + }, + { + "addr": "0x3ffbb834", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.1822689 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.18230005 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.182311525 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.182328225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1826694 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.18268285 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.182698425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1828132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.182828225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.182828225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.18284085 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.182856525 + }, + { + "addr": "0x3ffbb834", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 14, + "ts": 0.1828917 + }, + { + "addr": "0x3ffbb848", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 28, + "ts": 0.182926225 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.18294325 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.18295925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848\n", + "ts": 0.183029675 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848\n", + "ts": 0.183029675 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.183043225 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.18306065 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.18306065 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.183076975 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.183087825 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.183098575 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.1831123 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.18312315 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.183133975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, + "xTicksToWait": 4294967295 + }, + "ts": 0.183145825 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1831561 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.183167575 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.183183875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848\n", + "ts": 0.183247325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848\n", + "ts": 0.183247325 + }, + { + "addr": "0x3ffbb848", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.1832686 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.1832956 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.183307025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1833236 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1836694 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.18368295 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.183698525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1838132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.183828325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.183828325 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.183840975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.18385665 + }, + { + "addr": "0x3ffbb848", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 21, + "ts": 0.183892175 + }, + { + "addr": "0x3ffbb864", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 42, + "ts": 0.18393085 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.18394775 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.183963725 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864\n", + "ts": 0.184034075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864\n", + "ts": 0.184034075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.1840478 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.184061025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.184061025 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.184077325 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.184088175 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.18409895 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.184112675 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.184125 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.184135825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 + }, + "ts": 0.1841477 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.184158975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.184170625 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.184190325 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864\n", + "ts": 0.184253875 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864\n", + "ts": 0.184253875 + }, + { + "addr": "0x3ffbb864", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.184275075 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.184301975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1843134 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.184329975 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1846694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.18468295 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.184698525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1848132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1848287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.184843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1856694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.185682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.185698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1858132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1858287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.185843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1866694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.186682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1866981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1868132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1868287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.186843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1876694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.187682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.187698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1878132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1878286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.187843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1886694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.188682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.188698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1888132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1888287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.188843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1896694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.189682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.189698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1898132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1898287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1898481 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1906694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.190682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.190698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1908132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1908287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.190843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1916694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.191682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.191698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1918132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1918287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.191843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1926694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.192682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1926981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1928132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1928287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.192843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1936694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.193682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.193698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1938132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1938286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.193843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1946694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.194682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.194698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1948132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1948287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.194843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1956694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.195682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.195698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1958132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1958287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.195843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1966694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.196682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1966981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1968132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1968287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.196843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1976694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.197682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.197698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1978132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1978286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.197843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1986694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.198682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.198698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1988132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1988287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.198843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1996694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.199682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.199698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1998132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1998287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.199843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2006694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.200682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2006981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2008132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2008287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.200843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2016694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.201682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.201698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2018132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2018286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.201843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2026694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.202682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.202698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2028132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2028287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.202843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2036694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.203682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2036981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2038132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2038287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.203843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2046694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.204682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.204698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2048132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2048286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.204843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2056694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.205682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.205698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2058132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2058287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.205843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2066694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.206682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.206698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2068132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2068287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.206843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2076694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.207682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2076981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2078132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2078287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.207843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2086694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.208682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.208698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2088132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2088286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.208843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2096694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.209682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.209698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2098132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2098287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.209843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2106694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.210682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.210698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2108132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2108287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.210843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2116694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.211682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2116981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2118132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12286700 + }, + "ts": 0.211828325 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.211828325 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.211840975 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.21185665 + }, + { + "addr": "0x3ffbb864", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 8, + "ts": 0.211892175 + }, + { + "addr": "0x3ffbb874", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 16, + "ts": 0.21193065 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.21194755 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.21196355 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874\n", + "ts": 0.212033875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874\n", + "ts": 0.212033875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "ts": 0.212047475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.2120607 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.2120607 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.21207695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.2120878 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.212098575 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.212112375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.212123175 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.212134025 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 + }, + "ts": 0.2121459 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2121562 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.212167725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.21218815 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874\n", + "ts": 0.2122517 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874\n", + "ts": 0.2122517 + }, + { + "addr": "0x3ffbb874", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.2122729 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.2122998 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.212311225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2123278 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2126694 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21268295 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.212698525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2128132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.212828325 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.212828325 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.212840975 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.212856775 + }, + { + "addr": "0x3ffbb874", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 16, + "ts": 0.212892175 + }, + { + "addr": "0x3ffbb888", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 32, + "ts": 0.212926875 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.2129438 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.212963975 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888\n", + "ts": 0.213034425 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888\n", + "ts": 0.213034425 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.21304805 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.21306125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.21306125 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.21307755 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.2130884 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21309915 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.213112875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.213123725 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21313455 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, + "xTicksToWait": 4294967295 + }, + "ts": 0.213146575 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21315695 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.21316835 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.21318475 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888\n", + "ts": 0.2132482 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888\n", + "ts": 0.2132482 + }, + { + "addr": "0x3ffbb888", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.213273225 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.213300225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21331165 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.213328225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2136694 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21368295 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.213698525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2138132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.213828325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.213828325 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.213840975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.21385665 + }, + { + "addr": "0x3ffbb888", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 24, + "ts": 0.213892175 + }, + { + "addr": "0x3ffbb8a4", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 48, + "ts": 0.213926725 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.213943625 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.213959625 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4\n", + "ts": 0.21402995 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4\n", + "ts": 0.21402995 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.21405045 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.214063675 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.214063675 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.21408 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.21409085 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2141016 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.2141155 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.214126375 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2141372 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 + }, + "ts": 0.21414905 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21416035 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.214171975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.214188375 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4\n", + "ts": 0.214251925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4\n", + "ts": 0.214251925 + }, + { + "addr": "0x3ffbb8a4", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.214273125 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.21430345 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.214314925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.214331625 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2146694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21468285 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.214698425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2148132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2148286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.214843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2156694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.215682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.215698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2158132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2158287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.215843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2166694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.216682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.216698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2168132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2168287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.216843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2176694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.217682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2176981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2178132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2178287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.217843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2186694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.218682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.218698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2188132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2188286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.218843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2196694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.219682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.219698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2198132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2198287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.219843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2206694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.220682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.220698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2208132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2208287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.220843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2216694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.221682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2216981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2218132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2218287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.221843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2226694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.222682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.222698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2228132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2228286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.222843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2236694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.223682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.223698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2238132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2238287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.223843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2246694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.224687175 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.224702325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2248132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2248287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.224843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2256694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.225682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.225698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2258132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2258286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.225843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2266694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.226682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.226698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2268132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2268287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.226843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2276694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.227682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.227698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2278132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2278287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.227843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2286694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.228682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2286981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2288132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2288287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.228843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2296694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.229682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.229698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2298132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2298286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.229843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2306694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.230682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.230698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2308132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2308287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.230843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2316694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.231682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.231698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2318132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2318287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.231843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2326694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.232682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2326981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2328132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2328287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.232843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2336694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.233682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.233698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2338132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2338286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.233843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2346694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.234682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.234698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2348132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2348287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.234843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2356694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.235682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.235698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2358132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2358287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.235843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2366694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.236686525 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.23670165 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2368132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2368287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.236843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2376694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.237682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.237698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2378132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2378286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.237843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2386694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.238682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.238698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2388132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2388287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.238843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2396694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.239682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.239698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2398132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2398287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.239843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2406694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.240682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2406981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2408132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2408287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.240843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2416694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.241682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.241698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2418132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12286700 + }, + "ts": 0.241828225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.241828225 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.24184085 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.241856525 + }, + { + "addr": "0x3ffbb8a4", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 9, + "ts": 0.24189185 + }, + { + "addr": "0x3ffbb8b4", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 18, + "ts": 0.241926275 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.2419433 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.2419593 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4\n", + "ts": 0.242029725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4\n", + "ts": 0.242029725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "ts": 0.24204755 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.242060775 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.242060775 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.242077 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.242087875 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.242098625 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.242112475 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.24212335 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.242134175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 + }, + "ts": 0.24214615 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2421564 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.2421678 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.242184175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4\n", + "ts": 0.242247725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4\n", + "ts": 0.242247725 + }, + { + "addr": "0x3ffbb8b4", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.242268925 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.242299925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2423114 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2423281 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2426694 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.24268285 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.242698425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2428132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.242828225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.242828225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.24284085 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.242856525 + }, + { + "addr": "0x3ffbb8b4", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 18, + "ts": 0.24289185 + }, + { + "addr": "0x3ffbb8cc", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 36, + "ts": 0.242926425 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.24294345 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.24295945 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc\n", + "ts": 0.243029875 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc\n", + "ts": 0.243029875 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.243043425 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.24306025 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.24306025 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.24307655 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.2430874 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.24309815 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.243111875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.243122725 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.24313355 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, + "xTicksToWait": 4294967295 + }, + "ts": 0.243145575 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.24315595 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.24316735 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.24318375 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc\n", + "ts": 0.2432472 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc\n", + "ts": 0.2432472 + }, + { + "addr": "0x3ffbb8cc", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.24326835 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.24329535 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.243306775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.24332335 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2436694 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.24368295 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.243698525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2438132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.243828325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.243828325 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.243840975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.24385665 + }, + { + "addr": "0x3ffbb8cc", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 27, + "ts": 0.243892175 + }, + { + "addr": "0x3ffbb8ec", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 54, + "ts": 0.24393085 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.24394775 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.243963875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec\n", + "ts": 0.244034325 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec\n", + "ts": 0.244034325 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.244047925 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.24406115 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.24406115 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.244077475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.244088325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.244099075 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.2441128 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.2441237 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.244134525 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 + }, + "ts": 0.244146375 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.244157675 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.2441693 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.24418975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec\n", + "ts": 0.2442533 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec\n", + "ts": 0.2442533 + }, + { + "addr": "0x3ffbb8ec", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.2442745 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.2443014 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.244312825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2443294 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2446694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.24468295 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.244698525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2448132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2448287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.244843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2456694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.245682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.245698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2458132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2458287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.245843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2466694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.246682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2466981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2468132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2468287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.246843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2476694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.247682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.247698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2478132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2478286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.247843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2486694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.248682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.248698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2488132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2488287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.248843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2496694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.249682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.249698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2498132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2498287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.249848325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2506694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.250682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.250698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2508132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2508287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.250843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2516694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.251682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.251698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2518132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2518287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.251843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2526694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.252682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2526981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2528132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2528287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.252843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2536694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.253682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.253698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2538132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2538286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.253843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2546694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.254682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.254698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2548132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2548287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.254843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2556694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.255682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.255698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2558132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2558287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.255843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 }, - "ts": 0.00256445 + "ts": 0.2566694 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.256682975 + }, + { + "core_id": 1, + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 0.0025777 + "ts": 0.2566981 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 30 + "irq_num": 5 }, - "ts": 0.002585225 + "ts": 0.2568132 }, { "core_id": 0, - "ctx_name": "main", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.00259295 + "ts": 0.2568287 }, { "core_id": 0, - "ctx_name": "main", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 0.00260595 + "ts": 0.256843775 }, { - "core_id": 0, + "core_id": 1, "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { "irq_num": 5 }, - "ts": 0.00881955 + "ts": 0.2576694 }, { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12291908 - }, - "ts": 0.008828075 + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.257682925 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 6, + "ctx_name": "free2", + "id": 17, "in_irq": false, + "params": {}, + "ts": 0.257698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "tid": 12291908 + "irq_num": 5 }, - "ts": 0.008828075 + "ts": 0.2578132 }, { "core_id": 0, - "ctx_name": "main", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.008837475 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 4, - "in_irq": false, - "params": { - "tid": 12291908 - }, - "ts": 0.00885045 + "ts": 0.2578286 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 22, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, - "params": { - "desc": "ESP32 SystemView Heap Tracing Module", - "evt_off": 512, - "mod_id": 0 - }, - "ts": 0.00887265 + "params": {}, + "ts": 0.257843825 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 22, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "desc": "ESP32 SystemView Heap Tracing Module", - "evt_off": 512, - "mod_id": 0 + "irq_num": 5 }, - "ts": 0.00887265 + "ts": 0.2586694 }, { - "core_id": 0, - "ctx_name": "blink_task", - "id": 6, + "core_id": 1, + "ctx_name": "free2", + "id": 18, "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.008886175 + "params": {}, + "ts": 0.258682925 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 6, + "ctx_name": "free2", + "id": 17, "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.008886175 + "params": {}, + "ts": 0.258698075 }, { - "core_id": 1, - "ctx_name": "FROM_CPU1", + "core_id": 0, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 0.008897425 + "ts": 0.2588132 }, { - "core_id": 1, - "ctx_name": "IDLE1", + "core_id": 0, + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.00890615 + "ts": 0.2588287 }, { - "addr": "0x3ffb8e08", - "callers": [ - "0x400d1e63", - "0x40087834" - ], "core_id": 0, - "ctx_name": "blink_task", - "id": 512, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, - "size": 64, - "ts": 0.0089199 + "params": {}, + "ts": 0.258843775 }, { "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "tid": 12294320 + "irq_num": 5 }, - "ts": 0.00892825 + "ts": 0.2596694 }, { - "addr": "0x3ffb8e4c", - "callers": [ - "0x40087f1e", - "0x40088183" - ], - "core_id": 0, - "ctx_name": "blink_task", - "id": 512, + "core_id": 1, + "ctx_name": "free2", + "id": 18, "in_irq": false, - "size": 80, - "ts": 0.00895795 + "params": {}, + "ts": 0.259682925 }, { - "core_id": 0, - "ctx_name": "blink_task", - "id": 47, + "core_id": 1, + "ctx_name": "free2", + "id": 17, "in_irq": false, - "params": { - "ucQueueType": 4, - "uxItemSize": 0, - "uxQueueLength": 1 - }, - "ts": 0.00896725 + "params": {}, + "ts": 0.259698325 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 + "irq_num": 5 }, - "ts": 0.0089773 + "ts": 0.2598132 }, { - "addr": "0x3ffb8ea0", - "callers": [ - "0x400d1da6", - "0x40087834" - ], - "core_id": 1, - "ctx_name": "blink_task2", - "id": 512, + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, "in_irq": false, - "size": 65, - "ts": 0.008984625 + "params": {}, + "ts": 0.2598287 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 49, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.008995725 + "params": {}, + "ts": 0.259843775 }, { "core_id": 1, @@ -2287,938 +24683,813 @@ "params": { "irq_num": 5 }, - "ts": 0.009010075 + "ts": 0.2606694 }, { "core_id": 1, - "ctx_name": "blink_task2", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.009018025 + "ts": 0.260682975 }, { "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, + "ctx_name": "free2", + "id": 17, "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.0090319 + "params": {}, + "ts": 0.2606981 }, { - "addr": "0x3ffb5014", - "callers": [ - "0x40087f1e", - "0x40088183" - ], "core_id": 0, - "ctx_name": "blink_task", - "id": 512, - "in_irq": false, - "size": 80, - "ts": 0.0090896 + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2608132 }, { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, "in_irq": false, - "params": { - "cause": 27, - "tid": 12294320 - }, - "ts": 0.009098175 + "params": {}, + "ts": 0.2608287 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 47, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, - "params": { - "ucQueueType": 4, - "uxItemSize": 0, - "uxQueueLength": 1 - }, - "ts": 0.0091063 + "params": {}, + "ts": 0.260843775 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 - }, - "ts": 0.009113825 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 + "irq_num": 5 }, - "ts": 0.0091216 + "ts": 0.2616694 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.009129 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 - }, - "ts": 0.0091379 + "ts": 0.261682925 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 0.009145425 + "ts": 0.261698075 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 + "irq_num": 5 }, - "ts": 0.0091696 + "ts": 0.2618132 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 53, + "ctx_name": "alloc2", + "id": 18, "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.009185225 + "params": {}, + "ts": 0.2618286 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 6, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, + "params": {}, + "ts": 0.261843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "tid": 12294320 + "irq_num": 5 }, - "ts": 0.009195125 + "ts": 0.2626694 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 6, + "ctx_name": "free2", + "id": 18, "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.009195125 + "params": {}, + "ts": 0.262682925 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.262698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 0.009207 + "ts": 0.2628132 }, { - "core_id": 1, - "ctx_name": "IDLE1", + "core_id": 0, + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.009215575 + "ts": 0.2628287 }, { - "addr": "0x3ffb5068", - "callers": [ - "0x400d1e73", - "0x40087834" - ], "core_id": 0, - "ctx_name": "blink_task", - "id": 512, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, - "size": 96, - "ts": 0.009223275 + "params": {}, + "ts": 0.262843775 }, { "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "tid": 12294320 + "irq_num": 5 }, - "ts": 0.00923105 + "ts": 0.2636694 }, { - "core_id": 0, - "ctx_name": "blink_task", - "id": 49, + "core_id": 1, + "ctx_name": "free2", + "id": 18, "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.009241875 + "params": {}, + "ts": 0.263682975 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, + "ctx_name": "free2", + "id": 17, "in_irq": false, - "params": { - "cause": 27, - "tid": 12294320 - }, - "ts": 0.009257225 + "params": {}, + "ts": 0.2636981 }, { - "core_id": 1, - "ctx_name": "FROM_CPU1", + "core_id": 0, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 0.0092692 + "ts": 0.2638132 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 49, + "ctx_name": "alloc2", + "id": 18, "in_irq": false, + "params": {}, + "ts": 0.2638287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.263843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 + "irq_num": 5 }, - "ts": 0.009278275 + "ts": 0.2646694 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.009286275 + "ts": 0.264682925 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 0.00930345 + "ts": 0.264698075 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 + "irq_num": 5 }, - "ts": 0.00931095 + "ts": 0.2648132 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 53, + "ctx_name": "alloc2", + "id": 18, "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.009329625 + "params": {}, + "ts": 0.2648286 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 6, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, + "params": {}, + "ts": 0.264843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "tid": 12294320 + "irq_num": 5 }, - "ts": 0.009339525 + "ts": 0.2656694 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 6, + "ctx_name": "free2", + "id": 18, "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.009339525 + "params": {}, + "ts": 0.265682925 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.265698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 0.009351425 + "ts": 0.2658132 }, { - "addr": "0x3ffb8e08", - "callers": [ - "0x400d1e80", - "0x40087834" - ], "core_id": 0, - "ctx_name": "blink_task", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.00935945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.0093678 + "ts": 0.2658287 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 49, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.00937895 + "params": {}, + "ts": 0.265843775 }, { "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "tid": 12294320 + "irq_num": 5 }, - "ts": 0.00938745 + "ts": 0.2666694 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, + "ctx_name": "free2", + "id": 18, "in_irq": false, - "params": { - "cause": 27, - "tid": 12294320 - }, - "ts": 0.009402575 + "params": {}, + "ts": 0.266682925 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.0094149 + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.266698325 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 49, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 + "irq_num": 5 }, - "ts": 0.009423125 + "ts": 0.2668132 }, { - "core_id": 1, - "ctx_name": "IDLE1", + "core_id": 0, + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.00943025 + "ts": 0.2668287 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 53, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, + "params": {}, + "ts": 0.266843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 + "irq_num": 5 }, - "ts": 0.009445425 + "ts": 0.2676694 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.267682975 + }, + { + "core_id": 1, + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 0.009453075 + "ts": 0.2676981 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 + "irq_num": 5 }, - "ts": 0.009469225 + "ts": 0.2678132 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 6, + "ctx_name": "alloc2", + "id": 18, "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.009479025 + "params": {}, + "ts": 0.2678287 }, { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 6, + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.009479025 + "params": {}, + "ts": 0.267843775 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 0.00949095 + "ts": 0.2686694 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.009499475 + "ts": 0.268682925 }, { - "addr": "0x3ffb8e08", - "callers": [ - "0x400d1e8f", - "0x40087834" - ], - "core_id": 0, - "ctx_name": "blink_task", - "id": 512, + "core_id": 1, + "ctx_name": "free2", + "id": 17, "in_irq": false, - "size": 10, - "ts": 0.0095076 + "params": {}, + "ts": 0.268698075 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, - "in_irq": false, + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "tid": 12294320 + "irq_num": 5 }, - "ts": 0.0095153 + "ts": 0.2688132 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 49, + "ctx_name": "alloc2", + "id": 18, "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.0095261 + "params": {}, + "ts": 0.2688286 }, { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, - "params": { - "cause": 27, - "tid": 12294320 - }, - "ts": 0.00954155 + "params": {}, + "ts": 0.268843825 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 - }, - "ts": 0.00955385 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 + "irq_num": 5 }, - "ts": 0.0095611 + "ts": 0.2696694 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.0095684 + "ts": 0.269682925 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 0.009585075 + "ts": 0.269698075 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 + "irq_num": 5 }, - "ts": 0.009593375 + "ts": 0.2698132 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 53, + "ctx_name": "alloc2", + "id": 18, "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.00960915 + "params": {}, + "ts": 0.2698287 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 6, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, + "params": {}, + "ts": 0.269843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "tid": 12294320 + "irq_num": 5 }, - "ts": 0.009621875 + "ts": 0.2706694 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 6, + "ctx_name": "free2", + "id": 18, "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.009621875 + "params": {}, + "ts": 0.270682925 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.270698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 0.009633775 + "ts": 0.2708132 }, { - "core_id": 1, - "ctx_name": "IDLE1", + "core_id": 0, + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.0096423 + "ts": 0.2708287 }, { - "addr": "0x3ffb8e18", - "callers": [ - "0x400d1e9c", - "0x40087834" - ], "core_id": 0, - "ctx_name": "blink_task", - "id": 512, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, - "size": 23, - "ts": 0.009649475 + "params": {}, + "ts": 0.270843775 }, { "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "tid": 12294320 + "irq_num": 5 }, - "ts": 0.009657875 + "ts": 0.2716694 }, { - "core_id": 0, - "ctx_name": "blink_task", - "id": 49, + "core_id": 1, + "ctx_name": "free2", + "id": 18, "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.009666025 + "params": {}, + "ts": 0.271682975 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, + "ctx_name": "free2", + "id": 17, "in_irq": false, - "params": { - "cause": 27, - "tid": 12294320 - }, - "ts": 0.0096815 + "params": {}, + "ts": 0.2716981 }, { - "core_id": 1, - "ctx_name": "FROM_CPU1", + "core_id": 0, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 0.009693375 + "ts": 0.2718132 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 49, - "in_irq": false, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 + "tid": 12286700 }, - "ts": 0.0097028 + "ts": 0.271828325 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, + "ctx_name": "free2", + "id": 6, "in_irq": false, - "params": {}, - "ts": 0.00971055 + "params": { + "tid": 12286700 + }, + "ts": 0.271828325 }, { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, "in_irq": false, "params": {}, - "ts": 0.009726725 + "ts": 0.271840975 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 53, + "ctx_name": "alloc0", + "id": 4, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 + "tid": 12286700 }, - "ts": 0.010504825 + "ts": 0.27185665 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 53, + "ctx_name": "alloc0", + "id": 44, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 + "eAction": 2, + "pulPreviousNotificationValue": 0, + "ulValue": 0, + "xTaskToNotify": 12254080 }, - "ts": 0.01052065 + "ts": 0.27187515 }, { "core_id": 0, - "ctx_name": "blink_task", + "ctx_name": "alloc0", "id": 6, "in_irq": false, "params": { - "tid": 12294320 + "tid": 12254080 }, - "ts": 0.01053055 + "ts": 0.271886225 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 6, "in_irq": false, "params": { - "tid": 12294320 + "tid": 12254080 }, - "ts": 0.01053055 + "ts": 0.271886225 }, { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, "params": { - "irq_num": 31 + "xTicksToDelay": 100 }, - "ts": 0.0105424 + "ts": 0.271899375 }, { - "addr": "0x3ffb8e18", - "callers": [ - "0x400d1eab", - "0x40087834" - ], "core_id": 0, - "ctx_name": "blink_task", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.010550025 + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.271915925 }, { - "core_id": 1, - "ctx_name": "IDLE1", + "core_id": 0, + "ctx_name": "alloc0", "id": 18, "in_irq": false, "params": {}, - "ts": 0.01055745 + "ts": 0.2719273 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.0105697 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", + "ctx_name": "main", "id": 4, "in_irq": false, "params": { - "tid": 12294320 + "tid": 12254080 }, - "ts": 0.0105777 + "ts": 0.27194425 }, { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, + "core_id": 0, + "ctx_name": "main", + "id": 37, "in_irq": false, "params": { - "cause": 27, - "tid": 12294320 - }, - "ts": 0.010592825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 + "xClearCountOnExit": 0, + "xTicksToWait": 4294967295 }, - "ts": 0.01060595 + "ts": 0.271962125 }, { "core_id": 0, - "ctx_name": "blink_task", + "ctx_name": "main", "id": 49, "in_irq": false, "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 + "xQueue": 12283904, + "xTicksToWait": 10 }, - "ts": 0.010613575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0106209 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.01063705 + "ts": 0.271978075 }, { "core_id": 0, - "ctx_name": "blink_task", + "ctx_name": "main", "id": 53, "in_irq": false, "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12275732, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 0.01224095 + "ts": 0.271993975 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 53, + "ctx_name": "main", + "id": 26, "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.012256775 + "lvl": 0, + "msg": "I (580) example: Got notify val 1\n", + "ts": 0.2720432 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 6, + "ctx_name": "main", + "id": 26, "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.01226665 + "lvl": 0, + "msg": "I (580) example: Got notify val 1\n", + "ts": 0.2720432 }, { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 6, + "core_id": 0, + "ctx_name": "main", + "id": 49, "in_irq": false, "params": { - "tid": 12294320 + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 }, - "ts": 0.01226665 + "ts": 0.2720595 }, { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, + "core_id": 0, + "ctx_name": "main", + "id": 53, + "in_irq": false, "params": { - "irq_num": 31 + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 }, - "ts": 0.01228135 + "ts": 0.27207545 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, + "ctx_name": "main", + "id": 26, "in_irq": false, - "params": { - "cause": 27, - "tid": 12291908 - }, - "ts": 0.012289475 + "lvl": 0, + "msg": "I (580) example: Wait notify 1\n", + "ts": 0.2721198 }, { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, + "core_id": 0, + "ctx_name": "main", + "id": 26, "in_irq": false, - "params": {}, - "ts": 0.01229745 + "lvl": 0, + "msg": "I (580) example: Wait notify 1\n", + "ts": 0.2721198 }, { "core_id": 0, @@ -3228,495 +25499,410 @@ "params": { "irq_num": 30 }, - "ts": 0.01230635 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.012312875 + "ts": 0.272138175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 0.0123207 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.01232895 + "ts": 0.272149575 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 0.0123381 + "ts": 0.272165625 }, { "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 + "irq_num": 5 }, - "ts": 0.012640475 + "ts": 0.2726694 }, { "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, + "ctx_name": "free2", + "id": 18, "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 - }, - "ts": 0.01493185 + "params": {}, + "ts": 0.272682925 }, { "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, + "ctx_name": "free2", + "id": 17, "in_irq": false, + "params": {}, + "ts": 0.272698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 + "irq_num": 5 }, - "ts": 0.014963325 + "ts": 0.2728132 }, { - "addr": "0x3ffb50cc", - "callers": [ - "0x400d1db7", - "0x40087834" - ], - "core_id": 1, - "ctx_name": "blink_task2", - "id": 512, - "in_irq": false, - "size": 97, - "ts": 0.01498415 + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.272828325 }, { "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, + "ctx_name": "free2", + "id": 6, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 + "tid": 12292716 }, - "ts": 0.0149974 + "ts": 0.272828325 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, + "core_id": 0, + "ctx_name": "main", + "id": 18, "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 - }, - "ts": 0.01503105 + "params": {}, + "ts": 0.272840975 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 + "tid": 12292716 }, - "ts": 0.0176228 + "ts": 0.272856775 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, + "core_id": 0, + "ctx_name": "alloc1", + "id": 44, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 + "eAction": 2, + "pulPreviousNotificationValue": 0, + "ulValue": 0, + "xTaskToNotify": 12254080 }, - "ts": 0.017638675 + "ts": 0.2728712 }, { - "addr": "0x3ffb8ea0", - "callers": [ - "0x400d1dc4", - "0x40087834" - ], - "core_id": 1, - "ctx_name": "blink_task2", - "id": 513, + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, "in_irq": false, - "size": 0, - "ts": 0.017656375 + "params": { + "tid": 12254080 + }, + "ts": 0.2728822 }, { "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, + "ctx_name": "free2", + "id": 6, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 + "tid": 12254080 }, - "ts": 0.017674025 + "ts": 0.2728822 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 + "xTicksToDelay": 100 }, - "ts": 0.0177017 + "ts": 0.272895325 }, { "core_id": 0, - "ctx_name": "SysTick", + "ctx_name": "FROM_CPU0", "id": 2, "in_irq": true, "params": { - "irq_num": 5 + "irq_num": 30 }, - "ts": 0.01881955 + "ts": 0.272911925 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc1", "id": 18, "in_irq": false, "params": {}, - "ts": 0.018829625 + "ts": 0.2729233 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, + "ctx_name": "main", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.01884475 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, "params": { - "irq_num": 5 + "tid": 12254080 }, - "ts": 0.019010075 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.01901795 + "ts": 0.27294025 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, + "core_id": 0, + "ctx_name": "main", + "id": 37, "in_irq": false, "params": { - "tid": 12294320 + "xClearCountOnExit": 0, + "xTicksToWait": 4294967295 }, - "ts": 0.0190332 + "ts": 0.27295395 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, + "core_id": 0, + "ctx_name": "main", + "id": 49, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 }, - "ts": 0.019358925 + "ts": 0.272969875 }, { - "core_id": 1, - "ctx_name": "blink_task2", + "core_id": 0, + "ctx_name": "main", "id": 53, "in_irq": false, "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12291660, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 0.0193746 + "ts": 0.272985925 }, { - "addr": "0x3ffb8e18", - "callers": [ - "0x400d1dd3", - "0x40087834" - ], - "core_id": 1, - "ctx_name": "blink_task2", - "id": 512, + "core_id": 0, + "ctx_name": "main", + "id": 26, "in_irq": false, - "size": 11, - "ts": 0.019395425 + "lvl": 0, + "msg": "I (581) example: Got notify val 1\n", + "ts": 0.273035525 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, + "core_id": 0, + "ctx_name": "main", + "id": 26, "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.0194126 + "lvl": 0, + "msg": "I (581) example: Got notify val 1\n", + "ts": 0.273035525 }, { - "core_id": 1, - "ctx_name": "blink_task2", + "core_id": 0, + "ctx_name": "main", "id": 49, "in_irq": false, "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 + "xQueue": 12283904, + "xTicksToWait": 10 }, - "ts": 0.01944625 + "ts": 0.273051825 }, { - "core_id": 1, - "ctx_name": "blink_task2", + "core_id": 0, + "ctx_name": "main", "id": 53, "in_irq": false, "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12275732, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 0.0220499 + "ts": 0.273067775 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, + "core_id": 0, + "ctx_name": "main", + "id": 26, "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.022065775 + "lvl": 0, + "msg": "I (581) example: Wait notify 2\n", + "ts": 0.27311225 }, { - "addr": "0x3ffb8e28", - "callers": [ - "0x400d1de0", - "0x40087834" - ], - "core_id": 1, - "ctx_name": "blink_task2", - "id": 512, + "core_id": 0, + "ctx_name": "main", + "id": 26, "in_irq": false, - "size": 24, - "ts": 0.022086625 + "lvl": 0, + "msg": "I (581) example: Wait notify 2\n", + "ts": 0.27311225 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, - "in_irq": false, + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 + "irq_num": 30 }, - "ts": 0.022103925 + "ts": 0.273130625 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, + "core_id": 0, + "ctx_name": "main", + "id": 18, "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 - }, - "ts": 0.02213755 + "params": {}, + "ts": 0.273142025 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, + "core_id": 0, + "ctx_name": "main", + "id": 17, "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 - }, - "ts": 0.02474085 + "params": {}, + "ts": 0.273158075 }, { "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 + "irq_num": 5 }, - "ts": 0.024756725 + "ts": 0.2736694 }, { - "addr": "0x3ffb8e28", - "callers": [ - "0x400d1def", - "0x40087834" - ], "core_id": 1, - "ctx_name": "blink_task2", - "id": 513, + "ctx_name": "free2", + "id": 18, "in_irq": false, - "size": 0, - "ts": 0.024770475 + "params": {}, + "ts": 0.273682925 }, { "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, + "ctx_name": "free2", + "id": 17, "in_irq": false, + "params": {}, + "ts": 0.273698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 + "irq_num": 5 + }, + "ts": 0.2738132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 }, - "ts": 0.02479175 + "ts": 0.273828325 }, { "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, + "ctx_name": "free2", + "id": 6, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 + "tid": 12298716 }, - "ts": 0.0248195 + "ts": 0.273828325 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.273840975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 + "tid": 12298716 }, - "ts": 0.02647695 + "ts": 0.273856775 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, + "core_id": 0, + "ctx_name": "alloc2", + "id": 44, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 + "eAction": 2, + "pulPreviousNotificationValue": 0, + "ulValue": 0, + "xTaskToNotify": 12254080 }, - "ts": 0.0264957 + "ts": 0.2738712 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 6, "in_irq": false, "params": { - "tid": 12291908 + "tid": 12254080 }, - "ts": 0.026506975 + "ts": 0.2738822 }, { "core_id": 1, - "ctx_name": "blink_task2", + "ctx_name": "free2", "id": 6, "in_irq": false, "params": { - "tid": 12291908 + "tid": 12254080 }, - "ts": 0.026506975 + "ts": 0.2738822 }, { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, "in_irq": false, "params": { - "cause": 27, - "tid": 12294320 + "xTicksToDelay": 100 }, - "ts": 0.026518525 + "ts": 0.273895325 }, { "core_id": 0, @@ -3726,88 +25912,109 @@ "params": { "irq_num": 30 }, - "ts": 0.026526625 + "ts": 0.273911925 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.026535575 + "ts": 0.2739233 }, { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, "params": { - "irq_num": 31 + "tid": 12254080 }, - "ts": 0.026544075 + "ts": 0.27394025 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 4, + "ctx_name": "main", + "id": 37, "in_irq": false, "params": { - "tid": 12291908 + "xClearCountOnExit": 0, + "xTicksToWait": 4294967295 }, - "ts": 0.02655165 + "ts": 0.27395395 }, { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, + "core_id": 0, + "ctx_name": "main", + "id": 49, "in_irq": false, - "params": {}, - "ts": 0.0265595 + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.273969875 }, { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, + "core_id": 0, + "ctx_name": "main", + "id": 53, "in_irq": false, - "params": {}, - "ts": 0.148816725 + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.273985925 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 34, + "ctx_name": "main", + "id": 26, "in_irq": false, - "params": { - "xTicksToDelay": 1 - }, - "ts": 0.14882575 + "lvl": 0, + "msg": "I (582) example: Got notify val 1\n", + "ts": 0.274031175 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (582) example: Got notify val 1\n", + "ts": 0.274031175 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 49, "in_irq": false, "params": { - "cause": 4, - "tid": 12291908 + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 }, - "ts": 0.1488332 + "ts": 0.329656225 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 11, "in_irq": false, "params": {}, - "ts": 0.14883925 + "ts": 0.32966495 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 11, "in_irq": false, "params": {}, - "ts": 0.14883925 + "ts": 0.32966495 } ], "streams": { diff --git a/tools/esp_app_trace/test/sysview/expected_output_mcore b/tools/esp_app_trace/test/sysview/expected_output_mcore index cacefccfc520..7e621cef33e7 100644 --- a/tools/esp_app_trace/test/sysview/expected_output_mcore +++ b/tools/esp_app_trace/test/sysview/expected_output_mcore @@ -1,28964 +1,3563 @@ EVENT[0]: 0.000000000 - core[0].svTraceStart(10), plen 0: [] -EVENT[1]: 0.000006400 - core[0].svInit(24), plen 14: [sys_freq: 40000000, cpu_freq: 160000000, ram_base: 1061158912, id_shift: 0] -EVENT[2]: 0.000019525 - core[0].svSysDesc(14), plen 0: [desc: N=FreeRTOS Application,D=esp32,C=Xtensa,O=FreeRTOS] -EVENT[3]: 0.000070625 - core[0].svSysDesc(14), plen 0: [desc: I#5=SysTick] -EVENT[4]: 0.000159600 - core[0].svSysDesc(14), plen 0: [desc: I#6=WIFI_MAC] -EVENT[5]: 0.000184950 - core[0].svSysDesc(14), plen 0: [desc: I#7=WIFI_NMI] -EVENT[6]: 0.000206050 - core[0].svSysDesc(14), plen 0: [desc: I#8=WIFI_BB] -EVENT[7]: 0.000222950 - core[0].svSysDesc(14), plen 0: [desc: I#9=BT_MAC] -EVENT[8]: 0.000261900 - core[0].svSysDesc(14), plen 0: [desc: I#10=BT_BB] -EVENT[9]: 0.000285625 - core[0].svSysDesc(14), plen 0: [desc: I#11=BT_BB_NMI] -EVENT[10]: 0.000304525 - core[0].svSysDesc(14), plen 0: [desc: I#12=RWBT] -EVENT[11]: 0.000323425 - core[0].svSysDesc(14), plen 0: [desc: I#13=RWBLE] -EVENT[12]: 0.000346950 - core[0].svSysDesc(14), plen 0: [desc: I#14=RWBT_NMI] -EVENT[13]: 0.000366875 - core[0].svSysDesc(14), plen 0: [desc: I#15=RWBLE_NMI] -EVENT[14]: 0.000392525 - core[0].svSysDesc(14), plen 0: [desc: I#16=SLC0] -EVENT[15]: 0.000415325 - core[0].svSysDesc(14), plen 0: [desc: I#17=SLC1] -EVENT[16]: 0.000434225 - core[0].svSysDesc(14), plen 0: [desc: I#18=UHCI0] -EVENT[17]: 0.000453175 - core[0].svSysDesc(14), plen 0: [desc: I#19=UHCI1] -EVENT[18]: 0.000477600 - core[0].svSysDesc(14), plen 0: [desc: I#20=TG0_T0_LEVEL] -EVENT[19]: 0.000498075 - core[0].svSysDesc(14), plen 0: [desc: I#21=TG0_T1_LEVEL] -EVENT[20]: 0.000522825 - core[0].svSysDesc(14), plen 0: [desc: I#22=TG0_WDT_LEVEL] -EVENT[21]: 0.000543775 - core[0].svSysDesc(14), plen 0: [desc: I#23=TG0_LACT_LEVEL] -EVENT[22]: 0.000572225 - core[0].svSysDesc(14), plen 0: [desc: I#24=TG1_T0_LEVEL] -EVENT[23]: 0.000592675 - core[0].svSysDesc(14), plen 0: [desc: I#25=TG1_T1_LEVEL] -EVENT[24]: 0.000617300 - core[0].svSysDesc(14), plen 0: [desc: I#26=TG1_WDT_LEVEL] -EVENT[25]: 0.000638350 - core[0].svSysDesc(14), plen 0: [desc: I#27=TG1_LACT_LEVEL] -EVENT[26]: 0.000657150 - core[0].svSysDesc(14), plen 0: [desc: I#28=GPIO] -EVENT[27]: 0.000683650 - core[0].svSysDesc(14), plen 0: [desc: I#29=GPIO_NMI] -EVENT[28]: 0.000703575 - core[0].svSysDesc(14), plen 0: [desc: I#30=FROM_CPU0] -EVENT[29]: 0.000723450 - core[0].svSysDesc(14), plen 0: [desc: I#31=FROM_CPU1] -EVENT[30]: 0.000752275 - core[0].svSysDesc(14), plen 0: [desc: I#32=FROM_CPU2] -EVENT[31]: 0.000773675 - core[0].svSysDesc(14), plen 0: [desc: I#33=FROM_CPU3] -EVENT[32]: 0.000793750 - core[0].svSysDesc(14), plen 0: [desc: I#34=SPI0] -EVENT[33]: 0.000817875 - core[0].svSysDesc(14), plen 0: [desc: I#35=SPI1] -EVENT[34]: 0.000838025 - core[0].svSysDesc(14), plen 0: [desc: I#36=SPI2] -EVENT[35]: 0.000858375 - core[0].svSysDesc(14), plen 0: [desc: I#37=SPI3] -EVENT[36]: 0.000878350 - core[0].svSysDesc(14), plen 0: [desc: I#38=I2S0] -EVENT[37]: 0.000902400 - core[0].svSysDesc(14), plen 0: [desc: I#39=I2S1] -EVENT[38]: 0.000926725 - core[0].svSysDesc(14), plen 0: [desc: I#40=UART0] -EVENT[39]: 0.000947250 - core[0].svSysDesc(14), plen 0: [desc: I#41=UART1] -EVENT[40]: 0.000967725 - core[0].svSysDesc(14), plen 0: [desc: I#42=UART2] -EVENT[41]: 0.000992875 - core[0].svSysDesc(14), plen 0: [desc: I#43=SDIO_HOST] -EVENT[42]: 0.001013975 - core[0].svSysDesc(14), plen 0: [desc: I#44=ETH_MAC] -EVENT[43]: 0.001036925 - core[0].svSysDesc(14), plen 0: [desc: I#45=PWM0] -EVENT[44]: 0.001060925 - core[0].svSysDesc(14), plen 0: [desc: I#46=PWM1] -EVENT[45]: 0.001080775 - core[0].svSysDesc(14), plen 0: [desc: I#47=PWM2] -EVENT[46]: 0.001104725 - core[0].svSysDesc(14), plen 0: [desc: I#48=PWM3] -EVENT[47]: 0.001124475 - core[0].svSysDesc(14), plen 0: [desc: I#49=LEDC] -EVENT[48]: 0.001148800 - core[0].svSysDesc(14), plen 0: [desc: I#50=EFUSE] -EVENT[49]: 0.001168600 - core[0].svSysDesc(14), plen 0: [desc: I#51=CAN] -EVENT[50]: 0.001193950 - core[0].svSysDesc(14), plen 0: [desc: I#52=RTC_CORE] -EVENT[51]: 0.001213875 - core[0].svSysDesc(14), plen 0: [desc: I#53=RMT] -EVENT[52]: 0.001233625 - core[0].svSysDesc(14), plen 0: [desc: I#54=PCNT] -EVENT[53]: 0.001258875 - core[0].svSysDesc(14), plen 0: [desc: I#55=I2C_EXT0] -EVENT[54]: 0.001284150 - core[0].svSysDesc(14), plen 0: [desc: I#56=I2C_EXT1] -EVENT[55]: 0.001303975 - core[0].svSysDesc(14), plen 0: [desc: I#57=RSA] -EVENT[56]: 0.001325125 - core[0].svSysDesc(14), plen 0: [desc: I#58=SPI1_DMA] -EVENT[57]: 0.001349925 - core[0].svSysDesc(14), plen 0: [desc: I#59=SPI2_DMA] -EVENT[58]: 0.001370875 - core[0].svSysDesc(14), plen 0: [desc: I#60=SPI3_DMA] -EVENT[59]: 0.001390975 - core[0].svSysDesc(14), plen 0: [desc: I#61=WDT] -EVENT[60]: 0.001418825 - core[0].svSysDesc(14), plen 0: [desc: I#62=TIMER1] -EVENT[61]: 0.001439100 - core[0].svSysDesc(14), plen 0: [desc: I#63=TIMER2] -EVENT[62]: 0.001468925 - core[0].svSysDesc(14), plen 0: [desc: I#64=TG0_T0_EDGE] -EVENT[63]: 0.001494650 - core[0].svSysDesc(14), plen 0: [desc: I#65=TG0_T1_EDGE] -EVENT[64]: 0.001516800 - core[0].svSysDesc(14), plen 0: [desc: I#66=TG0_WDT_EDGE] -EVENT[65]: 0.001543300 - core[0].svSysDesc(14), plen 0: [desc: I#67=TG0_LACT_EDGE] -EVENT[66]: 0.001565150 - core[0].svSysDesc(14), plen 0: [desc: I#68=TG1_T0_EDGE] -EVENT[67]: 0.001587425 - core[0].svSysDesc(14), plen 0: [desc: I#69=TG1_T1_EDGE] -EVENT[68]: 0.001613600 - core[0].svSysDesc(14), plen 0: [desc: I#70=TG1_WDT_EDGE] -EVENT[69]: 0.001635900 - core[0].svSysDesc(14), plen 0: [desc: I#71=TG1_LACT_EDGE] -EVENT[70]: 0.001664300 - core[0].svSysDesc(14), plen 0: [desc: I#72=MMU_IA] -EVENT[71]: 0.001684900 - core[0].svSysDesc(14), plen 0: [desc: I#73=MPU_IA] -EVENT[72]: 0.001706000 - core[0].svSysDesc(14), plen 0: [desc: I#74=CACHE_IA] -EVENT[73]: 0.001712800 - core[0].svSysTimeUs(13), plen 0: [time: 8000] -EVENT[74]: 0.001942450 - core[0].svTaskInfo(9), plen 0: [tid: 12253892, prio: 22, name: esp_timer] -EVENT[75]: 0.001947950 - core[0].svStackInfo(21), plen 0: [tid: 12253892, base: 1073408704, sz: 3392, unused: 0] -EVENT[76]: 0.002044675 - core[0].svTaskInfo(9), plen 0: [tid: 12254676, prio: 24, name: ipc0] -EVENT[77]: 0.002049675 - core[0].svStackInfo(21), plen 0: [tid: 12254676, base: 1073428420, sz: 1356, unused: 0] -EVENT[78]: 0.002147650 - core[0].svTaskInfo(9), plen 0: [tid: 12273696, prio: 24, name: ipc1] -EVENT[79]: 0.002152900 - core[0].svStackInfo(21), plen 0: [tid: 12273696, base: 1073430556, sz: 1380, unused: 0] -EVENT[80]: 0.002318500 - core[0].svTaskInfo(9), plen 0: [tid: 12280900, prio: 1, name: main] -EVENT[81]: 0.002323775 - core[0].svStackInfo(21), plen 0: [tid: 12280900, base: 1073435712, sz: 2416, unused: 0] -EVENT[82]: 0.002412850 - core[0].svTaskInfo(9), plen 0: [tid: 12282800, prio: 0, name: IDLE0] -EVENT[83]: 0.002418150 - core[0].svStackInfo(21), plen 0: [tid: 12282800, base: 1073440172, sz: 1236, unused: 0] -EVENT[84]: 0.002497925 - core[0].svTaskInfo(9), plen 0: [tid: 12284700, prio: 0, name: IDLE1] -EVENT[85]: 0.002503025 - core[0].svStackInfo(21), plen 0: [tid: 12284700, base: 1073442072, sz: 1096, unused: 0] -EVENT[86]: 0.002599600 - core[0].svTaskInfo(9), plen 0: [tid: 12287356, prio: 1, name: Tmr Svc] -EVENT[87]: 0.002604900 - core[0].svStackInfo(21), plen 0: [tid: 12287356, base: 1073444216, sz: 1352, unused: 0] -EVENT[88]: 0.002613425 - core[0].svNumModules(27), plen 1: [mod_cnt: 0] -EVENT[89]: 0.002620975 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[90]: 0.002629525 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[91]: 0.002637475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[92]: 0.002646175 - core[0].svIsrExit(3), plen 0: [] -EVENT[93]: 0.002654400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[94]: 0.002662925 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[95]: 0.002670750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[96]: 0.002679375 - core[0].svIsrExit(3), plen 0: [] -EVENT[97]: 0.002688050 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[98]: 0.002696000 - core[1].svIdle(17), plen 0: [] -EVENT[99]: 0.002707150 - core[0].svIsrExit(3), plen 0: [] -EVENT[100]: 0.002723725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[101]: 0.002747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[102]: 0.002757250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[103]: 0.002765700 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 1] -EVENT[104]: 0.002775650 - core[0].svTaskStopReady(7), plen 0: [tid: 12280900, cause: 4] -EVENT[105]: 0.002789875 - core[1].svIdle(17), plen 0: [] -EVENT[106]: 0.002798050 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[107]: 0.002807125 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[108]: 0.002821375 - core[0].svIdle(17), plen 0: [] -EVENT[109]: 0.003617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[110]: 0.003629425 - core[0].svTaskStartReady(6), plen 0: [tid: 12280900] -EVENT[111]: 0.003638775 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[112]: 0.003653075 - core[0].svTaskStartExec(4), plen 0: [tid: 12280900] -EVENT[113]: 0.003677600 - core[0].svModuleDesc(22), plen 0: [mod_id: 0, evt_off: 512, desc: ESP32 SystemView Heap Tracing Module] -EVENT[114]: 0.003721700 - core[0].esp_sysview_heap_trace_alloc(512), plen 28: [addr: 1073446708, size: 8, callers: [1074609083, 1074596549, 1074305980, 0, 0, 0, 0, 0, 0, 0]] -[0.003721700] HEAP: Allocated 8 bytes @ 0x3ffb7f34 from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:85 -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[115]: 0.003748425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[116]: 0.003760275 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[117]: 0.003768500 - core[0].esp_sysview_heap_trace_alloc(512), plen 33: [addr: 1073449100, size: 2500, callers: [1074312415, 1074609156, 1074596549, 1074305980, 0, 0, 0, 0, 0, 0]] -[0.003768500] HEAP: Allocated 2500 bytes @ 0x3ffb888c from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[118]: 0.003776475 - core[1].svIdle(17), plen 0: [] -EVENT[119]: 0.003795700 - core[0].esp_sysview_heap_trace_alloc(512), plen 33: [addr: 1073446720, size: 356, callers: [1074312429, 1074609156, 1074596549, 1074305980, 0, 0, 0, 0, 0, 0]] -[0.003795700] HEAP: Allocated 356 bytes @ 0x3ffb7f40 from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[120]: 0.003826950 - core[0].svTaskCreate(8), plen 0: [tid: 12287808] -EVENT[121]: 0.003837225 - core[0].svTaskInfo(9), plen 0: [tid: 12287808, prio: 5, name: alloc0] -EVENT[122]: 0.003843775 - core[0].svStackInfo(21), plen 0: [tid: 12287808, base: 1073449100, sz: 2196, unused: 0] -EVENT[123]: 0.003854875 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[124]: 0.003868300 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[125]: 0.003877025 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[126]: 0.003891800 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[127]: 0.003924500 - core[0].esp_sysview_heap_trace_alloc(512), plen 28: [addr: 1073447080, size: 120, callers: [1074307750, 1074608768, 1074305980, 0, 0, 0, 0, 0, 0, 0]] -[0.003924500] HEAP: Allocated 120 bytes @ 0x3ffb80a8 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:391 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:46 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[128]: 0.003935150 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] -EVENT[129]: 0.003976350 - core[0].esp_sysview_heap_trace_alloc(512), plen 29: [addr: 1073451604, size: 2500, callers: [1074312415, 1074608829, 1074305980, 0, 0, 0, 0, 0, 0, 0]] -[0.003976350] HEAP: Allocated 2500 bytes @ 0x3ffb9254 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[130]: 0.003999725 - core[0].esp_sysview_heap_trace_alloc(512), plen 29: [addr: 1073447204, size: 356, callers: [1074312429, 1074608829, 1074305980, 0, 0, 0, 0, 0, 0, 0]] -[0.003999725] HEAP: Allocated 356 bytes @ 0x3ffb8124 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[131]: 0.004030500 - core[0].svTaskCreate(8), plen 0: [tid: 12288292] -EVENT[132]: 0.004041175 - core[0].svTaskInfo(9), plen 0: [tid: 12288292, prio: 5, name: free0] -EVENT[133]: 0.004047700 - core[0].svStackInfo(21), plen 0: [tid: 12288292, base: 1073451604, sz: 2204, unused: 0] -EVENT[134]: 0.004055850 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[135]: 0.004069150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[136]: 0.004078650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[137]: 0.004092075 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073447564, size: 2, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.004092075] HEAP: Allocated 2 bytes @ 0x3ffb828c from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[138]: 0.004101075 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[139]: 0.004110650 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[140]: 0.004126475 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[141]: 0.004135200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[142]: 0.004146650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[143]: 0.004155450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[144]: 0.004173700 - core[1].svIdle(17), plen 0: [] -EVENT[145]: 0.004291975 - core[0].svPrint(26), plen 69: [msg: I (330) example: Task[0x3ffb7f40]: allocated 2 bytes @ 0x3ffb828c -, lvl: 0, unused: 0] -[0.004291975] LOG: I (330) example: Task[0x3ffb7f40]: allocated 2 bytes @ 0x3ffb828c -EVENT[146]: 0.004303075 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[147]: 0.004313100 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[148]: 0.004326100 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[149]: 0.004334650 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[150]: 0.004342575 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[151]: 0.004351125 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[152]: 0.004363550 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[153]: 0.004371925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[154]: 0.004380175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[155]: 0.004388875 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[156]: 0.004405225 - core[0].svTaskStartExec(4), plen 0: [tid: 12280900] -EVENT[157]: 0.004414050 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[158]: 0.004430975 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[159]: 0.004439700 - core[0].esp_sysview_heap_trace_alloc(512), plen 28: [addr: 1073447572, size: 8, callers: [1074609083, 1074596549, 1074305980, 0, 0, 0, 0, 0, 0, 0]] -[0.004439700] HEAP: Allocated 8 bytes @ 0x3ffb8294 from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:85 -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[160]: 0.004471100 - core[0].esp_sysview_heap_trace_alloc(512), plen 33: [addr: 1073454108, size: 2500, callers: [1074312415, 1074609156, 1074596549, 1074305980, 0, 0, 0, 0, 0, 0]] -[0.004471100] HEAP: Allocated 2500 bytes @ 0x3ffb9c1c from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[161]: 0.004498675 - core[0].esp_sysview_heap_trace_alloc(512), plen 33: [addr: 1073447584, size: 356, callers: [1074312429, 1074609156, 1074596549, 1074305980, 0, 0, 0, 0, 0, 0]] -[0.004498675] HEAP: Allocated 356 bytes @ 0x3ffb82a0 from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[162]: 0.004529925 - core[0].svTaskCreate(8), plen 0: [tid: 12288672] -EVENT[163]: 0.004540825 - core[0].svTaskInfo(9), plen 0: [tid: 12288672, prio: 5, name: alloc1] -EVENT[164]: 0.004547375 - core[0].svStackInfo(21), plen 0: [tid: 12288672, base: 1073454108, sz: 2196, unused: 0] -EVENT[165]: 0.004555525 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[166]: 0.004568975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[167]: 0.004577750 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[168]: 0.004592525 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[169]: 0.004617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[170]: 0.004629400 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[171]: 0.004644525 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[172]: 0.004654925 - core[0].esp_sysview_heap_trace_alloc(512), plen 28: [addr: 1073447944, size: 120, callers: [1074307750, 1074608768, 1074305980, 0, 0, 0, 0, 0, 0, 0]] -[0.004654925] HEAP: Allocated 120 bytes @ 0x3ffb8408 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:391 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:46 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[173]: 0.004665450 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] -EVENT[174]: 0.004694775 - core[0].esp_sysview_heap_trace_alloc(512), plen 29: [addr: 1073456612, size: 2500, callers: [1074312415, 1074608829, 1074305980, 0, 0, 0, 0, 0, 0, 0]] -[0.004694775] HEAP: Allocated 2500 bytes @ 0x3ffba5e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[175]: 0.004718150 - core[0].esp_sysview_heap_trace_alloc(512), plen 29: [addr: 1073448068, size: 356, callers: [1074312429, 1074608829, 1074305980, 0, 0, 0, 0, 0, 0, 0]] -[0.004718150] HEAP: Allocated 356 bytes @ 0x3ffb8484 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[176]: 0.004751775 - core[0].svTaskCreate(8), plen 0: [tid: 12289156] -EVENT[177]: 0.004762675 - core[0].svTaskInfo(9), plen 0: [tid: 12289156, prio: 5, name: free1] -EVENT[178]: 0.004769375 - core[0].svStackInfo(21), plen 0: [tid: 12289156, base: 1073456612, sz: 2204, unused: 0] -EVENT[179]: 0.004777425 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[180]: 0.004801200 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448428, size: 4, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.004801200] HEAP: Allocated 4 bytes @ 0x3ffb85ec from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[181]: 0.004813875 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[182]: 0.004827850 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[183]: 0.004936525 - core[1].svPrint(26), plen 63: [msg: I (330) example: Task[0x3ffb8124]: free memory @ 0x3ffb828c -, lvl: 0, unused: 0] -[0.004936525] LOG: I (330) example: Task[0x3ffb8124]: free memory @ 0x3ffb828c -EVENT[184]: 0.004947675 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[185]: 0.004957150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[186]: 0.004971200 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[187]: 0.004990925 - core[0].svPrint(26), plen 69: [msg: I (331) example: Task[0x3ffb82a0]: allocated 4 bytes @ 0x3ffb85ec -, lvl: 0, unused: 0] -[0.004990925] LOG: I (331) example: Task[0x3ffb82a0]: allocated 4 bytes @ 0x3ffb85ec -EVENT[188]: 0.005003150 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073447564, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.005003150] HEAP: Freed bytes @ 0x3ffb828c from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[189]: 0.005011525 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[190]: 0.005023375 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[191]: 0.005033300 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[192]: 0.005042275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[193]: 0.005050550 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[194]: 0.005058725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[195]: 0.005068650 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[196]: 0.005077825 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[197]: 0.005086400 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[198]: 0.005095750 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[199]: 0.005105200 - core[0].svTaskStartExec(4), plen 0: [tid: 12280900] -EVENT[200]: 0.005113725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[201]: 0.005130625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[202]: 0.005138950 - core[0].esp_sysview_heap_trace_alloc(512), plen 28: [addr: 1073448436, size: 8, callers: [1074609083, 1074596549, 1074305980, 0, 0, 0, 0, 0, 0, 0]] -[0.005138950] HEAP: Allocated 8 bytes @ 0x3ffb85f4 from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:85 -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[203]: 0.005171025 - core[0].esp_sysview_heap_trace_alloc(512), plen 33: [addr: 1073459116, size: 2500, callers: [1074312415, 1074609156, 1074596549, 1074305980, 0, 0, 0, 0, 0, 0]] -[0.005171025] HEAP: Allocated 2500 bytes @ 0x3ffbafac from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[204]: 0.005195500 - core[1].svPrint(26), plen 63: [msg: I (331) example: Task[0x3ffb8484]: free memory @ 0x3ffb85ec -, lvl: 0, unused: 0] -[0.005195500] LOG: I (331) example: Task[0x3ffb8484]: free memory @ 0x3ffb85ec -EVENT[205]: 0.005205975 - core[0].esp_sysview_heap_trace_alloc(512), plen 33: [addr: 1073448448, size: 356, callers: [1074312429, 1074609156, 1074596549, 1074305980, 0, 0, 0, 0, 0, 0]] -[0.005205975] HEAP: Allocated 356 bytes @ 0x3ffb8600 from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[206]: 0.005214875 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448428, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.005214875] HEAP: Freed bytes @ 0x3ffb85ec from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[207]: 0.005236175 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[208]: 0.005247025 - core[0].svTaskCreate(8), plen 0: [tid: 12289536] -EVENT[209]: 0.005255550 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[210]: 0.005265450 - core[0].svTaskInfo(9), plen 0: [tid: 12289536, prio: 5, name: alloc2] -EVENT[211]: 0.005273425 - core[0].svStackInfo(21), plen 0: [tid: 12289536, base: 1073459116, sz: 2196, unused: 0] -EVENT[212]: 0.005281875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[213]: 0.005290525 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[214]: 0.005307225 - core[1].svIdle(17), plen 0: [] -EVENT[215]: 0.005321225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[216]: 0.005329950 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[217]: 0.005344575 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[218]: 0.005369825 - core[0].esp_sysview_heap_trace_alloc(512), plen 28: [addr: 1073448808, size: 120, callers: [1074307750, 1074608768, 1074305980, 0, 0, 0, 0, 0, 0, 0]] -[0.005369825] HEAP: Allocated 120 bytes @ 0x3ffb8768 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:391 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:46 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[219]: 0.005383475 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] -EVENT[220]: 0.005413350 - core[0].esp_sysview_heap_trace_alloc(512), plen 29: [addr: 1073461620, size: 2500, callers: [1074312415, 1074608829, 1074305980, 0, 0, 0, 0, 0, 0, 0]] -[0.005413350] HEAP: Allocated 2500 bytes @ 0x3ffbb974 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[221]: 0.005437250 - core[0].esp_sysview_heap_trace_alloc(512), plen 29: [addr: 1073433000, size: 356, callers: [1074312429, 1074608829, 1074305980, 0, 0, 0, 0, 0, 0, 0]] -[0.005437250] HEAP: Allocated 356 bytes @ 0x3ffb49a8 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[222]: 0.005468050 - core[0].svTaskCreate(8), plen 0: [tid: 12274088] -EVENT[223]: 0.005479125 - core[0].svTaskInfo(9), plen 0: [tid: 12274088, prio: 5, name: free2] -EVENT[224]: 0.005485675 - core[0].svStackInfo(21), plen 0: [tid: 12274088, base: 1073461620, sz: 2204, unused: 0] -EVENT[225]: 0.005493825 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[226]: 0.005507775 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[227]: 0.005518200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[228]: 0.005526475 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 6, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.005526475] HEAP: Allocated 6 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[229]: 0.005534800 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[230]: 0.005543400 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[231]: 0.005552900 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[232]: 0.005567850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[233]: 0.005576775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[234]: 0.005585000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[235]: 0.005603325 - core[1].svIdle(17), plen 0: [] -EVENT[236]: 0.005631150 - core[0].svPrint(26), plen 69: [msg: I (331) example: Task[0x3ffb8600]: allocated 6 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.005631150] LOG: I (331) example: Task[0x3ffb8600]: allocated 6 bytes @ 0x3ffb87e4 -EVENT[237]: 0.005644325 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[238]: 0.005655825 - core[0].svIsrExit(3), plen 0: [] -EVENT[239]: 0.005667550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[240]: 0.005677625 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[241]: 0.005690575 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[242]: 0.005699300 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[243]: 0.005707225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[244]: 0.005715775 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[245]: 0.005728500 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[246]: 0.005736825 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[247]: 0.005745075 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[248]: 0.005753575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[249]: 0.005761825 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[250]: 0.005771750 - core[0].svTaskStartExec(4), plen 0: [tid: 12280900] -EVENT[251]: 0.005779925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[252]: 0.005792050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[253]: 0.005800800 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[254]: 0.005817500 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[255]: 0.005833675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[256]: 0.005847800 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[257]: 0.005860850 - core[0].svPrint(26), plen 34: [msg: I (332) example: Wait notify 0 -, lvl: 0, unused: 0] -[0.005860850] LOG: I (332) example: Wait notify 0 -EVENT[258]: 0.005875075 - core[0].svTaskStopReady(7), plen 0: [tid: 12280900, cause: 27] -EVENT[259]: 0.005887375 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[260]: 0.005896100 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[261]: 0.005913525 - core[1].svPrint(26), plen 63: [msg: I (332) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.005913525] LOG: I (332) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[262]: 0.005921475 - core[0].svIdle(17), plen 0: [] -EVENT[263]: 0.005931800 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.005931800] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[264]: 0.005950550 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[265]: 0.005963300 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[266]: 0.005972075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[267]: 0.005987500 - core[1].svIdle(17), plen 0: [] -EVENT[268]: 0.006617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[269]: 0.006629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[270]: 0.006643125 - core[0].svIdle(17), plen 0: [] -EVENT[271]: 0.006747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[272]: 0.006757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[273]: 0.006770775 - core[1].svIdle(17), plen 0: [] -EVENT[274]: 0.007617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[275]: 0.007629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[276]: 0.007643125 - core[0].svIdle(17), plen 0: [] -EVENT[277]: 0.007747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[278]: 0.007756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[279]: 0.007770600 - core[1].svIdle(17), plen 0: [] -EVENT[280]: 0.008617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[281]: 0.008629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[282]: 0.008643250 - core[0].svIdle(17), plen 0: [] -EVENT[283]: 0.008747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[284]: 0.008756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[285]: 0.008770600 - core[1].svIdle(17), plen 0: [] -EVENT[286]: 0.009617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[287]: 0.009629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[288]: 0.009643175 - core[0].svIdle(17), plen 0: [] -EVENT[289]: 0.009747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[290]: 0.009756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[291]: 0.009770600 - core[1].svIdle(17), plen 0: [] -EVENT[292]: 0.010617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[293]: 0.010632550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[294]: 0.010646175 - core[0].svIdle(17), plen 0: [] -EVENT[295]: 0.010747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[296]: 0.010756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[297]: 0.010770600 - core[1].svIdle(17), plen 0: [] -EVENT[298]: 0.011617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[299]: 0.011629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[300]: 0.011643125 - core[0].svIdle(17), plen 0: [] -EVENT[301]: 0.011747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[302]: 0.011757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[303]: 0.011770775 - core[1].svIdle(17), plen 0: [] -EVENT[304]: 0.012617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[305]: 0.012629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[306]: 0.012643125 - core[0].svIdle(17), plen 0: [] -EVENT[307]: 0.012747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[308]: 0.012756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[309]: 0.012770600 - core[1].svIdle(17), plen 0: [] -EVENT[310]: 0.013617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[311]: 0.013629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[312]: 0.013643250 - core[0].svIdle(17), plen 0: [] -EVENT[313]: 0.013747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[314]: 0.013756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[315]: 0.013770600 - core[1].svIdle(17), plen 0: [] -EVENT[316]: 0.014617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[317]: 0.014629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[318]: 0.014643175 - core[0].svIdle(17), plen 0: [] -EVENT[319]: 0.014747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[320]: 0.014756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[321]: 0.014770600 - core[1].svIdle(17), plen 0: [] -EVENT[322]: 0.015617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[323]: 0.015629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[324]: 0.015643125 - core[0].svIdle(17), plen 0: [] -EVENT[325]: 0.015747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[326]: 0.015757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[327]: 0.015770775 - core[1].svIdle(17), plen 0: [] -EVENT[328]: 0.016617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[329]: 0.016629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[330]: 0.016643125 - core[0].svIdle(17), plen 0: [] -EVENT[331]: 0.016747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[332]: 0.016756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[333]: 0.016770600 - core[1].svIdle(17), plen 0: [] -EVENT[334]: 0.017617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[335]: 0.017629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[336]: 0.017643250 - core[0].svIdle(17), plen 0: [] -EVENT[337]: 0.017747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[338]: 0.017756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[339]: 0.017770600 - core[1].svIdle(17), plen 0: [] -EVENT[340]: 0.018617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[341]: 0.018629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[342]: 0.018643175 - core[0].svIdle(17), plen 0: [] -EVENT[343]: 0.018747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[344]: 0.018756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[345]: 0.018770600 - core[1].svIdle(17), plen 0: [] -EVENT[346]: 0.019617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[347]: 0.019629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[348]: 0.019643125 - core[0].svIdle(17), plen 0: [] -EVENT[349]: 0.019747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[350]: 0.019757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[351]: 0.019770775 - core[1].svIdle(17), plen 0: [] -EVENT[352]: 0.020617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[353]: 0.020629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[354]: 0.020643125 - core[0].svIdle(17), plen 0: [] -EVENT[355]: 0.020747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[356]: 0.020756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[357]: 0.020770600 - core[1].svIdle(17), plen 0: [] -EVENT[358]: 0.021617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[359]: 0.021629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[360]: 0.021643250 - core[0].svIdle(17), plen 0: [] -EVENT[361]: 0.021747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[362]: 0.021756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[363]: 0.021770600 - core[1].svIdle(17), plen 0: [] -EVENT[364]: 0.022617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[365]: 0.022632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[366]: 0.022646225 - core[0].svIdle(17), plen 0: [] -EVENT[367]: 0.022747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[368]: 0.022756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[369]: 0.022770600 - core[1].svIdle(17), plen 0: [] -EVENT[370]: 0.023617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[371]: 0.023629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[372]: 0.023643125 - core[0].svIdle(17), plen 0: [] -EVENT[373]: 0.023747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[374]: 0.023757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[375]: 0.023770775 - core[1].svIdle(17), plen 0: [] -EVENT[376]: 0.024617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[377]: 0.024629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[378]: 0.024643125 - core[0].svIdle(17), plen 0: [] -EVENT[379]: 0.024747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[380]: 0.024756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[381]: 0.024770600 - core[1].svIdle(17), plen 0: [] -EVENT[382]: 0.025617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[383]: 0.025629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[384]: 0.025643250 - core[0].svIdle(17), plen 0: [] -EVENT[385]: 0.025747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[386]: 0.025756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[387]: 0.025770600 - core[1].svIdle(17), plen 0: [] -EVENT[388]: 0.026617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[389]: 0.026629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[390]: 0.026643175 - core[0].svIdle(17), plen 0: [] -EVENT[391]: 0.026747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[392]: 0.026756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[393]: 0.026770600 - core[1].svIdle(17), plen 0: [] -EVENT[394]: 0.027617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[395]: 0.027629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[396]: 0.027643125 - core[0].svIdle(17), plen 0: [] -EVENT[397]: 0.027747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[398]: 0.027757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[399]: 0.027770775 - core[1].svIdle(17), plen 0: [] -EVENT[400]: 0.028617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[401]: 0.028629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[402]: 0.028643125 - core[0].svIdle(17), plen 0: [] -EVENT[403]: 0.028747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[404]: 0.028756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[405]: 0.028770600 - core[1].svIdle(17), plen 0: [] -EVENT[406]: 0.029617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[407]: 0.029629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[408]: 0.029643250 - core[0].svIdle(17), plen 0: [] -EVENT[409]: 0.029747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[410]: 0.029756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[411]: 0.029770600 - core[1].svIdle(17), plen 0: [] -EVENT[412]: 0.030617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[413]: 0.030629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[414]: 0.030643175 - core[0].svIdle(17), plen 0: [] -EVENT[415]: 0.030747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[416]: 0.030756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[417]: 0.030770600 - core[1].svIdle(17), plen 0: [] -EVENT[418]: 0.031617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[419]: 0.031629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[420]: 0.031643125 - core[0].svIdle(17), plen 0: [] -EVENT[421]: 0.031747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[422]: 0.031757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[423]: 0.031770775 - core[1].svIdle(17), plen 0: [] -EVENT[424]: 0.032617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[425]: 0.032629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[426]: 0.032643125 - core[0].svIdle(17), plen 0: [] -EVENT[427]: 0.032747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[428]: 0.032756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[429]: 0.032770600 - core[1].svIdle(17), plen 0: [] -EVENT[430]: 0.033617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[431]: 0.033629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[432]: 0.033638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[433]: 0.033652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[434]: 0.033675650 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073447564, size: 4, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.033675650] HEAP: Allocated 4 bytes @ 0x3ffb828c from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[435]: 0.033690725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[436]: 0.033704800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[437]: 0.033747750 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[438]: 0.033768500 - core[0].svPrint(26), plen 69: [msg: I (360) example: Task[0x3ffb7f40]: allocated 4 bytes @ 0x3ffb828c -, lvl: 0, unused: 0] -[0.033768500] LOG: I (360) example: Task[0x3ffb7f40]: allocated 4 bytes @ 0x3ffb828c -EVENT[439]: 0.033777050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[440]: 0.033785700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[441]: 0.033795850 - core[1].svIdle(17), plen 0: [] -EVENT[442]: 0.033806650 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[443]: 0.033819650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[444]: 0.033828200 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[445]: 0.033836125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[446]: 0.033844675 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[447]: 0.033857300 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[448]: 0.033865675 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[449]: 0.033874000 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[450]: 0.033882875 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[451]: 0.033892275 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[452]: 0.033901550 - core[0].svIdle(17), plen 0: [] -EVENT[453]: 0.033916375 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[454]: 0.033964325 - core[1].svPrint(26), plen 63: [msg: I (360) example: Task[0x3ffb8124]: free memory @ 0x3ffb828c -, lvl: 0, unused: 0] -[0.033964325] LOG: I (360) example: Task[0x3ffb8124]: free memory @ 0x3ffb828c -EVENT[455]: 0.033982750 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073447564, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.033982750] HEAP: Freed bytes @ 0x3ffb828c from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[456]: 0.034000500 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[457]: 0.034013250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[458]: 0.034022025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[459]: 0.034037450 - core[1].svIdle(17), plen 0: [] -EVENT[460]: 0.034617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[461]: 0.034629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[462]: 0.034638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[463]: 0.034653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[464]: 0.034676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 8, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.034676950] HEAP: Allocated 8 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[465]: 0.034689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[466]: 0.034703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[467]: 0.034759525 - core[0].svPrint(26), plen 69: [msg: I (361) example: Task[0x3ffb82a0]: allocated 8 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.034759525] LOG: I (361) example: Task[0x3ffb82a0]: allocated 8 bytes @ 0x3ffb87e4 -EVENT[468]: 0.034771200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[469]: 0.034779850 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[470]: 0.034789125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[471]: 0.034798250 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[472]: 0.034812925 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[473]: 0.034822950 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[474]: 0.034831875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[475]: 0.034840350 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[476]: 0.034848375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[477]: 0.034858275 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[478]: 0.034867325 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[479]: 0.034875800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[480]: 0.034885300 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[481]: 0.034894425 - core[0].svIdle(17), plen 0: [] -EVENT[482]: 0.034903525 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[483]: 0.034917750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[484]: 0.034965800 - core[1].svPrint(26), plen 63: [msg: I (361) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.034965800] LOG: I (361) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[485]: 0.034981150 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.034981150] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[486]: 0.035002800 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[487]: 0.035015500 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[488]: 0.035024300 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[489]: 0.035039875 - core[1].svIdle(17), plen 0: [] -EVENT[490]: 0.035617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[491]: 0.035629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[492]: 0.035638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[493]: 0.035652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[494]: 0.035676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 12, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.035676925] HEAP: Allocated 12 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[495]: 0.035689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[496]: 0.035703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[497]: 0.035747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[498]: 0.035768650 - core[0].svPrint(26), plen 70: [msg: I (362) example: Task[0x3ffb8600]: allocated 12 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.035768650] LOG: I (362) example: Task[0x3ffb8600]: allocated 12 bytes @ 0x3ffb87e4 -EVENT[499]: 0.035776850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[500]: 0.035785000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[501]: 0.035795725 - core[1].svIdle(17), plen 0: [] -EVENT[502]: 0.035806500 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[503]: 0.035819525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[504]: 0.035828225 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[505]: 0.035836150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[506]: 0.035844675 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[507]: 0.035857500 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[508]: 0.035865900 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[509]: 0.035878125 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[510]: 0.035886175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[511]: 0.035894625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[512]: 0.035904725 - core[0].svIdle(17), plen 0: [] -EVENT[513]: 0.035919675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[514]: 0.035967725 - core[1].svPrint(26), plen 63: [msg: I (362) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.035967725] LOG: I (362) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[515]: 0.035983075 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.035983075] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[516]: 0.036001650 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[517]: 0.036014500 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[518]: 0.036023250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[519]: 0.036038700 - core[1].svIdle(17), plen 0: [] -EVENT[520]: 0.036617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[521]: 0.036629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[522]: 0.036643250 - core[0].svIdle(17), plen 0: [] -EVENT[523]: 0.036747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[524]: 0.036756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[525]: 0.036770600 - core[1].svIdle(17), plen 0: [] -EVENT[526]: 0.037617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[527]: 0.037629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[528]: 0.037643175 - core[0].svIdle(17), plen 0: [] -EVENT[529]: 0.037747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[530]: 0.037756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[531]: 0.037770600 - core[1].svIdle(17), plen 0: [] -EVENT[532]: 0.038617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[533]: 0.038629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[534]: 0.038643125 - core[0].svIdle(17), plen 0: [] -EVENT[535]: 0.038747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[536]: 0.038757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[537]: 0.038770775 - core[1].svIdle(17), plen 0: [] -EVENT[538]: 0.039617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[539]: 0.039629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[540]: 0.039643125 - core[0].svIdle(17), plen 0: [] -EVENT[541]: 0.039747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[542]: 0.039756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[543]: 0.039770600 - core[1].svIdle(17), plen 0: [] -EVENT[544]: 0.040617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[545]: 0.040632575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[546]: 0.040646200 - core[0].svIdle(17), plen 0: [] -EVENT[547]: 0.040747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[548]: 0.040756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[549]: 0.040770600 - core[1].svIdle(17), plen 0: [] -EVENT[550]: 0.041617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[551]: 0.041629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[552]: 0.041643125 - core[0].svIdle(17), plen 0: [] -EVENT[553]: 0.041747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[554]: 0.041757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[555]: 0.041770775 - core[1].svIdle(17), plen 0: [] -EVENT[556]: 0.042617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[557]: 0.042629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[558]: 0.042643125 - core[0].svIdle(17), plen 0: [] -EVENT[559]: 0.042747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[560]: 0.042756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[561]: 0.042770600 - core[1].svIdle(17), plen 0: [] -EVENT[562]: 0.043617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[563]: 0.043629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[564]: 0.043643250 - core[0].svIdle(17), plen 0: [] -EVENT[565]: 0.043747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[566]: 0.043756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[567]: 0.043770600 - core[1].svIdle(17), plen 0: [] -EVENT[568]: 0.044617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[569]: 0.044629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[570]: 0.044643175 - core[0].svIdle(17), plen 0: [] -EVENT[571]: 0.044747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[572]: 0.044756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[573]: 0.044770600 - core[1].svIdle(17), plen 0: [] -EVENT[574]: 0.045617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[575]: 0.045629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[576]: 0.045643125 - core[0].svIdle(17), plen 0: [] -EVENT[577]: 0.045747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[578]: 0.045757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[579]: 0.045770775 - core[1].svIdle(17), plen 0: [] -EVENT[580]: 0.046617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[581]: 0.046629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[582]: 0.046643125 - core[0].svIdle(17), plen 0: [] -EVENT[583]: 0.046747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[584]: 0.046756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[585]: 0.046770600 - core[1].svIdle(17), plen 0: [] -EVENT[586]: 0.047617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[587]: 0.047629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[588]: 0.047643250 - core[0].svIdle(17), plen 0: [] -EVENT[589]: 0.047747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[590]: 0.047756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[591]: 0.047770600 - core[1].svIdle(17), plen 0: [] -EVENT[592]: 0.048617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[593]: 0.048629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[594]: 0.048643175 - core[0].svIdle(17), plen 0: [] -EVENT[595]: 0.048747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[596]: 0.048756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[597]: 0.048770600 - core[1].svIdle(17), plen 0: [] -EVENT[598]: 0.049617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[599]: 0.049629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[600]: 0.049643125 - core[0].svIdle(17), plen 0: [] -EVENT[601]: 0.049747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[602]: 0.049757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[603]: 0.049770775 - core[1].svIdle(17), plen 0: [] -EVENT[604]: 0.050617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[605]: 0.050629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[606]: 0.050643125 - core[0].svIdle(17), plen 0: [] -EVENT[607]: 0.050747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[608]: 0.050756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[609]: 0.050770600 - core[1].svIdle(17), plen 0: [] -EVENT[610]: 0.051617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[611]: 0.051629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[612]: 0.051643250 - core[0].svIdle(17), plen 0: [] -EVENT[613]: 0.051747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[614]: 0.051756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[615]: 0.051770600 - core[1].svIdle(17), plen 0: [] -EVENT[616]: 0.052617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[617]: 0.052631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[618]: 0.052645550 - core[0].svIdle(17), plen 0: [] -EVENT[619]: 0.052747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[620]: 0.052756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[621]: 0.052770600 - core[1].svIdle(17), plen 0: [] -EVENT[622]: 0.053617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[623]: 0.053629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[624]: 0.053643125 - core[0].svIdle(17), plen 0: [] -EVENT[625]: 0.053747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[626]: 0.053757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[627]: 0.053770775 - core[1].svIdle(17), plen 0: [] -EVENT[628]: 0.054617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[629]: 0.054629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[630]: 0.054643125 - core[0].svIdle(17), plen 0: [] -EVENT[631]: 0.054747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[632]: 0.054756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[633]: 0.054770600 - core[1].svIdle(17), plen 0: [] -EVENT[634]: 0.055617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[635]: 0.055629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[636]: 0.055643250 - core[0].svIdle(17), plen 0: [] -EVENT[637]: 0.055747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[638]: 0.055756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[639]: 0.055770600 - core[1].svIdle(17), plen 0: [] -EVENT[640]: 0.056617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[641]: 0.056629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[642]: 0.056643175 - core[0].svIdle(17), plen 0: [] -EVENT[643]: 0.056747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[644]: 0.056756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[645]: 0.056770600 - core[1].svIdle(17), plen 0: [] -EVENT[646]: 0.057617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[647]: 0.057629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[648]: 0.057643125 - core[0].svIdle(17), plen 0: [] -EVENT[649]: 0.057747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[650]: 0.057757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[651]: 0.057770775 - core[1].svIdle(17), plen 0: [] -EVENT[652]: 0.058617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[653]: 0.058629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[654]: 0.058643125 - core[0].svIdle(17), plen 0: [] -EVENT[655]: 0.058747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[656]: 0.058756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[657]: 0.058770600 - core[1].svIdle(17), plen 0: [] -EVENT[658]: 0.059617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[659]: 0.059629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[660]: 0.059643250 - core[0].svIdle(17), plen 0: [] -EVENT[661]: 0.059747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[662]: 0.059756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[663]: 0.059770600 - core[1].svIdle(17), plen 0: [] -EVENT[664]: 0.060617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[665]: 0.060629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[666]: 0.060643175 - core[0].svIdle(17), plen 0: [] -EVENT[667]: 0.060747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[668]: 0.060756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[669]: 0.060770600 - core[1].svIdle(17), plen 0: [] -EVENT[670]: 0.061617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[671]: 0.061629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[672]: 0.061643125 - core[0].svIdle(17), plen 0: [] -EVENT[673]: 0.061747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[674]: 0.061757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[675]: 0.061770775 - core[1].svIdle(17), plen 0: [] -EVENT[676]: 0.062617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[677]: 0.062629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[678]: 0.062643125 - core[0].svIdle(17), plen 0: [] -EVENT[679]: 0.062747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[680]: 0.062756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[681]: 0.062770600 - core[1].svIdle(17), plen 0: [] -EVENT[682]: 0.063617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[683]: 0.063629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[684]: 0.063638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[685]: 0.063652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[686]: 0.063676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 6, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.063676950] HEAP: Allocated 6 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[687]: 0.063692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[688]: 0.063706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[689]: 0.063747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[690]: 0.063768375 - core[0].svPrint(26), plen 69: [msg: I (390) example: Task[0x3ffb7f40]: allocated 6 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.063768375] LOG: I (390) example: Task[0x3ffb7f40]: allocated 6 bytes @ 0x3ffb87e4 -EVENT[691]: 0.063776875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[692]: 0.063785525 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[693]: 0.063795675 - core[1].svIdle(17), plen 0: [] -EVENT[694]: 0.063806450 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[695]: 0.063819475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[696]: 0.063828000 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[697]: 0.063835950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[698]: 0.063844475 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[699]: 0.063857100 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[700]: 0.063865500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[701]: 0.063873800 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[702]: 0.063882675 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[703]: 0.063892075 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[704]: 0.063901375 - core[0].svIdle(17), plen 0: [] -EVENT[705]: 0.063916200 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[706]: 0.063964125 - core[1].svPrint(26), plen 63: [msg: I (390) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.063964125] LOG: I (390) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[707]: 0.063982650 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.063982650] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[708]: 0.064001350 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[709]: 0.064014100 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[710]: 0.064022875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[711]: 0.064038300 - core[1].svIdle(17), plen 0: [] -EVENT[712]: 0.064617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[713]: 0.064629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[714]: 0.064638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[715]: 0.064653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[716]: 0.064676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 12, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.064676950] HEAP: Allocated 12 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[717]: 0.064689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[718]: 0.064703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[719]: 0.064747575 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[720]: 0.064768525 - core[0].svPrint(26), plen 70: [msg: I (391) example: Task[0x3ffb82a0]: allocated 12 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.064768525] LOG: I (391) example: Task[0x3ffb82a0]: allocated 12 bytes @ 0x3ffb87e4 -EVENT[721]: 0.064780200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[722]: 0.064788400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[723]: 0.064798825 - core[1].svIdle(17), plen 0: [] -EVENT[724]: 0.064809700 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[725]: 0.064822650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[726]: 0.064831350 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[727]: 0.064839275 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[728]: 0.064847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[729]: 0.064860550 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[730]: 0.064868925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[731]: 0.064877225 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[732]: 0.064885975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[733]: 0.064895400 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[734]: 0.064904675 - core[0].svIdle(17), plen 0: [] -EVENT[735]: 0.064919500 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[736]: 0.064967500 - core[1].svPrint(26), plen 63: [msg: I (391) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.064967500] LOG: I (391) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[737]: 0.064983050 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.064983050] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[738]: 0.065004025 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[739]: 0.065016700 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[740]: 0.065025500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[741]: 0.065041075 - core[1].svIdle(17), plen 0: [] -EVENT[742]: 0.065617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[743]: 0.065629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[744]: 0.065638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[745]: 0.065652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[746]: 0.065676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 18, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.065676925] HEAP: Allocated 18 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[747]: 0.065689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[748]: 0.065703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[749]: 0.065747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[750]: 0.065768650 - core[0].svPrint(26), plen 70: [msg: I (392) example: Task[0x3ffb8600]: allocated 18 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.065768650] LOG: I (392) example: Task[0x3ffb8600]: allocated 18 bytes @ 0x3ffb87e4 -EVENT[751]: 0.065776850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[752]: 0.065785000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[753]: 0.065795725 - core[1].svIdle(17), plen 0: [] -EVENT[754]: 0.065806500 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[755]: 0.065819525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[756]: 0.065828225 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[757]: 0.065836150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[758]: 0.065844675 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[759]: 0.065857500 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[760]: 0.065865900 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[761]: 0.065877100 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[762]: 0.065885275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[763]: 0.065893650 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[764]: 0.065903900 - core[0].svIdle(17), plen 0: [] -EVENT[765]: 0.065918850 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[766]: 0.065966900 - core[1].svPrint(26), plen 63: [msg: I (392) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.065966900] LOG: I (392) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[767]: 0.065982250 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.065982250] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[768]: 0.066000825 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[769]: 0.066013675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[770]: 0.066022425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[771]: 0.066037875 - core[1].svIdle(17), plen 0: [] -EVENT[772]: 0.066617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[773]: 0.066629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[774]: 0.066643250 - core[0].svIdle(17), plen 0: [] -EVENT[775]: 0.066747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[776]: 0.066756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[777]: 0.066770600 - core[1].svIdle(17), plen 0: [] -EVENT[778]: 0.067617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[779]: 0.067629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[780]: 0.067643175 - core[0].svIdle(17), plen 0: [] -EVENT[781]: 0.067747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[782]: 0.067756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[783]: 0.067770600 - core[1].svIdle(17), plen 0: [] -EVENT[784]: 0.068617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[785]: 0.068629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[786]: 0.068643125 - core[0].svIdle(17), plen 0: [] -EVENT[787]: 0.068747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[788]: 0.068757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[789]: 0.068770775 - core[1].svIdle(17), plen 0: [] -EVENT[790]: 0.069617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[791]: 0.069629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[792]: 0.069643125 - core[0].svIdle(17), plen 0: [] -EVENT[793]: 0.069747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[794]: 0.069756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[795]: 0.069770600 - core[1].svIdle(17), plen 0: [] -EVENT[796]: 0.070617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[797]: 0.070632575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[798]: 0.070646200 - core[0].svIdle(17), plen 0: [] -EVENT[799]: 0.070747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[800]: 0.070756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[801]: 0.070770600 - core[1].svIdle(17), plen 0: [] -EVENT[802]: 0.071617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[803]: 0.071629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[804]: 0.071643125 - core[0].svIdle(17), plen 0: [] -EVENT[805]: 0.071747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[806]: 0.071757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[807]: 0.071770775 - core[1].svIdle(17), plen 0: [] -EVENT[808]: 0.072617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[809]: 0.072629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[810]: 0.072643125 - core[0].svIdle(17), plen 0: [] -EVENT[811]: 0.072747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[812]: 0.072756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[813]: 0.072770600 - core[1].svIdle(17), plen 0: [] -EVENT[814]: 0.073617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[815]: 0.073629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[816]: 0.073643250 - core[0].svIdle(17), plen 0: [] -EVENT[817]: 0.073747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[818]: 0.073756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[819]: 0.073770600 - core[1].svIdle(17), plen 0: [] -EVENT[820]: 0.074617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[821]: 0.074629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[822]: 0.074643175 - core[0].svIdle(17), plen 0: [] -EVENT[823]: 0.074747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[824]: 0.074756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[825]: 0.074770600 - core[1].svIdle(17), plen 0: [] -EVENT[826]: 0.075617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[827]: 0.075629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[828]: 0.075643125 - core[0].svIdle(17), plen 0: [] -EVENT[829]: 0.075747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[830]: 0.075757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[831]: 0.075770775 - core[1].svIdle(17), plen 0: [] -EVENT[832]: 0.076617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[833]: 0.076629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[834]: 0.076643125 - core[0].svIdle(17), plen 0: [] -EVENT[835]: 0.076747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[836]: 0.076756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[837]: 0.076770600 - core[1].svIdle(17), plen 0: [] -EVENT[838]: 0.077617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[839]: 0.077629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[840]: 0.077643250 - core[0].svIdle(17), plen 0: [] -EVENT[841]: 0.077747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[842]: 0.077756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[843]: 0.077770600 - core[1].svIdle(17), plen 0: [] -EVENT[844]: 0.078617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[845]: 0.078629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[846]: 0.078643175 - core[0].svIdle(17), plen 0: [] -EVENT[847]: 0.078747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[848]: 0.078756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[849]: 0.078770600 - core[1].svIdle(17), plen 0: [] -EVENT[850]: 0.079617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[851]: 0.079629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[852]: 0.079643125 - core[0].svIdle(17), plen 0: [] -EVENT[853]: 0.079747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[854]: 0.079757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[855]: 0.079770775 - core[1].svIdle(17), plen 0: [] -EVENT[856]: 0.080617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[857]: 0.080629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[858]: 0.080643125 - core[0].svIdle(17), plen 0: [] -EVENT[859]: 0.080747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[860]: 0.080756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[861]: 0.080770600 - core[1].svIdle(17), plen 0: [] -EVENT[862]: 0.081617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[863]: 0.081629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[864]: 0.081643250 - core[0].svIdle(17), plen 0: [] -EVENT[865]: 0.081747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[866]: 0.081756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[867]: 0.081770600 - core[1].svIdle(17), plen 0: [] -EVENT[868]: 0.082617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[869]: 0.082632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[870]: 0.082646225 - core[0].svIdle(17), plen 0: [] -EVENT[871]: 0.082747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[872]: 0.082756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[873]: 0.082770600 - core[1].svIdle(17), plen 0: [] -EVENT[874]: 0.083617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[875]: 0.083629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[876]: 0.083643125 - core[0].svIdle(17), plen 0: [] -EVENT[877]: 0.083747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[878]: 0.083757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[879]: 0.083770775 - core[1].svIdle(17), plen 0: [] -EVENT[880]: 0.084617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[881]: 0.084629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[882]: 0.084643125 - core[0].svIdle(17), plen 0: [] -EVENT[883]: 0.084747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[884]: 0.084756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[885]: 0.084770600 - core[1].svIdle(17), plen 0: [] -EVENT[886]: 0.085617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[887]: 0.085629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[888]: 0.085643250 - core[0].svIdle(17), plen 0: [] -EVENT[889]: 0.085747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[890]: 0.085756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[891]: 0.085770600 - core[1].svIdle(17), plen 0: [] -EVENT[892]: 0.086617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[893]: 0.086629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[894]: 0.086643175 - core[0].svIdle(17), plen 0: [] -EVENT[895]: 0.086747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[896]: 0.086756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[897]: 0.086770600 - core[1].svIdle(17), plen 0: [] -EVENT[898]: 0.087617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[899]: 0.087629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[900]: 0.087643125 - core[0].svIdle(17), plen 0: [] -EVENT[901]: 0.087747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[902]: 0.087757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[903]: 0.087770775 - core[1].svIdle(17), plen 0: [] -EVENT[904]: 0.088617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[905]: 0.088629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[906]: 0.088643125 - core[0].svIdle(17), plen 0: [] -EVENT[907]: 0.088747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[908]: 0.088756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[909]: 0.088770600 - core[1].svIdle(17), plen 0: [] -EVENT[910]: 0.089617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[911]: 0.089629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[912]: 0.089643250 - core[0].svIdle(17), plen 0: [] -EVENT[913]: 0.089747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[914]: 0.089756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[915]: 0.089770600 - core[1].svIdle(17), plen 0: [] -EVENT[916]: 0.090617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[917]: 0.090629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[918]: 0.090643175 - core[0].svIdle(17), plen 0: [] -EVENT[919]: 0.090747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[920]: 0.090756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[921]: 0.090770600 - core[1].svIdle(17), plen 0: [] -EVENT[922]: 0.091617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[923]: 0.091629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[924]: 0.091643125 - core[0].svIdle(17), plen 0: [] -EVENT[925]: 0.091747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[926]: 0.091757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[927]: 0.091770775 - core[1].svIdle(17), plen 0: [] -EVENT[928]: 0.092617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[929]: 0.092629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[930]: 0.092643125 - core[0].svIdle(17), plen 0: [] -EVENT[931]: 0.092747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[932]: 0.092756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[933]: 0.092770600 - core[1].svIdle(17), plen 0: [] -EVENT[934]: 0.093617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[935]: 0.093629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[936]: 0.093638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[937]: 0.093652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[938]: 0.093676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 8, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.093676950] HEAP: Allocated 8 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[939]: 0.093692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[940]: 0.093706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[941]: 0.093747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[942]: 0.093768375 - core[0].svPrint(26), plen 69: [msg: I (420) example: Task[0x3ffb7f40]: allocated 8 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.093768375] LOG: I (420) example: Task[0x3ffb7f40]: allocated 8 bytes @ 0x3ffb87e4 -EVENT[943]: 0.093776875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[944]: 0.093785525 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[945]: 0.093795675 - core[1].svIdle(17), plen 0: [] -EVENT[946]: 0.093806450 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[947]: 0.093819475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[948]: 0.093828000 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[949]: 0.093835950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[950]: 0.093844475 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[951]: 0.093857100 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[952]: 0.093865500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[953]: 0.093873800 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[954]: 0.093882675 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[955]: 0.093892075 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[956]: 0.093901375 - core[0].svIdle(17), plen 0: [] -EVENT[957]: 0.093916200 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[958]: 0.093964125 - core[1].svPrint(26), plen 63: [msg: I (420) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.093964125] LOG: I (420) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[959]: 0.093982000 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.093982000] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[960]: 0.094000700 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[961]: 0.094013450 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[962]: 0.094022225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[963]: 0.094037650 - core[1].svIdle(17), plen 0: [] -EVENT[964]: 0.094617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[965]: 0.094629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[966]: 0.094638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[967]: 0.094653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[968]: 0.094676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 16, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.094676950] HEAP: Allocated 16 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[969]: 0.094689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[970]: 0.094703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[971]: 0.094747575 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[972]: 0.094768525 - core[0].svPrint(26), plen 70: [msg: I (421) example: Task[0x3ffb82a0]: allocated 16 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.094768525] LOG: I (421) example: Task[0x3ffb82a0]: allocated 16 bytes @ 0x3ffb87e4 -EVENT[973]: 0.094779775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[974]: 0.094787775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[975]: 0.094798525 - core[1].svIdle(17), plen 0: [] -EVENT[976]: 0.094809375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[977]: 0.094822325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[978]: 0.094831050 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[979]: 0.094838975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[980]: 0.094847525 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[981]: 0.094860225 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[982]: 0.094868625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[983]: 0.094876925 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[984]: 0.094885650 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[985]: 0.094895100 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[986]: 0.094904350 - core[0].svIdle(17), plen 0: [] -EVENT[987]: 0.094919175 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[988]: 0.094967175 - core[1].svPrint(26), plen 63: [msg: I (421) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.094967175] LOG: I (421) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[989]: 0.094982750 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.094982750] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[990]: 0.095004300 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[991]: 0.095016975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[992]: 0.095025775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[993]: 0.095041350 - core[1].svIdle(17), plen 0: [] -EVENT[994]: 0.095617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[995]: 0.095629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[996]: 0.095638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[997]: 0.095652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[998]: 0.095676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 24, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.095676925] HEAP: Allocated 24 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[999]: 0.095689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1000]: 0.095703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1001]: 0.095747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1002]: 0.095768650 - core[0].svPrint(26), plen 70: [msg: I (422) example: Task[0x3ffb8600]: allocated 24 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.095768650] LOG: I (422) example: Task[0x3ffb8600]: allocated 24 bytes @ 0x3ffb87e4 -EVENT[1003]: 0.095776850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1004]: 0.095785000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1005]: 0.095795725 - core[1].svIdle(17), plen 0: [] -EVENT[1006]: 0.095806500 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[1007]: 0.095819525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1008]: 0.095828225 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1009]: 0.095836150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1010]: 0.095844675 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[1011]: 0.095857500 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[1012]: 0.095865900 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1013]: 0.095878125 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[1014]: 0.095886175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1015]: 0.095894625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1016]: 0.095904725 - core[0].svIdle(17), plen 0: [] -EVENT[1017]: 0.095919675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1018]: 0.095967725 - core[1].svPrint(26), plen 63: [msg: I (422) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.095967725] LOG: I (422) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[1019]: 0.095983075 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.095983075] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1020]: 0.096001650 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[1021]: 0.096014500 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1022]: 0.096023250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1023]: 0.096038700 - core[1].svIdle(17), plen 0: [] -EVENT[1024]: 0.096617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1025]: 0.096629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1026]: 0.096643250 - core[0].svIdle(17), plen 0: [] -EVENT[1027]: 0.096747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1028]: 0.096756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1029]: 0.096770600 - core[1].svIdle(17), plen 0: [] -EVENT[1030]: 0.097617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1031]: 0.097629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1032]: 0.097643175 - core[0].svIdle(17), plen 0: [] -EVENT[1033]: 0.097747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1034]: 0.097756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1035]: 0.097770600 - core[1].svIdle(17), plen 0: [] -EVENT[1036]: 0.098617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1037]: 0.098629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1038]: 0.098643125 - core[0].svIdle(17), plen 0: [] -EVENT[1039]: 0.098747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1040]: 0.098757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1041]: 0.098770775 - core[1].svIdle(17), plen 0: [] -EVENT[1042]: 0.099617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1043]: 0.099629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1044]: 0.099643125 - core[0].svIdle(17), plen 0: [] -EVENT[1045]: 0.099747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1046]: 0.099756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1047]: 0.099770600 - core[1].svIdle(17), plen 0: [] -EVENT[1048]: 0.100617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1049]: 0.100632575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1050]: 0.100646200 - core[0].svIdle(17), plen 0: [] -EVENT[1051]: 0.100747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1052]: 0.100756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1053]: 0.100770600 - core[1].svIdle(17), plen 0: [] -EVENT[1054]: 0.101617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1055]: 0.101629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1056]: 0.101643125 - core[0].svIdle(17), plen 0: [] -EVENT[1057]: 0.101747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1058]: 0.101757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1059]: 0.101770775 - core[1].svIdle(17), plen 0: [] -EVENT[1060]: 0.102617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1061]: 0.102629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1062]: 0.102643125 - core[0].svIdle(17), plen 0: [] -EVENT[1063]: 0.102747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1064]: 0.102756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1065]: 0.102770600 - core[1].svIdle(17), plen 0: [] -EVENT[1066]: 0.103617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1067]: 0.103629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1068]: 0.103643250 - core[0].svIdle(17), plen 0: [] -EVENT[1069]: 0.103747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1070]: 0.103756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1071]: 0.103770600 - core[1].svIdle(17), plen 0: [] -EVENT[1072]: 0.104617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1073]: 0.104629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1074]: 0.104643175 - core[0].svIdle(17), plen 0: [] -EVENT[1075]: 0.104747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1076]: 0.104756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1077]: 0.104770600 - core[1].svIdle(17), plen 0: [] -EVENT[1078]: 0.105617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1079]: 0.105629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1080]: 0.105643125 - core[0].svIdle(17), plen 0: [] -EVENT[1081]: 0.105747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1082]: 0.105757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1083]: 0.105770775 - core[1].svIdle(17), plen 0: [] -EVENT[1084]: 0.106617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1085]: 0.106629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1086]: 0.106643125 - core[0].svIdle(17), plen 0: [] -EVENT[1087]: 0.106747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1088]: 0.106756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1089]: 0.106770600 - core[1].svIdle(17), plen 0: [] -EVENT[1090]: 0.107617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1091]: 0.107629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1092]: 0.107643250 - core[0].svIdle(17), plen 0: [] -EVENT[1093]: 0.107747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1094]: 0.107756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1095]: 0.107770600 - core[1].svIdle(17), plen 0: [] -EVENT[1096]: 0.108617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1097]: 0.108629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1098]: 0.108643175 - core[0].svIdle(17), plen 0: [] -EVENT[1099]: 0.108747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1100]: 0.108756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1101]: 0.108770600 - core[1].svIdle(17), plen 0: [] -EVENT[1102]: 0.109617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1103]: 0.109629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1104]: 0.109643125 - core[0].svIdle(17), plen 0: [] -EVENT[1105]: 0.109747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1106]: 0.109757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1107]: 0.109770775 - core[1].svIdle(17), plen 0: [] -EVENT[1108]: 0.110617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1109]: 0.110629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1110]: 0.110643125 - core[0].svIdle(17), plen 0: [] -EVENT[1111]: 0.110747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1112]: 0.110756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1113]: 0.110770600 - core[1].svIdle(17), plen 0: [] -EVENT[1114]: 0.111617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1115]: 0.111629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1116]: 0.111643250 - core[0].svIdle(17), plen 0: [] -EVENT[1117]: 0.111747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1118]: 0.111756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1119]: 0.111770600 - core[1].svIdle(17), plen 0: [] -EVENT[1120]: 0.112617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1121]: 0.112632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1122]: 0.112646225 - core[0].svIdle(17), plen 0: [] -EVENT[1123]: 0.112747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1124]: 0.112756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1125]: 0.112770600 - core[1].svIdle(17), plen 0: [] -EVENT[1126]: 0.113617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1127]: 0.113629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1128]: 0.113643125 - core[0].svIdle(17), plen 0: [] -EVENT[1129]: 0.113747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1130]: 0.113757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1131]: 0.113770775 - core[1].svIdle(17), plen 0: [] -EVENT[1132]: 0.114617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1133]: 0.114629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1134]: 0.114643125 - core[0].svIdle(17), plen 0: [] -EVENT[1135]: 0.114747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1136]: 0.114756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1137]: 0.114770600 - core[1].svIdle(17), plen 0: [] -EVENT[1138]: 0.115617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1139]: 0.115629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1140]: 0.115643250 - core[0].svIdle(17), plen 0: [] -EVENT[1141]: 0.115747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1142]: 0.115756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1143]: 0.115770600 - core[1].svIdle(17), plen 0: [] -EVENT[1144]: 0.116617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1145]: 0.116629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1146]: 0.116643175 - core[0].svIdle(17), plen 0: [] -EVENT[1147]: 0.116747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1148]: 0.116756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1149]: 0.116770600 - core[1].svIdle(17), plen 0: [] -EVENT[1150]: 0.117617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1151]: 0.117629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1152]: 0.117643125 - core[0].svIdle(17), plen 0: [] -EVENT[1153]: 0.117747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1154]: 0.117757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1155]: 0.117770775 - core[1].svIdle(17), plen 0: [] -EVENT[1156]: 0.118617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1157]: 0.118629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1158]: 0.118643125 - core[0].svIdle(17), plen 0: [] -EVENT[1159]: 0.118747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1160]: 0.118756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1161]: 0.118770600 - core[1].svIdle(17), plen 0: [] -EVENT[1162]: 0.119617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1163]: 0.119629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1164]: 0.119643250 - core[0].svIdle(17), plen 0: [] -EVENT[1165]: 0.119747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1166]: 0.119756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1167]: 0.119770600 - core[1].svIdle(17), plen 0: [] -EVENT[1168]: 0.120617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1169]: 0.120629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1170]: 0.120643175 - core[0].svIdle(17), plen 0: [] -EVENT[1171]: 0.120747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1172]: 0.120756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1173]: 0.120770600 - core[1].svIdle(17), plen 0: [] -EVENT[1174]: 0.121617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1175]: 0.121629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1176]: 0.121643125 - core[0].svIdle(17), plen 0: [] -EVENT[1177]: 0.121747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1178]: 0.121757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1179]: 0.121770775 - core[1].svIdle(17), plen 0: [] -EVENT[1180]: 0.122617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1181]: 0.122629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1182]: 0.122643125 - core[0].svIdle(17), plen 0: [] -EVENT[1183]: 0.122747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1184]: 0.122756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1185]: 0.122770600 - core[1].svIdle(17), plen 0: [] -EVENT[1186]: 0.123617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1187]: 0.123629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[1188]: 0.123638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1189]: 0.123652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[1190]: 0.123676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 10, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.123676950] HEAP: Allocated 10 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1191]: 0.123692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1192]: 0.123706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1193]: 0.123747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1194]: 0.123769100 - core[0].svPrint(26), plen 70: [msg: I (450) example: Task[0x3ffb7f40]: allocated 10 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.123769100] LOG: I (450) example: Task[0x3ffb7f40]: allocated 10 bytes @ 0x3ffb87e4 -EVENT[1195]: 0.123778325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1196]: 0.123786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1197]: 0.123797100 - core[1].svIdle(17), plen 0: [] -EVENT[1198]: 0.123807875 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[1199]: 0.123820900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1200]: 0.123829600 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1201]: 0.123837500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1202]: 0.123846050 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[1203]: 0.123858775 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[1204]: 0.123867150 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1205]: 0.123875425 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[1206]: 0.123884425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1207]: 0.123893800 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1208]: 0.123903025 - core[0].svIdle(17), plen 0: [] -EVENT[1209]: 0.123917950 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1210]: 0.123966000 - core[1].svPrint(26), plen 63: [msg: I (450) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.123966000] LOG: I (450) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[1211]: 0.123984475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.123984475] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1212]: 0.124003175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[1213]: 0.124015925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1214]: 0.124024700 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1215]: 0.124040125 - core[1].svIdle(17), plen 0: [] -EVENT[1216]: 0.124617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1217]: 0.124629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[1218]: 0.124638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1219]: 0.124653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[1220]: 0.124676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 20, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.124676950] HEAP: Allocated 20 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1221]: 0.124689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1222]: 0.124703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1223]: 0.124747575 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1224]: 0.124768525 - core[0].svPrint(26), plen 70: [msg: I (451) example: Task[0x3ffb82a0]: allocated 20 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.124768525] LOG: I (451) example: Task[0x3ffb82a0]: allocated 20 bytes @ 0x3ffb87e4 -EVENT[1225]: 0.124779775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1226]: 0.124787775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1227]: 0.124798525 - core[1].svIdle(17), plen 0: [] -EVENT[1228]: 0.124809375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[1229]: 0.124822325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1230]: 0.124831050 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1231]: 0.124838975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1232]: 0.124847525 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[1233]: 0.124860225 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[1234]: 0.124868625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1235]: 0.124876925 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[1236]: 0.124885650 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1237]: 0.124895100 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1238]: 0.124904350 - core[0].svIdle(17), plen 0: [] -EVENT[1239]: 0.124919175 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1240]: 0.124967175 - core[1].svPrint(26), plen 63: [msg: I (451) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.124967175] LOG: I (451) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[1241]: 0.124982750 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.124982750] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1242]: 0.125004300 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[1243]: 0.125016975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1244]: 0.125025775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1245]: 0.125041350 - core[1].svIdle(17), plen 0: [] -EVENT[1246]: 0.125617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1247]: 0.125629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[1248]: 0.125638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1249]: 0.125652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[1250]: 0.125676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 30, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.125676925] HEAP: Allocated 30 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1251]: 0.125689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1252]: 0.125703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1253]: 0.125747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1254]: 0.125768650 - core[0].svPrint(26), plen 70: [msg: I (452) example: Task[0x3ffb8600]: allocated 30 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.125768650] LOG: I (452) example: Task[0x3ffb8600]: allocated 30 bytes @ 0x3ffb87e4 -EVENT[1255]: 0.125776850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1256]: 0.125785000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1257]: 0.125795725 - core[1].svIdle(17), plen 0: [] -EVENT[1258]: 0.125806500 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[1259]: 0.125819525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1260]: 0.125828225 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1261]: 0.125836150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1262]: 0.125844675 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[1263]: 0.125857500 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[1264]: 0.125865900 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1265]: 0.125878125 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[1266]: 0.125886175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1267]: 0.125894625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1268]: 0.125904725 - core[0].svIdle(17), plen 0: [] -EVENT[1269]: 0.125919675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1270]: 0.125967725 - core[1].svPrint(26), plen 63: [msg: I (452) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.125967725] LOG: I (452) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[1271]: 0.125983075 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.125983075] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1272]: 0.126001650 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[1273]: 0.126014500 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1274]: 0.126023250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1275]: 0.126038700 - core[1].svIdle(17), plen 0: [] -EVENT[1276]: 0.126617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1277]: 0.126629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1278]: 0.126643250 - core[0].svIdle(17), plen 0: [] -EVENT[1279]: 0.126747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1280]: 0.126756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1281]: 0.126770600 - core[1].svIdle(17), plen 0: [] -EVENT[1282]: 0.127617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1283]: 0.127629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1284]: 0.127643175 - core[0].svIdle(17), plen 0: [] -EVENT[1285]: 0.127747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1286]: 0.127756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1287]: 0.127770600 - core[1].svIdle(17), plen 0: [] -EVENT[1288]: 0.128617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1289]: 0.128629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1290]: 0.128643125 - core[0].svIdle(17), plen 0: [] -EVENT[1291]: 0.128747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1292]: 0.128757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1293]: 0.128770775 - core[1].svIdle(17), plen 0: [] -EVENT[1294]: 0.129617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1295]: 0.129629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1296]: 0.129643125 - core[0].svIdle(17), plen 0: [] -EVENT[1297]: 0.129747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1298]: 0.129756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1299]: 0.129770600 - core[1].svIdle(17), plen 0: [] -EVENT[1300]: 0.130617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1301]: 0.130632575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1302]: 0.130646200 - core[0].svIdle(17), plen 0: [] -EVENT[1303]: 0.130747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1304]: 0.130756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1305]: 0.130770600 - core[1].svIdle(17), plen 0: [] -EVENT[1306]: 0.131617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1307]: 0.131629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1308]: 0.131643125 - core[0].svIdle(17), plen 0: [] -EVENT[1309]: 0.131747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1310]: 0.131757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1311]: 0.131770775 - core[1].svIdle(17), plen 0: [] -EVENT[1312]: 0.132617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1313]: 0.132629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1314]: 0.132643125 - core[0].svIdle(17), plen 0: [] -EVENT[1315]: 0.132747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1316]: 0.132756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1317]: 0.132770600 - core[1].svIdle(17), plen 0: [] -EVENT[1318]: 0.133617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1319]: 0.133629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1320]: 0.133643250 - core[0].svIdle(17), plen 0: [] -EVENT[1321]: 0.133747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1322]: 0.133756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1323]: 0.133770600 - core[1].svIdle(17), plen 0: [] -EVENT[1324]: 0.134617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1325]: 0.134629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1326]: 0.134643175 - core[0].svIdle(17), plen 0: [] -EVENT[1327]: 0.134747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1328]: 0.134756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1329]: 0.134770600 - core[1].svIdle(17), plen 0: [] -EVENT[1330]: 0.135617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1331]: 0.135629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1332]: 0.135643125 - core[0].svIdle(17), plen 0: [] -EVENT[1333]: 0.135747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1334]: 0.135757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1335]: 0.135770775 - core[1].svIdle(17), plen 0: [] -EVENT[1336]: 0.136617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1337]: 0.136629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1338]: 0.136643125 - core[0].svIdle(17), plen 0: [] -EVENT[1339]: 0.136747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1340]: 0.136756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1341]: 0.136770600 - core[1].svIdle(17), plen 0: [] -EVENT[1342]: 0.137617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1343]: 0.137629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1344]: 0.137643250 - core[0].svIdle(17), plen 0: [] -EVENT[1345]: 0.137747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1346]: 0.137756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1347]: 0.137770600 - core[1].svIdle(17), plen 0: [] -EVENT[1348]: 0.138617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1349]: 0.138629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1350]: 0.138643175 - core[0].svIdle(17), plen 0: [] -EVENT[1351]: 0.138747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1352]: 0.138756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1353]: 0.138770600 - core[1].svIdle(17), plen 0: [] -EVENT[1354]: 0.139617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1355]: 0.139629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1356]: 0.139643125 - core[0].svIdle(17), plen 0: [] -EVENT[1357]: 0.139747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1358]: 0.139757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1359]: 0.139770775 - core[1].svIdle(17), plen 0: [] -EVENT[1360]: 0.140617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1361]: 0.140629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1362]: 0.140643125 - core[0].svIdle(17), plen 0: [] -EVENT[1363]: 0.140747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1364]: 0.140756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1365]: 0.140770600 - core[1].svIdle(17), plen 0: [] -EVENT[1366]: 0.141617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1367]: 0.141629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1368]: 0.141643250 - core[0].svIdle(17), plen 0: [] -EVENT[1369]: 0.141747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1370]: 0.141756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1371]: 0.141770600 - core[1].svIdle(17), plen 0: [] -EVENT[1372]: 0.142617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1373]: 0.142632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1374]: 0.142646225 - core[0].svIdle(17), plen 0: [] -EVENT[1375]: 0.142747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1376]: 0.142756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1377]: 0.142770600 - core[1].svIdle(17), plen 0: [] -EVENT[1378]: 0.143617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1379]: 0.143629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1380]: 0.143643125 - core[0].svIdle(17), plen 0: [] -EVENT[1381]: 0.143747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1382]: 0.143757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1383]: 0.143770775 - core[1].svIdle(17), plen 0: [] -EVENT[1384]: 0.144617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1385]: 0.144629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1386]: 0.144643125 - core[0].svIdle(17), plen 0: [] -EVENT[1387]: 0.144747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1388]: 0.144756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1389]: 0.144770600 - core[1].svIdle(17), plen 0: [] -EVENT[1390]: 0.145617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1391]: 0.145629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1392]: 0.145643250 - core[0].svIdle(17), plen 0: [] -EVENT[1393]: 0.145747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1394]: 0.145756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1395]: 0.145770600 - core[1].svIdle(17), plen 0: [] -EVENT[1396]: 0.146617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1397]: 0.146629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1398]: 0.146643175 - core[0].svIdle(17), plen 0: [] -EVENT[1399]: 0.146747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1400]: 0.146756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1401]: 0.146770600 - core[1].svIdle(17), plen 0: [] -EVENT[1402]: 0.147617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1403]: 0.147629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1404]: 0.147643125 - core[0].svIdle(17), plen 0: [] -EVENT[1405]: 0.147747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1406]: 0.147757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1407]: 0.147770775 - core[1].svIdle(17), plen 0: [] -EVENT[1408]: 0.148617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1409]: 0.148629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1410]: 0.148643125 - core[0].svIdle(17), plen 0: [] -EVENT[1411]: 0.148747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1412]: 0.148756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1413]: 0.148770600 - core[1].svIdle(17), plen 0: [] -EVENT[1414]: 0.149617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1415]: 0.149629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1416]: 0.149643250 - core[0].svIdle(17), plen 0: [] -EVENT[1417]: 0.149747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1418]: 0.149756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1419]: 0.149770600 - core[1].svIdle(17), plen 0: [] -EVENT[1420]: 0.150617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1421]: 0.150629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1422]: 0.150643175 - core[0].svIdle(17), plen 0: [] -EVENT[1423]: 0.150747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1424]: 0.150756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1425]: 0.150770600 - core[1].svIdle(17), plen 0: [] -EVENT[1426]: 0.151617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1427]: 0.151629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1428]: 0.151643125 - core[0].svIdle(17), plen 0: [] -EVENT[1429]: 0.151747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1430]: 0.151757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1431]: 0.151770775 - core[1].svIdle(17), plen 0: [] -EVENT[1432]: 0.152617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1433]: 0.152629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1434]: 0.152643125 - core[0].svIdle(17), plen 0: [] -EVENT[1435]: 0.152747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1436]: 0.152756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1437]: 0.152770600 - core[1].svIdle(17), plen 0: [] -EVENT[1438]: 0.153617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1439]: 0.153629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[1440]: 0.153638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1441]: 0.153652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[1442]: 0.153676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 12, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.153676950] HEAP: Allocated 12 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1443]: 0.153692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1444]: 0.153706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1445]: 0.153747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1446]: 0.153769100 - core[0].svPrint(26), plen 70: [msg: I (480) example: Task[0x3ffb7f40]: allocated 12 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.153769100] LOG: I (480) example: Task[0x3ffb7f40]: allocated 12 bytes @ 0x3ffb87e4 -EVENT[1447]: 0.153778325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1448]: 0.153786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1449]: 0.153797100 - core[1].svIdle(17), plen 0: [] -EVENT[1450]: 0.153807875 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[1451]: 0.153820900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1452]: 0.153829600 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1453]: 0.153837500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1454]: 0.153846050 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[1455]: 0.153858775 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[1456]: 0.153867150 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1457]: 0.153875425 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[1458]: 0.153884425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1459]: 0.153893800 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1460]: 0.153903025 - core[0].svIdle(17), plen 0: [] -EVENT[1461]: 0.153917950 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1462]: 0.153966000 - core[1].svPrint(26), plen 63: [msg: I (480) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.153966000] LOG: I (480) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[1463]: 0.153984475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.153984475] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1464]: 0.154003175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[1465]: 0.154015925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1466]: 0.154024700 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1467]: 0.154040125 - core[1].svIdle(17), plen 0: [] -EVENT[1468]: 0.154617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1469]: 0.154629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[1470]: 0.154638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1471]: 0.154653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[1472]: 0.154676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 24, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.154676950] HEAP: Allocated 24 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1473]: 0.154689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1474]: 0.154703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1475]: 0.154747575 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1476]: 0.154768525 - core[0].svPrint(26), plen 70: [msg: I (481) example: Task[0x3ffb82a0]: allocated 24 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.154768525] LOG: I (481) example: Task[0x3ffb82a0]: allocated 24 bytes @ 0x3ffb87e4 -EVENT[1477]: 0.154779775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1478]: 0.154787775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1479]: 0.154798525 - core[1].svIdle(17), plen 0: [] -EVENT[1480]: 0.154809375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[1481]: 0.154822325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1482]: 0.154831050 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1483]: 0.154838975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1484]: 0.154847525 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[1485]: 0.154860225 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[1486]: 0.154868625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1487]: 0.154876925 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[1488]: 0.154885650 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1489]: 0.154895100 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1490]: 0.154904350 - core[0].svIdle(17), plen 0: [] -EVENT[1491]: 0.154919175 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1492]: 0.154967175 - core[1].svPrint(26), plen 63: [msg: I (481) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.154967175] LOG: I (481) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[1493]: 0.154982750 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.154982750] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1494]: 0.155004300 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[1495]: 0.155016975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1496]: 0.155025775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1497]: 0.155041350 - core[1].svIdle(17), plen 0: [] -EVENT[1498]: 0.155617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1499]: 0.155629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[1500]: 0.155638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1501]: 0.155652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[1502]: 0.155676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 36, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.155676925] HEAP: Allocated 36 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1503]: 0.155689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1504]: 0.155703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1505]: 0.155747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1506]: 0.155768650 - core[0].svPrint(26), plen 70: [msg: I (482) example: Task[0x3ffb8600]: allocated 36 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.155768650] LOG: I (482) example: Task[0x3ffb8600]: allocated 36 bytes @ 0x3ffb87e4 -EVENT[1507]: 0.155776850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1508]: 0.155785000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1509]: 0.155795725 - core[1].svIdle(17), plen 0: [] -EVENT[1510]: 0.155806500 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[1511]: 0.155819525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1512]: 0.155828225 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1513]: 0.155836150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1514]: 0.155844675 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[1515]: 0.155857500 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[1516]: 0.155865900 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1517]: 0.155878125 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[1518]: 0.155886175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1519]: 0.155894625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1520]: 0.155904725 - core[0].svIdle(17), plen 0: [] -EVENT[1521]: 0.155919675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1522]: 0.155967725 - core[1].svPrint(26), plen 63: [msg: I (482) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.155967725] LOG: I (482) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[1523]: 0.155983075 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.155983075] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1524]: 0.156001650 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[1525]: 0.156014500 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1526]: 0.156023250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1527]: 0.156038700 - core[1].svIdle(17), plen 0: [] -EVENT[1528]: 0.156617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1529]: 0.156629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1530]: 0.156643250 - core[0].svIdle(17), plen 0: [] -EVENT[1531]: 0.156747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1532]: 0.156756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1533]: 0.156770600 - core[1].svIdle(17), plen 0: [] -EVENT[1534]: 0.157617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1535]: 0.157629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1536]: 0.157643175 - core[0].svIdle(17), plen 0: [] -EVENT[1537]: 0.157747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1538]: 0.157756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1539]: 0.157770600 - core[1].svIdle(17), plen 0: [] -EVENT[1540]: 0.158617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1541]: 0.158629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1542]: 0.158643125 - core[0].svIdle(17), plen 0: [] -EVENT[1543]: 0.158747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1544]: 0.158757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1545]: 0.158770775 - core[1].svIdle(17), plen 0: [] -EVENT[1546]: 0.159617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1547]: 0.159629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1548]: 0.159643125 - core[0].svIdle(17), plen 0: [] -EVENT[1549]: 0.159747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1550]: 0.159756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1551]: 0.159770600 - core[1].svIdle(17), plen 0: [] -EVENT[1552]: 0.160617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1553]: 0.160632575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1554]: 0.160646200 - core[0].svIdle(17), plen 0: [] -EVENT[1555]: 0.160747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1556]: 0.160756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1557]: 0.160770600 - core[1].svIdle(17), plen 0: [] -EVENT[1558]: 0.161617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1559]: 0.161629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1560]: 0.161643125 - core[0].svIdle(17), plen 0: [] -EVENT[1561]: 0.161747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1562]: 0.161757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1563]: 0.161770775 - core[1].svIdle(17), plen 0: [] -EVENT[1564]: 0.162617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1565]: 0.162629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1566]: 0.162643125 - core[0].svIdle(17), plen 0: [] -EVENT[1567]: 0.162747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1568]: 0.162756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1569]: 0.162770600 - core[1].svIdle(17), plen 0: [] -EVENT[1570]: 0.163617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1571]: 0.163629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1572]: 0.163643250 - core[0].svIdle(17), plen 0: [] -EVENT[1573]: 0.163747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1574]: 0.163756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1575]: 0.163770600 - core[1].svIdle(17), plen 0: [] -EVENT[1576]: 0.164617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1577]: 0.164629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1578]: 0.164643175 - core[0].svIdle(17), plen 0: [] -EVENT[1579]: 0.164747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1580]: 0.164756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1581]: 0.164770600 - core[1].svIdle(17), plen 0: [] -EVENT[1582]: 0.165617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1583]: 0.165629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1584]: 0.165643125 - core[0].svIdle(17), plen 0: [] -EVENT[1585]: 0.165747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1586]: 0.165757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1587]: 0.165770775 - core[1].svIdle(17), plen 0: [] -EVENT[1588]: 0.166617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1589]: 0.166629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1590]: 0.166643125 - core[0].svIdle(17), plen 0: [] -EVENT[1591]: 0.166747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1592]: 0.166756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1593]: 0.166770600 - core[1].svIdle(17), plen 0: [] -EVENT[1594]: 0.167617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1595]: 0.167629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1596]: 0.167643250 - core[0].svIdle(17), plen 0: [] -EVENT[1597]: 0.167747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1598]: 0.167756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1599]: 0.167770600 - core[1].svIdle(17), plen 0: [] -EVENT[1600]: 0.168617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1601]: 0.168629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1602]: 0.168643175 - core[0].svIdle(17), plen 0: [] -EVENT[1603]: 0.168747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1604]: 0.168756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1605]: 0.168770600 - core[1].svIdle(17), plen 0: [] -EVENT[1606]: 0.169617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1607]: 0.169629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1608]: 0.169643125 - core[0].svIdle(17), plen 0: [] -EVENT[1609]: 0.169747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1610]: 0.169757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1611]: 0.169770775 - core[1].svIdle(17), plen 0: [] -EVENT[1612]: 0.170617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1613]: 0.170629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1614]: 0.170643125 - core[0].svIdle(17), plen 0: [] -EVENT[1615]: 0.170747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1616]: 0.170756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1617]: 0.170770600 - core[1].svIdle(17), plen 0: [] -EVENT[1618]: 0.171617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1619]: 0.171629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1620]: 0.171643250 - core[0].svIdle(17), plen 0: [] -EVENT[1621]: 0.171747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1622]: 0.171756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1623]: 0.171770600 - core[1].svIdle(17), plen 0: [] -EVENT[1624]: 0.172617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1625]: 0.172632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1626]: 0.172646225 - core[0].svIdle(17), plen 0: [] -EVENT[1627]: 0.172747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1628]: 0.172756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1629]: 0.172770600 - core[1].svIdle(17), plen 0: [] -EVENT[1630]: 0.173617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1631]: 0.173629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1632]: 0.173643125 - core[0].svIdle(17), plen 0: [] -EVENT[1633]: 0.173747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1634]: 0.173757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1635]: 0.173770775 - core[1].svIdle(17), plen 0: [] -EVENT[1636]: 0.174617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1637]: 0.174629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1638]: 0.174643125 - core[0].svIdle(17), plen 0: [] -EVENT[1639]: 0.174747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1640]: 0.174756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1641]: 0.174770600 - core[1].svIdle(17), plen 0: [] -EVENT[1642]: 0.175617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1643]: 0.175629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1644]: 0.175643250 - core[0].svIdle(17), plen 0: [] -EVENT[1645]: 0.175747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1646]: 0.175756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1647]: 0.175770600 - core[1].svIdle(17), plen 0: [] -EVENT[1648]: 0.176617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1649]: 0.176629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1650]: 0.176643175 - core[0].svIdle(17), plen 0: [] -EVENT[1651]: 0.176747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1652]: 0.176756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1653]: 0.176770600 - core[1].svIdle(17), plen 0: [] -EVENT[1654]: 0.177617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1655]: 0.177629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1656]: 0.177643125 - core[0].svIdle(17), plen 0: [] -EVENT[1657]: 0.177747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1658]: 0.177757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1659]: 0.177770775 - core[1].svIdle(17), plen 0: [] -EVENT[1660]: 0.178617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1661]: 0.178629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1662]: 0.178643125 - core[0].svIdle(17), plen 0: [] -EVENT[1663]: 0.178747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1664]: 0.178756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1665]: 0.178770600 - core[1].svIdle(17), plen 0: [] -EVENT[1666]: 0.179617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1667]: 0.179629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1668]: 0.179643250 - core[0].svIdle(17), plen 0: [] -EVENT[1669]: 0.179747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1670]: 0.179756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1671]: 0.179770600 - core[1].svIdle(17), plen 0: [] -EVENT[1672]: 0.180617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1673]: 0.180629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1674]: 0.180643175 - core[0].svIdle(17), plen 0: [] -EVENT[1675]: 0.180747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1676]: 0.180756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1677]: 0.180770600 - core[1].svIdle(17), plen 0: [] -EVENT[1678]: 0.181617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1679]: 0.181629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1680]: 0.181643125 - core[0].svIdle(17), plen 0: [] -EVENT[1681]: 0.181747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1682]: 0.181757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1683]: 0.181770775 - core[1].svIdle(17), plen 0: [] -EVENT[1684]: 0.182617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1685]: 0.182629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1686]: 0.182643125 - core[0].svIdle(17), plen 0: [] -EVENT[1687]: 0.182747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1688]: 0.182756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1689]: 0.182770600 - core[1].svIdle(17), plen 0: [] -EVENT[1690]: 0.183617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1691]: 0.183629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[1692]: 0.183638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1693]: 0.183652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[1694]: 0.183676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 14, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.183676950] HEAP: Allocated 14 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1695]: 0.183692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1696]: 0.183706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1697]: 0.183747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1698]: 0.183769100 - core[0].svPrint(26), plen 70: [msg: I (510) example: Task[0x3ffb7f40]: allocated 14 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.183769100] LOG: I (510) example: Task[0x3ffb7f40]: allocated 14 bytes @ 0x3ffb87e4 -EVENT[1699]: 0.183778325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1700]: 0.183786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1701]: 0.183797100 - core[1].svIdle(17), plen 0: [] -EVENT[1702]: 0.183807875 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[1703]: 0.183820900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1704]: 0.183829600 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1705]: 0.183837500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1706]: 0.183846050 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[1707]: 0.183858775 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[1708]: 0.183867150 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1709]: 0.183875425 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[1710]: 0.183884425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1711]: 0.183893800 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1712]: 0.183903025 - core[0].svIdle(17), plen 0: [] -EVENT[1713]: 0.183917950 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1714]: 0.183966000 - core[1].svPrint(26), plen 63: [msg: I (510) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.183966000] LOG: I (510) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[1715]: 0.183984475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.183984475] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1716]: 0.184003175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[1717]: 0.184015925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1718]: 0.184024700 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1719]: 0.184040125 - core[1].svIdle(17), plen 0: [] -EVENT[1720]: 0.184617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1721]: 0.184629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[1722]: 0.184638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1723]: 0.184653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[1724]: 0.184676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 28, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.184676950] HEAP: Allocated 28 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1725]: 0.184689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1726]: 0.184703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1727]: 0.184747575 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1728]: 0.184768525 - core[0].svPrint(26), plen 70: [msg: I (511) example: Task[0x3ffb82a0]: allocated 28 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.184768525] LOG: I (511) example: Task[0x3ffb82a0]: allocated 28 bytes @ 0x3ffb87e4 -EVENT[1729]: 0.184779775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1730]: 0.184787775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1731]: 0.184798525 - core[1].svIdle(17), plen 0: [] -EVENT[1732]: 0.184809375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[1733]: 0.184822325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1734]: 0.184831050 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1735]: 0.184838975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1736]: 0.184847525 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[1737]: 0.184860225 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[1738]: 0.184868625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1739]: 0.184876925 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[1740]: 0.184885650 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1741]: 0.184895100 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1742]: 0.184904350 - core[0].svIdle(17), plen 0: [] -EVENT[1743]: 0.184919175 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1744]: 0.184967175 - core[1].svPrint(26), plen 63: [msg: I (511) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.184967175] LOG: I (511) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[1745]: 0.184982750 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.184982750] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1746]: 0.185004300 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[1747]: 0.185016975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1748]: 0.185025775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1749]: 0.185041350 - core[1].svIdle(17), plen 0: [] -EVENT[1750]: 0.185617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1751]: 0.185629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[1752]: 0.185638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1753]: 0.185652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[1754]: 0.185676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 42, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.185676925] HEAP: Allocated 42 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1755]: 0.185689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1756]: 0.185703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1757]: 0.185747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1758]: 0.185768650 - core[0].svPrint(26), plen 70: [msg: I (512) example: Task[0x3ffb8600]: allocated 42 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.185768650] LOG: I (512) example: Task[0x3ffb8600]: allocated 42 bytes @ 0x3ffb87e4 -EVENT[1759]: 0.185776850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1760]: 0.185785000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1761]: 0.185795725 - core[1].svIdle(17), plen 0: [] -EVENT[1762]: 0.185806500 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[1763]: 0.185819525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1764]: 0.185828225 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1765]: 0.185836150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1766]: 0.185844675 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[1767]: 0.185857500 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[1768]: 0.185865900 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1769]: 0.185878125 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[1770]: 0.185886175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1771]: 0.185894625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1772]: 0.185904725 - core[0].svIdle(17), plen 0: [] -EVENT[1773]: 0.185919675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1774]: 0.185967725 - core[1].svPrint(26), plen 63: [msg: I (512) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.185967725] LOG: I (512) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[1775]: 0.185983075 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.185983075] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1776]: 0.186001650 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[1777]: 0.186014500 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1778]: 0.186023250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1779]: 0.186038700 - core[1].svIdle(17), plen 0: [] -EVENT[1780]: 0.186617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1781]: 0.186629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1782]: 0.186643250 - core[0].svIdle(17), plen 0: [] -EVENT[1783]: 0.186747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1784]: 0.186756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1785]: 0.186770600 - core[1].svIdle(17), plen 0: [] -EVENT[1786]: 0.187617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1787]: 0.187629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1788]: 0.187643175 - core[0].svIdle(17), plen 0: [] -EVENT[1789]: 0.187747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1790]: 0.187756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1791]: 0.187770600 - core[1].svIdle(17), plen 0: [] -EVENT[1792]: 0.188617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1793]: 0.188629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1794]: 0.188643125 - core[0].svIdle(17), plen 0: [] -EVENT[1795]: 0.188747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1796]: 0.188757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1797]: 0.188770775 - core[1].svIdle(17), plen 0: [] -EVENT[1798]: 0.189617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1799]: 0.189629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1800]: 0.189643125 - core[0].svIdle(17), plen 0: [] -EVENT[1801]: 0.189747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1802]: 0.189756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1803]: 0.189770600 - core[1].svIdle(17), plen 0: [] -EVENT[1804]: 0.190617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1805]: 0.190632575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1806]: 0.190646200 - core[0].svIdle(17), plen 0: [] -EVENT[1807]: 0.190747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1808]: 0.190756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1809]: 0.190770600 - core[1].svIdle(17), plen 0: [] -EVENT[1810]: 0.191617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1811]: 0.191629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1812]: 0.191643125 - core[0].svIdle(17), plen 0: [] -EVENT[1813]: 0.191747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1814]: 0.191757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1815]: 0.191770775 - core[1].svIdle(17), plen 0: [] -EVENT[1816]: 0.192617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1817]: 0.192629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1818]: 0.192643125 - core[0].svIdle(17), plen 0: [] -EVENT[1819]: 0.192747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1820]: 0.192756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1821]: 0.192770600 - core[1].svIdle(17), plen 0: [] -EVENT[1822]: 0.193617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1823]: 0.193629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1824]: 0.193643250 - core[0].svIdle(17), plen 0: [] -EVENT[1825]: 0.193747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1826]: 0.193756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1827]: 0.193770600 - core[1].svIdle(17), plen 0: [] -EVENT[1828]: 0.194617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1829]: 0.194629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1830]: 0.194643175 - core[0].svIdle(17), plen 0: [] -EVENT[1831]: 0.194747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1832]: 0.194756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1833]: 0.194770600 - core[1].svIdle(17), plen 0: [] -EVENT[1834]: 0.195617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1835]: 0.195629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1836]: 0.195643125 - core[0].svIdle(17), plen 0: [] -EVENT[1837]: 0.195747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1838]: 0.195757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1839]: 0.195770775 - core[1].svIdle(17), plen 0: [] -EVENT[1840]: 0.196617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1841]: 0.196629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1842]: 0.196643125 - core[0].svIdle(17), plen 0: [] -EVENT[1843]: 0.196747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1844]: 0.196756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1845]: 0.196770600 - core[1].svIdle(17), plen 0: [] -EVENT[1846]: 0.197617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1847]: 0.197629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1848]: 0.197643250 - core[0].svIdle(17), plen 0: [] -EVENT[1849]: 0.197747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1850]: 0.197756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1851]: 0.197770600 - core[1].svIdle(17), plen 0: [] -EVENT[1852]: 0.198617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1853]: 0.198629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1854]: 0.198643175 - core[0].svIdle(17), plen 0: [] -EVENT[1855]: 0.198747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1856]: 0.198756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1857]: 0.198770600 - core[1].svIdle(17), plen 0: [] -EVENT[1858]: 0.199617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1859]: 0.199629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1860]: 0.199643125 - core[0].svIdle(17), plen 0: [] -EVENT[1861]: 0.199747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1862]: 0.199757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1863]: 0.199770775 - core[1].svIdle(17), plen 0: [] -EVENT[1864]: 0.200617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1865]: 0.200629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1866]: 0.200643125 - core[0].svIdle(17), plen 0: [] -EVENT[1867]: 0.200747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1868]: 0.200756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1869]: 0.200770600 - core[1].svIdle(17), plen 0: [] -EVENT[1870]: 0.201617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1871]: 0.201629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1872]: 0.201643250 - core[0].svIdle(17), plen 0: [] -EVENT[1873]: 0.201747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1874]: 0.201756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1875]: 0.201770600 - core[1].svIdle(17), plen 0: [] -EVENT[1876]: 0.202617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1877]: 0.202632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1878]: 0.202646225 - core[0].svIdle(17), plen 0: [] -EVENT[1879]: 0.202747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1880]: 0.202756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1881]: 0.202770600 - core[1].svIdle(17), plen 0: [] -EVENT[1882]: 0.203617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1883]: 0.203629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1884]: 0.203643125 - core[0].svIdle(17), plen 0: [] -EVENT[1885]: 0.203747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1886]: 0.203757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1887]: 0.203770775 - core[1].svIdle(17), plen 0: [] -EVENT[1888]: 0.204617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1889]: 0.204629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1890]: 0.204643125 - core[0].svIdle(17), plen 0: [] -EVENT[1891]: 0.204747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1892]: 0.204756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1893]: 0.204770600 - core[1].svIdle(17), plen 0: [] -EVENT[1894]: 0.205617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1895]: 0.205629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1896]: 0.205643250 - core[0].svIdle(17), plen 0: [] -EVENT[1897]: 0.205747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1898]: 0.205756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1899]: 0.205770600 - core[1].svIdle(17), plen 0: [] -EVENT[1900]: 0.206617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1901]: 0.206629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1902]: 0.206643175 - core[0].svIdle(17), plen 0: [] -EVENT[1903]: 0.206747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1904]: 0.206756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1905]: 0.206770600 - core[1].svIdle(17), plen 0: [] -EVENT[1906]: 0.207617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1907]: 0.207629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1908]: 0.207643125 - core[0].svIdle(17), plen 0: [] -EVENT[1909]: 0.207747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1910]: 0.207757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1911]: 0.207770775 - core[1].svIdle(17), plen 0: [] -EVENT[1912]: 0.208617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1913]: 0.208629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1914]: 0.208643125 - core[0].svIdle(17), plen 0: [] -EVENT[1915]: 0.208747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1916]: 0.208756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1917]: 0.208770600 - core[1].svIdle(17), plen 0: [] -EVENT[1918]: 0.209617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1919]: 0.209629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1920]: 0.209643250 - core[0].svIdle(17), plen 0: [] -EVENT[1921]: 0.209747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1922]: 0.209756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1923]: 0.209770600 - core[1].svIdle(17), plen 0: [] -EVENT[1924]: 0.210617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1925]: 0.210629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1926]: 0.210643175 - core[0].svIdle(17), plen 0: [] -EVENT[1927]: 0.210747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1928]: 0.210756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1929]: 0.210770600 - core[1].svIdle(17), plen 0: [] -EVENT[1930]: 0.211617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1931]: 0.211629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1932]: 0.211643125 - core[0].svIdle(17), plen 0: [] -EVENT[1933]: 0.211747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1934]: 0.211757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1935]: 0.211770775 - core[1].svIdle(17), plen 0: [] -EVENT[1936]: 0.212617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1937]: 0.212629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1938]: 0.212643125 - core[0].svIdle(17), plen 0: [] -EVENT[1939]: 0.212747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1940]: 0.212756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1941]: 0.212770600 - core[1].svIdle(17), plen 0: [] -EVENT[1942]: 0.213617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1943]: 0.213629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[1944]: 0.213638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1945]: 0.213652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[1946]: 0.213676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 16, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.213676950] HEAP: Allocated 16 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1947]: 0.213692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1948]: 0.213706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1949]: 0.213747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1950]: 0.213769100 - core[0].svPrint(26), plen 70: [msg: I (540) example: Task[0x3ffb7f40]: allocated 16 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.213769100] LOG: I (540) example: Task[0x3ffb7f40]: allocated 16 bytes @ 0x3ffb87e4 -EVENT[1951]: 0.213778325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1952]: 0.213786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1953]: 0.213797100 - core[1].svIdle(17), plen 0: [] -EVENT[1954]: 0.213807875 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[1955]: 0.213820900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1956]: 0.213829600 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1957]: 0.213837500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1958]: 0.213846050 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[1959]: 0.213858775 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[1960]: 0.213867150 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1961]: 0.213875425 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[1962]: 0.213884425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1963]: 0.213893800 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1964]: 0.213903025 - core[0].svIdle(17), plen 0: [] -EVENT[1965]: 0.213917950 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1966]: 0.213966000 - core[1].svPrint(26), plen 63: [msg: I (540) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.213966000] LOG: I (540) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[1967]: 0.213984475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.213984475] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1968]: 0.214003175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[1969]: 0.214015925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1970]: 0.214024700 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1971]: 0.214040125 - core[1].svIdle(17), plen 0: [] -EVENT[1972]: 0.214617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1973]: 0.214629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[1974]: 0.214638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1975]: 0.214653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[1976]: 0.214676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 32, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.214676950] HEAP: Allocated 32 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1977]: 0.214689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1978]: 0.214703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1979]: 0.214747575 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1980]: 0.214768525 - core[0].svPrint(26), plen 70: [msg: I (541) example: Task[0x3ffb82a0]: allocated 32 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.214768525] LOG: I (541) example: Task[0x3ffb82a0]: allocated 32 bytes @ 0x3ffb87e4 -EVENT[1981]: 0.214779775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1982]: 0.214787775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1983]: 0.214798525 - core[1].svIdle(17), plen 0: [] -EVENT[1984]: 0.214809375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[1985]: 0.214822325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1986]: 0.214831050 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1987]: 0.214838975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1988]: 0.214847525 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[1989]: 0.214860225 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[1990]: 0.214868625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1991]: 0.214876925 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[1992]: 0.214885650 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1993]: 0.214895100 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1994]: 0.214904350 - core[0].svIdle(17), plen 0: [] -EVENT[1995]: 0.214919175 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1996]: 0.214967175 - core[1].svPrint(26), plen 63: [msg: I (541) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.214967175] LOG: I (541) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[1997]: 0.214982750 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.214982750] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[1998]: 0.215004300 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[1999]: 0.215016975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2000]: 0.215025775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2001]: 0.215041350 - core[1].svIdle(17), plen 0: [] -EVENT[2002]: 0.215617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2003]: 0.215629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[2004]: 0.215638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2005]: 0.215652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[2006]: 0.215676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 48, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.215676925] HEAP: Allocated 48 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2007]: 0.215689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2008]: 0.215703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2009]: 0.215747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2010]: 0.215768650 - core[0].svPrint(26), plen 70: [msg: I (542) example: Task[0x3ffb8600]: allocated 48 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.215768650] LOG: I (542) example: Task[0x3ffb8600]: allocated 48 bytes @ 0x3ffb87e4 -EVENT[2011]: 0.215776850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2012]: 0.215785000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2013]: 0.215795725 - core[1].svIdle(17), plen 0: [] -EVENT[2014]: 0.215806500 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[2015]: 0.215819525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2016]: 0.215828225 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2017]: 0.215836150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2018]: 0.215844675 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[2019]: 0.215857500 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[2020]: 0.215865900 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2021]: 0.215878125 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[2022]: 0.215886175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2023]: 0.215894625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2024]: 0.215904725 - core[0].svIdle(17), plen 0: [] -EVENT[2025]: 0.215919675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2026]: 0.215967725 - core[1].svPrint(26), plen 63: [msg: I (542) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.215967725] LOG: I (542) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[2027]: 0.215983075 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.215983075] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2028]: 0.216001650 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[2029]: 0.216014500 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2030]: 0.216023250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2031]: 0.216038700 - core[1].svIdle(17), plen 0: [] -EVENT[2032]: 0.216617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2033]: 0.216629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2034]: 0.216643250 - core[0].svIdle(17), plen 0: [] -EVENT[2035]: 0.216747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2036]: 0.216756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2037]: 0.216770600 - core[1].svIdle(17), plen 0: [] -EVENT[2038]: 0.217617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2039]: 0.217629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2040]: 0.217643175 - core[0].svIdle(17), plen 0: [] -EVENT[2041]: 0.217747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2042]: 0.217756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2043]: 0.217770600 - core[1].svIdle(17), plen 0: [] -EVENT[2044]: 0.218617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2045]: 0.218629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2046]: 0.218643125 - core[0].svIdle(17), plen 0: [] -EVENT[2047]: 0.218747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2048]: 0.218757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2049]: 0.218770775 - core[1].svIdle(17), plen 0: [] -EVENT[2050]: 0.219617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2051]: 0.219629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2052]: 0.219643125 - core[0].svIdle(17), plen 0: [] -EVENT[2053]: 0.219747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2054]: 0.219756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2055]: 0.219770600 - core[1].svIdle(17), plen 0: [] -EVENT[2056]: 0.220617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2057]: 0.220632575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2058]: 0.220646200 - core[0].svIdle(17), plen 0: [] -EVENT[2059]: 0.220747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2060]: 0.220756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2061]: 0.220770600 - core[1].svIdle(17), plen 0: [] -EVENT[2062]: 0.221617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2063]: 0.221629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2064]: 0.221643125 - core[0].svIdle(17), plen 0: [] -EVENT[2065]: 0.221747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2066]: 0.221757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2067]: 0.221770775 - core[1].svIdle(17), plen 0: [] -EVENT[2068]: 0.222617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2069]: 0.222629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2070]: 0.222643125 - core[0].svIdle(17), plen 0: [] -EVENT[2071]: 0.222747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2072]: 0.222756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2073]: 0.222770600 - core[1].svIdle(17), plen 0: [] -EVENT[2074]: 0.223617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2075]: 0.223629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2076]: 0.223643250 - core[0].svIdle(17), plen 0: [] -EVENT[2077]: 0.223747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2078]: 0.223756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2079]: 0.223770600 - core[1].svIdle(17), plen 0: [] -EVENT[2080]: 0.224617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2081]: 0.224629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2082]: 0.224643175 - core[0].svIdle(17), plen 0: [] -EVENT[2083]: 0.224747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2084]: 0.224756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2085]: 0.224770600 - core[1].svIdle(17), plen 0: [] -EVENT[2086]: 0.225617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2087]: 0.225629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2088]: 0.225643125 - core[0].svIdle(17), plen 0: [] -EVENT[2089]: 0.225747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2090]: 0.225757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2091]: 0.225770775 - core[1].svIdle(17), plen 0: [] -EVENT[2092]: 0.226617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2093]: 0.226629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2094]: 0.226643125 - core[0].svIdle(17), plen 0: [] -EVENT[2095]: 0.226747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2096]: 0.226756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2097]: 0.226770600 - core[1].svIdle(17), plen 0: [] -EVENT[2098]: 0.227617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2099]: 0.227629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2100]: 0.227643250 - core[0].svIdle(17), plen 0: [] -EVENT[2101]: 0.227747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2102]: 0.227756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2103]: 0.227770600 - core[1].svIdle(17), plen 0: [] -EVENT[2104]: 0.228617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2105]: 0.228629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2106]: 0.228643175 - core[0].svIdle(17), plen 0: [] -EVENT[2107]: 0.228747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2108]: 0.228756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2109]: 0.228770600 - core[1].svIdle(17), plen 0: [] -EVENT[2110]: 0.229617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2111]: 0.229629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2112]: 0.229643125 - core[0].svIdle(17), plen 0: [] -EVENT[2113]: 0.229747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2114]: 0.229757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2115]: 0.229770775 - core[1].svIdle(17), plen 0: [] -EVENT[2116]: 0.230617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2117]: 0.230629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2118]: 0.230643125 - core[0].svIdle(17), plen 0: [] -EVENT[2119]: 0.230747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2120]: 0.230756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2121]: 0.230770600 - core[1].svIdle(17), plen 0: [] -EVENT[2122]: 0.231617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2123]: 0.231629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2124]: 0.231643250 - core[0].svIdle(17), plen 0: [] -EVENT[2125]: 0.231747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2126]: 0.231756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2127]: 0.231770600 - core[1].svIdle(17), plen 0: [] -EVENT[2128]: 0.232617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2129]: 0.232632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2130]: 0.232646225 - core[0].svIdle(17), plen 0: [] -EVENT[2131]: 0.232747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2132]: 0.232756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2133]: 0.232770600 - core[1].svIdle(17), plen 0: [] -EVENT[2134]: 0.233617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2135]: 0.233629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2136]: 0.233643125 - core[0].svIdle(17), plen 0: [] -EVENT[2137]: 0.233747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2138]: 0.233757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2139]: 0.233770775 - core[1].svIdle(17), plen 0: [] -EVENT[2140]: 0.234617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2141]: 0.234629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2142]: 0.234643125 - core[0].svIdle(17), plen 0: [] -EVENT[2143]: 0.234747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2144]: 0.234756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2145]: 0.234770600 - core[1].svIdle(17), plen 0: [] -EVENT[2146]: 0.235617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2147]: 0.235629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2148]: 0.235643250 - core[0].svIdle(17), plen 0: [] -EVENT[2149]: 0.235747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2150]: 0.235756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2151]: 0.235770600 - core[1].svIdle(17), plen 0: [] -EVENT[2152]: 0.236617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2153]: 0.236629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2154]: 0.236643175 - core[0].svIdle(17), plen 0: [] -EVENT[2155]: 0.236747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2156]: 0.236756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2157]: 0.236770600 - core[1].svIdle(17), plen 0: [] -EVENT[2158]: 0.237617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2159]: 0.237629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2160]: 0.237643125 - core[0].svIdle(17), plen 0: [] -EVENT[2161]: 0.237747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2162]: 0.237757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2163]: 0.237770775 - core[1].svIdle(17), plen 0: [] -EVENT[2164]: 0.238617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2165]: 0.238629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2166]: 0.238643125 - core[0].svIdle(17), plen 0: [] -EVENT[2167]: 0.238747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2168]: 0.238756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2169]: 0.238770600 - core[1].svIdle(17), plen 0: [] -EVENT[2170]: 0.239617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2171]: 0.239629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2172]: 0.239643250 - core[0].svIdle(17), plen 0: [] -EVENT[2173]: 0.239747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2174]: 0.239756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2175]: 0.239770600 - core[1].svIdle(17), plen 0: [] -EVENT[2176]: 0.240617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2177]: 0.240629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2178]: 0.240643175 - core[0].svIdle(17), plen 0: [] -EVENT[2179]: 0.240747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2180]: 0.240756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2181]: 0.240770600 - core[1].svIdle(17), plen 0: [] -EVENT[2182]: 0.241617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2183]: 0.241629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2184]: 0.241643125 - core[0].svIdle(17), plen 0: [] -EVENT[2185]: 0.241747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2186]: 0.241757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2187]: 0.241770775 - core[1].svIdle(17), plen 0: [] -EVENT[2188]: 0.242617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2189]: 0.242629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2190]: 0.242643125 - core[0].svIdle(17), plen 0: [] -EVENT[2191]: 0.242747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2192]: 0.242756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2193]: 0.242770600 - core[1].svIdle(17), plen 0: [] -EVENT[2194]: 0.243617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2195]: 0.243629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[2196]: 0.243638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2197]: 0.243652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[2198]: 0.243676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 18, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.243676950] HEAP: Allocated 18 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2199]: 0.243692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2200]: 0.243706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2201]: 0.243747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2202]: 0.243769100 - core[0].svPrint(26), plen 70: [msg: I (570) example: Task[0x3ffb7f40]: allocated 18 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.243769100] LOG: I (570) example: Task[0x3ffb7f40]: allocated 18 bytes @ 0x3ffb87e4 -EVENT[2203]: 0.243778325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2204]: 0.243786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2205]: 0.243797100 - core[1].svIdle(17), plen 0: [] -EVENT[2206]: 0.243807875 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[2207]: 0.243820900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2208]: 0.243829600 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2209]: 0.243837500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2210]: 0.243846050 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[2211]: 0.243858775 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[2212]: 0.243867150 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2213]: 0.243875425 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[2214]: 0.243884425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2215]: 0.243893800 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2216]: 0.243903025 - core[0].svIdle(17), plen 0: [] -EVENT[2217]: 0.243917950 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2218]: 0.243966000 - core[1].svPrint(26), plen 63: [msg: I (570) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.243966000] LOG: I (570) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[2219]: 0.243985825 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.243985825] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2220]: 0.244004525 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[2221]: 0.244017300 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2222]: 0.244026050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2223]: 0.244041500 - core[1].svIdle(17), plen 0: [] -EVENT[2224]: 0.244617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2225]: 0.244629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[2226]: 0.244638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2227]: 0.244653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[2228]: 0.244676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 36, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.244676950] HEAP: Allocated 36 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2229]: 0.244689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2230]: 0.244703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2231]: 0.244747575 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2232]: 0.244768525 - core[0].svPrint(26), plen 70: [msg: I (571) example: Task[0x3ffb82a0]: allocated 36 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.244768525] LOG: I (571) example: Task[0x3ffb82a0]: allocated 36 bytes @ 0x3ffb87e4 -EVENT[2233]: 0.244779775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2234]: 0.244787775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2235]: 0.244798600 - core[1].svIdle(17), plen 0: [] -EVENT[2236]: 0.244809475 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[2237]: 0.244822425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2238]: 0.244831125 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2239]: 0.244839050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2240]: 0.244847600 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[2241]: 0.244860325 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[2242]: 0.244868700 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2243]: 0.244877000 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[2244]: 0.244885750 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2245]: 0.244895175 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2246]: 0.244904450 - core[0].svIdle(17), plen 0: [] -EVENT[2247]: 0.244919275 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2248]: 0.244967275 - core[1].svPrint(26), plen 63: [msg: I (571) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.244967275] LOG: I (571) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[2249]: 0.244982825 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.244982825] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2250]: 0.245004375 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[2251]: 0.245017050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2252]: 0.245025850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2253]: 0.245041425 - core[1].svIdle(17), plen 0: [] -EVENT[2254]: 0.245617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2255]: 0.245629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[2256]: 0.245638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2257]: 0.245652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[2258]: 0.245676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 54, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.245676925] HEAP: Allocated 54 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2259]: 0.245689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2260]: 0.245703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2261]: 0.245747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2262]: 0.245768650 - core[0].svPrint(26), plen 70: [msg: I (572) example: Task[0x3ffb8600]: allocated 54 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.245768650] LOG: I (572) example: Task[0x3ffb8600]: allocated 54 bytes @ 0x3ffb87e4 -EVENT[2263]: 0.245776850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2264]: 0.245785000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2265]: 0.245795725 - core[1].svIdle(17), plen 0: [] -EVENT[2266]: 0.245806500 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[2267]: 0.245819525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2268]: 0.245828225 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2269]: 0.245836150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2270]: 0.245844675 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[2271]: 0.245857500 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[2272]: 0.245865900 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2273]: 0.245878175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[2274]: 0.245886200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2275]: 0.245894650 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2276]: 0.245904775 - core[0].svIdle(17), plen 0: [] -EVENT[2277]: 0.245919700 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2278]: 0.245967750 - core[1].svPrint(26), plen 63: [msg: I (572) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.245967750] LOG: I (572) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[2279]: 0.245983125 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.245983125] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2280]: 0.246001700 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[2281]: 0.246014525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2282]: 0.246023300 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2283]: 0.246038725 - core[1].svIdle(17), plen 0: [] -EVENT[2284]: 0.246617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2285]: 0.246629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2286]: 0.246643250 - core[0].svIdle(17), plen 0: [] -EVENT[2287]: 0.246747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2288]: 0.246756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2289]: 0.246770600 - core[1].svIdle(17), plen 0: [] -EVENT[2290]: 0.247617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2291]: 0.247629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2292]: 0.247643175 - core[0].svIdle(17), plen 0: [] -EVENT[2293]: 0.247747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2294]: 0.247756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2295]: 0.247770600 - core[1].svIdle(17), plen 0: [] -EVENT[2296]: 0.248617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2297]: 0.248629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2298]: 0.248643125 - core[0].svIdle(17), plen 0: [] -EVENT[2299]: 0.248747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2300]: 0.248757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2301]: 0.248770775 - core[1].svIdle(17), plen 0: [] -EVENT[2302]: 0.249617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2303]: 0.249629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2304]: 0.249643125 - core[0].svIdle(17), plen 0: [] -EVENT[2305]: 0.249747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2306]: 0.249756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2307]: 0.249770600 - core[1].svIdle(17), plen 0: [] -EVENT[2308]: 0.250617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2309]: 0.250631950 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2310]: 0.250645575 - core[0].svIdle(17), plen 0: [] -EVENT[2311]: 0.250747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2312]: 0.250756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2313]: 0.250770600 - core[1].svIdle(17), plen 0: [] -EVENT[2314]: 0.251617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2315]: 0.251629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2316]: 0.251643125 - core[0].svIdle(17), plen 0: [] -EVENT[2317]: 0.251747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2318]: 0.251757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2319]: 0.251770775 - core[1].svIdle(17), plen 0: [] -EVENT[2320]: 0.252617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2321]: 0.252629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2322]: 0.252643125 - core[0].svIdle(17), plen 0: [] -EVENT[2323]: 0.252747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2324]: 0.252756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2325]: 0.252770600 - core[1].svIdle(17), plen 0: [] -EVENT[2326]: 0.253617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2327]: 0.253629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2328]: 0.253643250 - core[0].svIdle(17), plen 0: [] -EVENT[2329]: 0.253747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2330]: 0.253756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2331]: 0.253770600 - core[1].svIdle(17), plen 0: [] -EVENT[2332]: 0.254617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2333]: 0.254629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2334]: 0.254643175 - core[0].svIdle(17), plen 0: [] -EVENT[2335]: 0.254747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2336]: 0.254756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2337]: 0.254770600 - core[1].svIdle(17), plen 0: [] -EVENT[2338]: 0.255617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2339]: 0.255629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2340]: 0.255643125 - core[0].svIdle(17), plen 0: [] -EVENT[2341]: 0.255747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2342]: 0.255757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2343]: 0.255770775 - core[1].svIdle(17), plen 0: [] -EVENT[2344]: 0.256617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2345]: 0.256629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2346]: 0.256643125 - core[0].svIdle(17), plen 0: [] -EVENT[2347]: 0.256747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2348]: 0.256756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2349]: 0.256770600 - core[1].svIdle(17), plen 0: [] -EVENT[2350]: 0.257617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2351]: 0.257629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2352]: 0.257643250 - core[0].svIdle(17), plen 0: [] -EVENT[2353]: 0.257747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2354]: 0.257756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2355]: 0.257770600 - core[1].svIdle(17), plen 0: [] -EVENT[2356]: 0.258617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2357]: 0.258629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2358]: 0.258643175 - core[0].svIdle(17), plen 0: [] -EVENT[2359]: 0.258747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2360]: 0.258756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2361]: 0.258770600 - core[1].svIdle(17), plen 0: [] -EVENT[2362]: 0.259617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2363]: 0.259629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2364]: 0.259643125 - core[0].svIdle(17), plen 0: [] -EVENT[2365]: 0.259747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2366]: 0.259757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2367]: 0.259770775 - core[1].svIdle(17), plen 0: [] -EVENT[2368]: 0.260617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2369]: 0.260629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2370]: 0.260643125 - core[0].svIdle(17), plen 0: [] -EVENT[2371]: 0.260747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2372]: 0.260756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2373]: 0.260770600 - core[1].svIdle(17), plen 0: [] -EVENT[2374]: 0.261617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2375]: 0.261629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2376]: 0.261643250 - core[0].svIdle(17), plen 0: [] -EVENT[2377]: 0.261747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2378]: 0.261756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2379]: 0.261770600 - core[1].svIdle(17), plen 0: [] -EVENT[2380]: 0.262617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2381]: 0.262632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2382]: 0.262646225 - core[0].svIdle(17), plen 0: [] -EVENT[2383]: 0.262747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2384]: 0.262756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2385]: 0.262770600 - core[1].svIdle(17), plen 0: [] -EVENT[2386]: 0.263617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2387]: 0.263629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2388]: 0.263643125 - core[0].svIdle(17), plen 0: [] -EVENT[2389]: 0.263747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2390]: 0.263757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2391]: 0.263770775 - core[1].svIdle(17), plen 0: [] -EVENT[2392]: 0.264617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2393]: 0.264629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2394]: 0.264643125 - core[0].svIdle(17), plen 0: [] -EVENT[2395]: 0.264747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2396]: 0.264756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2397]: 0.264770600 - core[1].svIdle(17), plen 0: [] -EVENT[2398]: 0.265617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2399]: 0.265629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2400]: 0.265643250 - core[0].svIdle(17), plen 0: [] -EVENT[2401]: 0.265747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2402]: 0.265756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2403]: 0.265770600 - core[1].svIdle(17), plen 0: [] -EVENT[2404]: 0.266617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2405]: 0.266629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2406]: 0.266643175 - core[0].svIdle(17), plen 0: [] -EVENT[2407]: 0.266747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2408]: 0.266756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2409]: 0.266770600 - core[1].svIdle(17), plen 0: [] -EVENT[2410]: 0.267617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2411]: 0.267629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2412]: 0.267643125 - core[0].svIdle(17), plen 0: [] -EVENT[2413]: 0.267747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2414]: 0.267757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2415]: 0.267770775 - core[1].svIdle(17), plen 0: [] -EVENT[2416]: 0.268617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2417]: 0.268629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2418]: 0.268643125 - core[0].svIdle(17), plen 0: [] -EVENT[2419]: 0.268747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2420]: 0.268756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2421]: 0.268770600 - core[1].svIdle(17), plen 0: [] -EVENT[2422]: 0.269617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2423]: 0.269629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2424]: 0.269643250 - core[0].svIdle(17), plen 0: [] -EVENT[2425]: 0.269747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2426]: 0.269756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2427]: 0.269770600 - core[1].svIdle(17), plen 0: [] -EVENT[2428]: 0.270617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2429]: 0.270629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2430]: 0.270643175 - core[0].svIdle(17), plen 0: [] -EVENT[2431]: 0.270747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2432]: 0.270756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2433]: 0.270770600 - core[1].svIdle(17), plen 0: [] -EVENT[2434]: 0.271617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2435]: 0.271629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2436]: 0.271643125 - core[0].svIdle(17), plen 0: [] -EVENT[2437]: 0.271747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2438]: 0.271757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2439]: 0.271770775 - core[1].svIdle(17), plen 0: [] -EVENT[2440]: 0.272617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2441]: 0.272629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2442]: 0.272643125 - core[0].svIdle(17), plen 0: [] -EVENT[2443]: 0.272747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2444]: 0.272756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2445]: 0.272770600 - core[1].svIdle(17), plen 0: [] -EVENT[2446]: 0.273617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2447]: 0.273629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[2448]: 0.273638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2449]: 0.273652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[2450]: 0.273676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 20, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.273676950] HEAP: Allocated 20 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2451]: 0.273692625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2452]: 0.273706700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2453]: 0.273747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2454]: 0.273768400 - core[0].svPrint(26), plen 70: [msg: I (600) example: Task[0x3ffb7f40]: allocated 20 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.273768400] LOG: I (600) example: Task[0x3ffb7f40]: allocated 20 bytes @ 0x3ffb87e4 -EVENT[2455]: 0.273777675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2456]: 0.273785875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2457]: 0.273796675 - core[1].svIdle(17), plen 0: [] -EVENT[2458]: 0.273807475 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[2459]: 0.273820475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2460]: 0.273829175 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2461]: 0.273837075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2462]: 0.273845625 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[2463]: 0.273858350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[2464]: 0.273866750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2465]: 0.273875025 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[2466]: 0.273884025 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2467]: 0.273893400 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2468]: 0.273902625 - core[0].svIdle(17), plen 0: [] -EVENT[2469]: 0.273917550 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2470]: 0.273965600 - core[1].svPrint(26), plen 63: [msg: I (600) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.273965600] LOG: I (600) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[2471]: 0.273984050 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.273984050] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2472]: 0.274002750 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[2473]: 0.274015500 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2474]: 0.274024275 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2475]: 0.274039700 - core[1].svIdle(17), plen 0: [] -EVENT[2476]: 0.274617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2477]: 0.274629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[2478]: 0.274638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2479]: 0.274653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[2480]: 0.274676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 40, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.274676950] HEAP: Allocated 40 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2481]: 0.274689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2482]: 0.274703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2483]: 0.274747575 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2484]: 0.274768525 - core[0].svPrint(26), plen 70: [msg: I (601) example: Task[0x3ffb82a0]: allocated 40 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.274768525] LOG: I (601) example: Task[0x3ffb82a0]: allocated 40 bytes @ 0x3ffb87e4 -EVENT[2485]: 0.274779775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2486]: 0.274787775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2487]: 0.274798600 - core[1].svIdle(17), plen 0: [] -EVENT[2488]: 0.274809475 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[2489]: 0.274822425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2490]: 0.274831125 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2491]: 0.274839050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2492]: 0.274847600 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[2493]: 0.274860325 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[2494]: 0.274868700 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2495]: 0.274877000 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[2496]: 0.274885750 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2497]: 0.274895175 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2498]: 0.274904450 - core[0].svIdle(17), plen 0: [] -EVENT[2499]: 0.274919275 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2500]: 0.274967275 - core[1].svPrint(26), plen 63: [msg: I (601) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.274967275] LOG: I (601) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[2501]: 0.274982825 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.274982825] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2502]: 0.275004375 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[2503]: 0.275017050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2504]: 0.275025850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2505]: 0.275041425 - core[1].svIdle(17), plen 0: [] -EVENT[2506]: 0.275617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2507]: 0.275629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[2508]: 0.275638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2509]: 0.275652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[2510]: 0.275676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 60, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.275676925] HEAP: Allocated 60 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2511]: 0.275689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2512]: 0.275703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2513]: 0.275747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2514]: 0.275768650 - core[0].svPrint(26), plen 70: [msg: I (602) example: Task[0x3ffb8600]: allocated 60 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.275768650] LOG: I (602) example: Task[0x3ffb8600]: allocated 60 bytes @ 0x3ffb87e4 -EVENT[2515]: 0.275776850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2516]: 0.275785000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2517]: 0.275795825 - core[1].svIdle(17), plen 0: [] -EVENT[2518]: 0.275806600 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[2519]: 0.275819625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2520]: 0.275828325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2521]: 0.275836250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2522]: 0.275844775 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[2523]: 0.275857600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[2524]: 0.275866000 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2525]: 0.275878275 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[2526]: 0.275886300 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2527]: 0.275894750 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2528]: 0.275904875 - core[0].svIdle(17), plen 0: [] -EVENT[2529]: 0.275919800 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2530]: 0.275967850 - core[1].svPrint(26), plen 63: [msg: I (602) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.275967850] LOG: I (602) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[2531]: 0.275983225 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.275983225] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2532]: 0.276001800 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[2533]: 0.276014625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2534]: 0.276023400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2535]: 0.276038825 - core[1].svIdle(17), plen 0: [] -EVENT[2536]: 0.276617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2537]: 0.276629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2538]: 0.276643250 - core[0].svIdle(17), plen 0: [] -EVENT[2539]: 0.276747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2540]: 0.276756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2541]: 0.276770600 - core[1].svIdle(17), plen 0: [] -EVENT[2542]: 0.277617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2543]: 0.277629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2544]: 0.277643175 - core[0].svIdle(17), plen 0: [] -EVENT[2545]: 0.277747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2546]: 0.277756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2547]: 0.277770600 - core[1].svIdle(17), plen 0: [] -EVENT[2548]: 0.278617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2549]: 0.278629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2550]: 0.278643125 - core[0].svIdle(17), plen 0: [] -EVENT[2551]: 0.278747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2552]: 0.278757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2553]: 0.278770775 - core[1].svIdle(17), plen 0: [] -EVENT[2554]: 0.279617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2555]: 0.279629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2556]: 0.279643125 - core[0].svIdle(17), plen 0: [] -EVENT[2557]: 0.279747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2558]: 0.279756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2559]: 0.279770600 - core[1].svIdle(17), plen 0: [] -EVENT[2560]: 0.280617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2561]: 0.280631950 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2562]: 0.280645575 - core[0].svIdle(17), plen 0: [] -EVENT[2563]: 0.280747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2564]: 0.280756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2565]: 0.280770600 - core[1].svIdle(17), plen 0: [] -EVENT[2566]: 0.281617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2567]: 0.281629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2568]: 0.281643125 - core[0].svIdle(17), plen 0: [] -EVENT[2569]: 0.281747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2570]: 0.281757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2571]: 0.281770775 - core[1].svIdle(17), plen 0: [] -EVENT[2572]: 0.282617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2573]: 0.282629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2574]: 0.282643125 - core[0].svIdle(17), plen 0: [] -EVENT[2575]: 0.282747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2576]: 0.282756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2577]: 0.282770600 - core[1].svIdle(17), plen 0: [] -EVENT[2578]: 0.283617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2579]: 0.283629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2580]: 0.283643250 - core[0].svIdle(17), plen 0: [] -EVENT[2581]: 0.283747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2582]: 0.283756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2583]: 0.283770600 - core[1].svIdle(17), plen 0: [] -EVENT[2584]: 0.284617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2585]: 0.284629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2586]: 0.284643175 - core[0].svIdle(17), plen 0: [] -EVENT[2587]: 0.284747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2588]: 0.284756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2589]: 0.284770600 - core[1].svIdle(17), plen 0: [] -EVENT[2590]: 0.285617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2591]: 0.285629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2592]: 0.285643125 - core[0].svIdle(17), plen 0: [] -EVENT[2593]: 0.285747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2594]: 0.285757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2595]: 0.285770775 - core[1].svIdle(17), plen 0: [] -EVENT[2596]: 0.286617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2597]: 0.286629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2598]: 0.286643125 - core[0].svIdle(17), plen 0: [] -EVENT[2599]: 0.286747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2600]: 0.286756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2601]: 0.286770600 - core[1].svIdle(17), plen 0: [] -EVENT[2602]: 0.287617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2603]: 0.287629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2604]: 0.287643250 - core[0].svIdle(17), plen 0: [] -EVENT[2605]: 0.287747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2606]: 0.287756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2607]: 0.287770600 - core[1].svIdle(17), plen 0: [] -EVENT[2608]: 0.288617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2609]: 0.288629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2610]: 0.288643175 - core[0].svIdle(17), plen 0: [] -EVENT[2611]: 0.288747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2612]: 0.288756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2613]: 0.288770600 - core[1].svIdle(17), plen 0: [] -EVENT[2614]: 0.289617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2615]: 0.289629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2616]: 0.289643125 - core[0].svIdle(17), plen 0: [] -EVENT[2617]: 0.289747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2618]: 0.289757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2619]: 0.289770775 - core[1].svIdle(17), plen 0: [] -EVENT[2620]: 0.290617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2621]: 0.290629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2622]: 0.290643125 - core[0].svIdle(17), plen 0: [] -EVENT[2623]: 0.290747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2624]: 0.290756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2625]: 0.290770600 - core[1].svIdle(17), plen 0: [] -EVENT[2626]: 0.291617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2627]: 0.291629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2628]: 0.291643250 - core[0].svIdle(17), plen 0: [] -EVENT[2629]: 0.291747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2630]: 0.291756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2631]: 0.291770600 - core[1].svIdle(17), plen 0: [] -EVENT[2632]: 0.292617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2633]: 0.292632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2634]: 0.292646225 - core[0].svIdle(17), plen 0: [] -EVENT[2635]: 0.292747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2636]: 0.292756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2637]: 0.292770600 - core[1].svIdle(17), plen 0: [] -EVENT[2638]: 0.293617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2639]: 0.293629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2640]: 0.293643125 - core[0].svIdle(17), plen 0: [] -EVENT[2641]: 0.293747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2642]: 0.293757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2643]: 0.293770775 - core[1].svIdle(17), plen 0: [] -EVENT[2644]: 0.294617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2645]: 0.294629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2646]: 0.294643125 - core[0].svIdle(17), plen 0: [] -EVENT[2647]: 0.294747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2648]: 0.294756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2649]: 0.294770600 - core[1].svIdle(17), plen 0: [] -EVENT[2650]: 0.295617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2651]: 0.295629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2652]: 0.295643250 - core[0].svIdle(17), plen 0: [] -EVENT[2653]: 0.295747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2654]: 0.295756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2655]: 0.295770600 - core[1].svIdle(17), plen 0: [] -EVENT[2656]: 0.296617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2657]: 0.296629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2658]: 0.296643175 - core[0].svIdle(17), plen 0: [] -EVENT[2659]: 0.296747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2660]: 0.296756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2661]: 0.296770600 - core[1].svIdle(17), plen 0: [] -EVENT[2662]: 0.297617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2663]: 0.297629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2664]: 0.297643125 - core[0].svIdle(17), plen 0: [] -EVENT[2665]: 0.297747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2666]: 0.297757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2667]: 0.297770775 - core[1].svIdle(17), plen 0: [] -EVENT[2668]: 0.298617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2669]: 0.298629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2670]: 0.298643125 - core[0].svIdle(17), plen 0: [] -EVENT[2671]: 0.298747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2672]: 0.298756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2673]: 0.298770600 - core[1].svIdle(17), plen 0: [] -EVENT[2674]: 0.299617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2675]: 0.299629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2676]: 0.299643250 - core[0].svIdle(17), plen 0: [] -EVENT[2677]: 0.299747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2678]: 0.299756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2679]: 0.299770600 - core[1].svIdle(17), plen 0: [] -EVENT[2680]: 0.300617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2681]: 0.300629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2682]: 0.300643175 - core[0].svIdle(17), plen 0: [] -EVENT[2683]: 0.300747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2684]: 0.300756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2685]: 0.300770600 - core[1].svIdle(17), plen 0: [] -EVENT[2686]: 0.301617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2687]: 0.301629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2688]: 0.301643125 - core[0].svIdle(17), plen 0: [] -EVENT[2689]: 0.301747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2690]: 0.301757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2691]: 0.301770775 - core[1].svIdle(17), plen 0: [] -EVENT[2692]: 0.302617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2693]: 0.302629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2694]: 0.302643125 - core[0].svIdle(17), plen 0: [] -EVENT[2695]: 0.302747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2696]: 0.302756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2697]: 0.302770600 - core[1].svIdle(17), plen 0: [] -EVENT[2698]: 0.303617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2699]: 0.303629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[2700]: 0.303638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2701]: 0.303652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[2702]: 0.303676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 22, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.303676950] HEAP: Allocated 22 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2703]: 0.303692625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2704]: 0.303706700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2705]: 0.303747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2706]: 0.303768400 - core[0].svPrint(26), plen 70: [msg: I (630) example: Task[0x3ffb7f40]: allocated 22 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.303768400] LOG: I (630) example: Task[0x3ffb7f40]: allocated 22 bytes @ 0x3ffb87e4 -EVENT[2707]: 0.303777675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2708]: 0.303785875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2709]: 0.303796575 - core[1].svIdle(17), plen 0: [] -EVENT[2710]: 0.303807350 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[2711]: 0.303820375 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2712]: 0.303829075 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2713]: 0.303836975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2714]: 0.303845525 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[2715]: 0.303858250 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[2716]: 0.303866625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2717]: 0.303874975 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[2718]: 0.303884075 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2719]: 0.303893000 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2720]: 0.303902575 - core[0].svIdle(17), plen 0: [] -EVENT[2721]: 0.303917500 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2722]: 0.303965550 - core[1].svPrint(26), plen 63: [msg: I (630) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.303965550] LOG: I (630) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[2723]: 0.303984000 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.303984000] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2724]: 0.304002700 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[2725]: 0.304015450 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2726]: 0.304024225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2727]: 0.304039650 - core[1].svIdle(17), plen 0: [] -EVENT[2728]: 0.304617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2729]: 0.304629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[2730]: 0.304638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2731]: 0.304653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[2732]: 0.304676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 44, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.304676950] HEAP: Allocated 44 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2733]: 0.304689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2734]: 0.304703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2735]: 0.304747575 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2736]: 0.304768525 - core[0].svPrint(26), plen 70: [msg: I (631) example: Task[0x3ffb82a0]: allocated 44 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.304768525] LOG: I (631) example: Task[0x3ffb82a0]: allocated 44 bytes @ 0x3ffb87e4 -EVENT[2737]: 0.304779775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2738]: 0.304787775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2739]: 0.304798600 - core[1].svIdle(17), plen 0: [] -EVENT[2740]: 0.304809475 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[2741]: 0.304822425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2742]: 0.304831125 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2743]: 0.304839050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2744]: 0.304847600 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[2745]: 0.304860325 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[2746]: 0.304868700 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2747]: 0.304876950 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[2748]: 0.304885675 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2749]: 0.304895125 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2750]: 0.304904375 - core[0].svIdle(17), plen 0: [] -EVENT[2751]: 0.304919200 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2752]: 0.304967200 - core[1].svPrint(26), plen 63: [msg: I (631) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.304967200] LOG: I (631) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[2753]: 0.304982775 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.304982775] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2754]: 0.305004300 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[2755]: 0.305017000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2756]: 0.305025800 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2757]: 0.305041375 - core[1].svIdle(17), plen 0: [] -EVENT[2758]: 0.305617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2759]: 0.305629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[2760]: 0.305638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2761]: 0.305652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[2762]: 0.305676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 66, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.305676925] HEAP: Allocated 66 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2763]: 0.305689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2764]: 0.305703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2765]: 0.305747550 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2766]: 0.305768500 - core[0].svPrint(26), plen 70: [msg: I (632) example: Task[0x3ffb8600]: allocated 66 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.305768500] LOG: I (632) example: Task[0x3ffb8600]: allocated 66 bytes @ 0x3ffb87e4 -EVENT[2767]: 0.305776700 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2768]: 0.305784850 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2769]: 0.305795550 - core[1].svIdle(17), plen 0: [] -EVENT[2770]: 0.305806350 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[2771]: 0.305819350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2772]: 0.305828050 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2773]: 0.305835975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2774]: 0.305844525 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[2775]: 0.305857325 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[2776]: 0.305865725 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2777]: 0.305877950 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[2778]: 0.305885975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2779]: 0.305894425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2780]: 0.305904550 - core[0].svIdle(17), plen 0: [] -EVENT[2781]: 0.305919475 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2782]: 0.305967525 - core[1].svPrint(26), plen 63: [msg: I (632) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.305967525] LOG: I (632) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[2783]: 0.305982900 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.305982900] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2784]: 0.306001475 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[2785]: 0.306014300 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2786]: 0.306023075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2787]: 0.306038500 - core[1].svIdle(17), plen 0: [] -EVENT[2788]: 0.306617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2789]: 0.306629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2790]: 0.306643250 - core[0].svIdle(17), plen 0: [] -EVENT[2791]: 0.306747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2792]: 0.306756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2793]: 0.306770600 - core[1].svIdle(17), plen 0: [] -EVENT[2794]: 0.307617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2795]: 0.307629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2796]: 0.307643175 - core[0].svIdle(17), plen 0: [] -EVENT[2797]: 0.307747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2798]: 0.307756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2799]: 0.307770600 - core[1].svIdle(17), plen 0: [] -EVENT[2800]: 0.308617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2801]: 0.308629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2802]: 0.308643125 - core[0].svIdle(17), plen 0: [] -EVENT[2803]: 0.308747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2804]: 0.308757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2805]: 0.308770775 - core[1].svIdle(17), plen 0: [] -EVENT[2806]: 0.309617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2807]: 0.309629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2808]: 0.309643125 - core[0].svIdle(17), plen 0: [] -EVENT[2809]: 0.309747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2810]: 0.309756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2811]: 0.309770600 - core[1].svIdle(17), plen 0: [] -EVENT[2812]: 0.310617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2813]: 0.310631950 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2814]: 0.310645575 - core[0].svIdle(17), plen 0: [] -EVENT[2815]: 0.310747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2816]: 0.310756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2817]: 0.310770600 - core[1].svIdle(17), plen 0: [] -EVENT[2818]: 0.311617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2819]: 0.311629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2820]: 0.311643125 - core[0].svIdle(17), plen 0: [] -EVENT[2821]: 0.311747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2822]: 0.311757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2823]: 0.311770775 - core[1].svIdle(17), plen 0: [] -EVENT[2824]: 0.312617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2825]: 0.312629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2826]: 0.312643125 - core[0].svIdle(17), plen 0: [] -EVENT[2827]: 0.312747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2828]: 0.312756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2829]: 0.312770600 - core[1].svIdle(17), plen 0: [] -EVENT[2830]: 0.313617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2831]: 0.313629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2832]: 0.313643250 - core[0].svIdle(17), plen 0: [] -EVENT[2833]: 0.313747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2834]: 0.313756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2835]: 0.313770600 - core[1].svIdle(17), plen 0: [] -EVENT[2836]: 0.314617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2837]: 0.314629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2838]: 0.314643175 - core[0].svIdle(17), plen 0: [] -EVENT[2839]: 0.314747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2840]: 0.314756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2841]: 0.314770600 - core[1].svIdle(17), plen 0: [] -EVENT[2842]: 0.315617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2843]: 0.315629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2844]: 0.315643125 - core[0].svIdle(17), plen 0: [] -EVENT[2845]: 0.315747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2846]: 0.315757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2847]: 0.315770775 - core[1].svIdle(17), plen 0: [] -EVENT[2848]: 0.316617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2849]: 0.316629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2850]: 0.316643125 - core[0].svIdle(17), plen 0: [] -EVENT[2851]: 0.316747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2852]: 0.316756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2853]: 0.316770600 - core[1].svIdle(17), plen 0: [] -EVENT[2854]: 0.317617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2855]: 0.317629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2856]: 0.317643250 - core[0].svIdle(17), plen 0: [] -EVENT[2857]: 0.317747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2858]: 0.317756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2859]: 0.317770600 - core[1].svIdle(17), plen 0: [] -EVENT[2860]: 0.318617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2861]: 0.318629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2862]: 0.318643175 - core[0].svIdle(17), plen 0: [] -EVENT[2863]: 0.318747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2864]: 0.318756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2865]: 0.318770600 - core[1].svIdle(17), plen 0: [] -EVENT[2866]: 0.319617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2867]: 0.319629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2868]: 0.319643125 - core[0].svIdle(17), plen 0: [] -EVENT[2869]: 0.319747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2870]: 0.319757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2871]: 0.319770775 - core[1].svIdle(17), plen 0: [] -EVENT[2872]: 0.320617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2873]: 0.320629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2874]: 0.320643125 - core[0].svIdle(17), plen 0: [] -EVENT[2875]: 0.320747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2876]: 0.320756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2877]: 0.320770600 - core[1].svIdle(17), plen 0: [] -EVENT[2878]: 0.321617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2879]: 0.321629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2880]: 0.321643250 - core[0].svIdle(17), plen 0: [] -EVENT[2881]: 0.321747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2882]: 0.321756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2883]: 0.321770600 - core[1].svIdle(17), plen 0: [] -EVENT[2884]: 0.322617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2885]: 0.322632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2886]: 0.322646225 - core[0].svIdle(17), plen 0: [] -EVENT[2887]: 0.322747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2888]: 0.322756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2889]: 0.322770600 - core[1].svIdle(17), plen 0: [] -EVENT[2890]: 0.323617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2891]: 0.323629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2892]: 0.323643125 - core[0].svIdle(17), plen 0: [] -EVENT[2893]: 0.323747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2894]: 0.323757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2895]: 0.323770775 - core[1].svIdle(17), plen 0: [] -EVENT[2896]: 0.324617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2897]: 0.324629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2898]: 0.324643125 - core[0].svIdle(17), plen 0: [] -EVENT[2899]: 0.324747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2900]: 0.324756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2901]: 0.324770600 - core[1].svIdle(17), plen 0: [] -EVENT[2902]: 0.325617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2903]: 0.325629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2904]: 0.325643250 - core[0].svIdle(17), plen 0: [] -EVENT[2905]: 0.325747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2906]: 0.325756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2907]: 0.325770600 - core[1].svIdle(17), plen 0: [] -EVENT[2908]: 0.326617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2909]: 0.326629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2910]: 0.326643175 - core[0].svIdle(17), plen 0: [] -EVENT[2911]: 0.326747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2912]: 0.326756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2913]: 0.326770600 - core[1].svIdle(17), plen 0: [] -EVENT[2914]: 0.327617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2915]: 0.327629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2916]: 0.327643125 - core[0].svIdle(17), plen 0: [] -EVENT[2917]: 0.327747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2918]: 0.327757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2919]: 0.327770775 - core[1].svIdle(17), plen 0: [] -EVENT[2920]: 0.328617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2921]: 0.328629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2922]: 0.328643125 - core[0].svIdle(17), plen 0: [] -EVENT[2923]: 0.328747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2924]: 0.328756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2925]: 0.328770600 - core[1].svIdle(17), plen 0: [] -EVENT[2926]: 0.329617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2927]: 0.329629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2928]: 0.329643250 - core[0].svIdle(17), plen 0: [] -EVENT[2929]: 0.329747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2930]: 0.329756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2931]: 0.329770600 - core[1].svIdle(17), plen 0: [] -EVENT[2932]: 0.330617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2933]: 0.330629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2934]: 0.330643175 - core[0].svIdle(17), plen 0: [] -EVENT[2935]: 0.330747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2936]: 0.330756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2937]: 0.330770600 - core[1].svIdle(17), plen 0: [] -EVENT[2938]: 0.331617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2939]: 0.331629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2940]: 0.331643125 - core[0].svIdle(17), plen 0: [] -EVENT[2941]: 0.331747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2942]: 0.331757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2943]: 0.331770775 - core[1].svIdle(17), plen 0: [] -EVENT[2944]: 0.332617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2945]: 0.332629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2946]: 0.332643125 - core[0].svIdle(17), plen 0: [] -EVENT[2947]: 0.332747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2948]: 0.332756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2949]: 0.332770600 - core[1].svIdle(17), plen 0: [] -EVENT[2950]: 0.333617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2951]: 0.333629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[2952]: 0.333638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2953]: 0.333652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[2954]: 0.333676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 24, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.333676950] HEAP: Allocated 24 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2955]: 0.333692625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2956]: 0.333706700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2957]: 0.333747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2958]: 0.333768500 - core[0].svPrint(26), plen 70: [msg: I (660) example: Task[0x3ffb7f40]: allocated 24 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.333768500] LOG: I (660) example: Task[0x3ffb7f40]: allocated 24 bytes @ 0x3ffb87e4 -EVENT[2959]: 0.333777725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2960]: 0.333785875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2961]: 0.333796475 - core[1].svIdle(17), plen 0: [] -EVENT[2962]: 0.333807275 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[2963]: 0.333820275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2964]: 0.333828975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2965]: 0.333836875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2966]: 0.333845425 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[2967]: 0.333858150 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[2968]: 0.333866550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2969]: 0.333874825 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[2970]: 0.333883825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2971]: 0.333893200 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2972]: 0.333902425 - core[0].svIdle(17), plen 0: [] -EVENT[2973]: 0.333917350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2974]: 0.333965450 - core[1].svPrint(26), plen 63: [msg: I (660) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.333965450] LOG: I (660) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[2975]: 0.333983900 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.333983900] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2976]: 0.334002600 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[2977]: 0.334015350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2978]: 0.334024125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2979]: 0.334039550 - core[1].svIdle(17), plen 0: [] -EVENT[2980]: 0.334617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2981]: 0.334629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[2982]: 0.334638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2983]: 0.334653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[2984]: 0.334676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 48, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.334676950] HEAP: Allocated 48 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[2985]: 0.334689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2986]: 0.334703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2987]: 0.334747575 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2988]: 0.334768525 - core[0].svPrint(26), plen 70: [msg: I (661) example: Task[0x3ffb82a0]: allocated 48 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.334768525] LOG: I (661) example: Task[0x3ffb82a0]: allocated 48 bytes @ 0x3ffb87e4 -EVENT[2989]: 0.334779600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2990]: 0.334787625 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2991]: 0.334798450 - core[1].svIdle(17), plen 0: [] -EVENT[2992]: 0.334809325 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[2993]: 0.334822275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2994]: 0.334830975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2995]: 0.334838900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2996]: 0.334847450 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[2997]: 0.334860175 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[2998]: 0.334868550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2999]: 0.334876850 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[3000]: 0.334885600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3001]: 0.334895025 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3002]: 0.334904300 - core[0].svIdle(17), plen 0: [] -EVENT[3003]: 0.334919125 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3004]: 0.334967175 - core[1].svPrint(26), plen 63: [msg: I (661) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.334967175] LOG: I (661) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[3005]: 0.334982725 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.334982725] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3006]: 0.335004275 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[3007]: 0.335016950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3008]: 0.335025750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3009]: 0.335041325 - core[1].svIdle(17), plen 0: [] -EVENT[3010]: 0.335617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3011]: 0.335629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[3012]: 0.335638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3013]: 0.335652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[3014]: 0.335676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 72, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.335676925] HEAP: Allocated 72 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3015]: 0.335689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3016]: 0.335703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3017]: 0.335747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3018]: 0.335768550 - core[0].svPrint(26), plen 70: [msg: I (662) example: Task[0x3ffb8600]: allocated 72 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.335768550] LOG: I (662) example: Task[0x3ffb8600]: allocated 72 bytes @ 0x3ffb87e4 -EVENT[3019]: 0.335776750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3020]: 0.335784900 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3021]: 0.335795600 - core[1].svIdle(17), plen 0: [] -EVENT[3022]: 0.335806400 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[3023]: 0.335819400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3024]: 0.335828100 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[3025]: 0.335836025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3026]: 0.335844575 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[3027]: 0.335857375 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[3028]: 0.335865775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[3029]: 0.335878050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[3030]: 0.335886100 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3031]: 0.335894550 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3032]: 0.335904650 - core[0].svIdle(17), plen 0: [] -EVENT[3033]: 0.335919600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3034]: 0.335967700 - core[1].svPrint(26), plen 63: [msg: I (662) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.335967700] LOG: I (662) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[3035]: 0.335983050 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.335983050] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3036]: 0.336001625 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[3037]: 0.336014475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3038]: 0.336023225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3039]: 0.336038675 - core[1].svIdle(17), plen 0: [] -EVENT[3040]: 0.336617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3041]: 0.336629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3042]: 0.336643250 - core[0].svIdle(17), plen 0: [] -EVENT[3043]: 0.336747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3044]: 0.336756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3045]: 0.336770600 - core[1].svIdle(17), plen 0: [] -EVENT[3046]: 0.337617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3047]: 0.337629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3048]: 0.337643175 - core[0].svIdle(17), plen 0: [] -EVENT[3049]: 0.337747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3050]: 0.337756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3051]: 0.337770600 - core[1].svIdle(17), plen 0: [] -EVENT[3052]: 0.338617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3053]: 0.338629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3054]: 0.338643125 - core[0].svIdle(17), plen 0: [] -EVENT[3055]: 0.338747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3056]: 0.338757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3057]: 0.338770775 - core[1].svIdle(17), plen 0: [] -EVENT[3058]: 0.339617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3059]: 0.339629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3060]: 0.339643125 - core[0].svIdle(17), plen 0: [] -EVENT[3061]: 0.339747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3062]: 0.339756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3063]: 0.339770600 - core[1].svIdle(17), plen 0: [] -EVENT[3064]: 0.340617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3065]: 0.340631950 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3066]: 0.340645575 - core[0].svIdle(17), plen 0: [] -EVENT[3067]: 0.340747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3068]: 0.340756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3069]: 0.340770600 - core[1].svIdle(17), plen 0: [] -EVENT[3070]: 0.341617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3071]: 0.341629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3072]: 0.341643125 - core[0].svIdle(17), plen 0: [] -EVENT[3073]: 0.341747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3074]: 0.341757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3075]: 0.341770775 - core[1].svIdle(17), plen 0: [] -EVENT[3076]: 0.342617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3077]: 0.342629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3078]: 0.342643125 - core[0].svIdle(17), plen 0: [] -EVENT[3079]: 0.342747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3080]: 0.342756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3081]: 0.342770600 - core[1].svIdle(17), plen 0: [] -EVENT[3082]: 0.343617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3083]: 0.343629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3084]: 0.343643250 - core[0].svIdle(17), plen 0: [] -EVENT[3085]: 0.343747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3086]: 0.343756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3087]: 0.343770600 - core[1].svIdle(17), plen 0: [] -EVENT[3088]: 0.344617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3089]: 0.344629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3090]: 0.344643175 - core[0].svIdle(17), plen 0: [] -EVENT[3091]: 0.344747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3092]: 0.344756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3093]: 0.344770600 - core[1].svIdle(17), plen 0: [] -EVENT[3094]: 0.345617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3095]: 0.345629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3096]: 0.345643125 - core[0].svIdle(17), plen 0: [] -EVENT[3097]: 0.345747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3098]: 0.345757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3099]: 0.345770775 - core[1].svIdle(17), plen 0: [] -EVENT[3100]: 0.346617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3101]: 0.346629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3102]: 0.346643125 - core[0].svIdle(17), plen 0: [] -EVENT[3103]: 0.346747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3104]: 0.346756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3105]: 0.346770600 - core[1].svIdle(17), plen 0: [] -EVENT[3106]: 0.347617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3107]: 0.347629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3108]: 0.347643250 - core[0].svIdle(17), plen 0: [] -EVENT[3109]: 0.347747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3110]: 0.347756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3111]: 0.347770600 - core[1].svIdle(17), plen 0: [] -EVENT[3112]: 0.348617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3113]: 0.348629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3114]: 0.348643175 - core[0].svIdle(17), plen 0: [] -EVENT[3115]: 0.348747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3116]: 0.348756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3117]: 0.348770600 - core[1].svIdle(17), plen 0: [] -EVENT[3118]: 0.349617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3119]: 0.349629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3120]: 0.349643125 - core[0].svIdle(17), plen 0: [] -EVENT[3121]: 0.349747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3122]: 0.349757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3123]: 0.349770775 - core[1].svIdle(17), plen 0: [] -EVENT[3124]: 0.350617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3125]: 0.350629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3126]: 0.350643125 - core[0].svIdle(17), plen 0: [] -EVENT[3127]: 0.350747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3128]: 0.350756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3129]: 0.350770600 - core[1].svIdle(17), plen 0: [] -EVENT[3130]: 0.351617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3131]: 0.351629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3132]: 0.351643250 - core[0].svIdle(17), plen 0: [] -EVENT[3133]: 0.351747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3134]: 0.351756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3135]: 0.351770600 - core[1].svIdle(17), plen 0: [] -EVENT[3136]: 0.352617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3137]: 0.352632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3138]: 0.352646225 - core[0].svIdle(17), plen 0: [] -EVENT[3139]: 0.352747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3140]: 0.352756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3141]: 0.352770600 - core[1].svIdle(17), plen 0: [] -EVENT[3142]: 0.353617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3143]: 0.353629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3144]: 0.353643125 - core[0].svIdle(17), plen 0: [] -EVENT[3145]: 0.353747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3146]: 0.353757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3147]: 0.353770775 - core[1].svIdle(17), plen 0: [] -EVENT[3148]: 0.354617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3149]: 0.354629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3150]: 0.354643125 - core[0].svIdle(17), plen 0: [] -EVENT[3151]: 0.354747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3152]: 0.354756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3153]: 0.354770600 - core[1].svIdle(17), plen 0: [] -EVENT[3154]: 0.355617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3155]: 0.355629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3156]: 0.355643250 - core[0].svIdle(17), plen 0: [] -EVENT[3157]: 0.355747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3158]: 0.355756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3159]: 0.355770600 - core[1].svIdle(17), plen 0: [] -EVENT[3160]: 0.356617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3161]: 0.356629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3162]: 0.356643175 - core[0].svIdle(17), plen 0: [] -EVENT[3163]: 0.356747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3164]: 0.356756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3165]: 0.356770600 - core[1].svIdle(17), plen 0: [] -EVENT[3166]: 0.357617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3167]: 0.357629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3168]: 0.357643125 - core[0].svIdle(17), plen 0: [] -EVENT[3169]: 0.357747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3170]: 0.357757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3171]: 0.357770775 - core[1].svIdle(17), plen 0: [] -EVENT[3172]: 0.358617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3173]: 0.358629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3174]: 0.358643125 - core[0].svIdle(17), plen 0: [] -EVENT[3175]: 0.358747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3176]: 0.358756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3177]: 0.358770600 - core[1].svIdle(17), plen 0: [] -EVENT[3178]: 0.359617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3179]: 0.359629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3180]: 0.359643250 - core[0].svIdle(17), plen 0: [] -EVENT[3181]: 0.359747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3182]: 0.359756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3183]: 0.359770600 - core[1].svIdle(17), plen 0: [] -EVENT[3184]: 0.360617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3185]: 0.360629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3186]: 0.360643175 - core[0].svIdle(17), plen 0: [] -EVENT[3187]: 0.360747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3188]: 0.360756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3189]: 0.360770600 - core[1].svIdle(17), plen 0: [] -EVENT[3190]: 0.361617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3191]: 0.361629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3192]: 0.361643125 - core[0].svIdle(17), plen 0: [] -EVENT[3193]: 0.361747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3194]: 0.361757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3195]: 0.361770775 - core[1].svIdle(17), plen 0: [] -EVENT[3196]: 0.362617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3197]: 0.362629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3198]: 0.362643125 - core[0].svIdle(17), plen 0: [] -EVENT[3199]: 0.362747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3200]: 0.362756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3201]: 0.362770600 - core[1].svIdle(17), plen 0: [] -EVENT[3202]: 0.363617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3203]: 0.363629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[3204]: 0.363638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3205]: 0.363652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[3206]: 0.363676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 26, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.363676950] HEAP: Allocated 26 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3207]: 0.363692625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3208]: 0.363706700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3209]: 0.363747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3210]: 0.363768500 - core[0].svPrint(26), plen 70: [msg: I (690) example: Task[0x3ffb7f40]: allocated 26 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.363768500] LOG: I (690) example: Task[0x3ffb7f40]: allocated 26 bytes @ 0x3ffb87e4 -EVENT[3211]: 0.363777725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3212]: 0.363785875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3213]: 0.363796475 - core[1].svIdle(17), plen 0: [] -EVENT[3214]: 0.363807275 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[3215]: 0.363820275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3216]: 0.363828975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[3217]: 0.363836875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3218]: 0.363845425 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[3219]: 0.363858150 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[3220]: 0.363866550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[3221]: 0.363874825 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[3222]: 0.363883825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3223]: 0.363893200 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3224]: 0.363902425 - core[0].svIdle(17), plen 0: [] -EVENT[3225]: 0.363917350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3226]: 0.363965450 - core[1].svPrint(26), plen 63: [msg: I (690) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.363965450] LOG: I (690) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[3227]: 0.363983900 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.363983900] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3228]: 0.364002600 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[3229]: 0.364015350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3230]: 0.364024125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3231]: 0.364039550 - core[1].svIdle(17), plen 0: [] -EVENT[3232]: 0.364617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3233]: 0.364629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[3234]: 0.364638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3235]: 0.364653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[3236]: 0.364676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 52, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.364676950] HEAP: Allocated 52 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3237]: 0.364689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3238]: 0.364703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3239]: 0.364747575 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3240]: 0.364768525 - core[0].svPrint(26), plen 70: [msg: I (691) example: Task[0x3ffb82a0]: allocated 52 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.364768525] LOG: I (691) example: Task[0x3ffb82a0]: allocated 52 bytes @ 0x3ffb87e4 -EVENT[3241]: 0.364779600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3242]: 0.364787625 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3243]: 0.364798450 - core[1].svIdle(17), plen 0: [] -EVENT[3244]: 0.364809325 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[3245]: 0.364822275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3246]: 0.364830975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[3247]: 0.364838900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3248]: 0.364847450 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[3249]: 0.364860175 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[3250]: 0.364868550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[3251]: 0.364876850 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[3252]: 0.364885600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3253]: 0.364895025 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3254]: 0.364904300 - core[0].svIdle(17), plen 0: [] -EVENT[3255]: 0.364919125 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3256]: 0.364967175 - core[1].svPrint(26), plen 63: [msg: I (691) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.364967175] LOG: I (691) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[3257]: 0.364982725 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.364982725] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3258]: 0.365004275 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[3259]: 0.365016950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3260]: 0.365025750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3261]: 0.365041325 - core[1].svIdle(17), plen 0: [] -EVENT[3262]: 0.365617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3263]: 0.365629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[3264]: 0.365638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3265]: 0.365652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[3266]: 0.365676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 78, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.365676925] HEAP: Allocated 78 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3267]: 0.365689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3268]: 0.365703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3269]: 0.365747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3270]: 0.365768550 - core[0].svPrint(26), plen 70: [msg: I (692) example: Task[0x3ffb8600]: allocated 78 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.365768550] LOG: I (692) example: Task[0x3ffb8600]: allocated 78 bytes @ 0x3ffb87e4 -EVENT[3271]: 0.365776750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3272]: 0.365784900 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3273]: 0.365795600 - core[1].svIdle(17), plen 0: [] -EVENT[3274]: 0.365806400 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[3275]: 0.365819400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3276]: 0.365828100 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[3277]: 0.365836025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3278]: 0.365844575 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[3279]: 0.365857375 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[3280]: 0.365865775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[3281]: 0.365878050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[3282]: 0.365886100 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3283]: 0.365894550 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3284]: 0.365904650 - core[0].svIdle(17), plen 0: [] -EVENT[3285]: 0.365919600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3286]: 0.365967700 - core[1].svPrint(26), plen 63: [msg: I (692) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.365967700] LOG: I (692) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[3287]: 0.365983050 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.365983050] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3288]: 0.366001625 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[3289]: 0.366014475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3290]: 0.366023225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3291]: 0.366038675 - core[1].svIdle(17), plen 0: [] -EVENT[3292]: 0.366617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3293]: 0.366629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3294]: 0.366643250 - core[0].svIdle(17), plen 0: [] -EVENT[3295]: 0.366747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3296]: 0.366756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3297]: 0.366770600 - core[1].svIdle(17), plen 0: [] -EVENT[3298]: 0.367617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3299]: 0.367629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3300]: 0.367643175 - core[0].svIdle(17), plen 0: [] -EVENT[3301]: 0.367747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3302]: 0.367756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3303]: 0.367770600 - core[1].svIdle(17), plen 0: [] -EVENT[3304]: 0.368617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3305]: 0.368629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3306]: 0.368643125 - core[0].svIdle(17), plen 0: [] -EVENT[3307]: 0.368747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3308]: 0.368757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3309]: 0.368770775 - core[1].svIdle(17), plen 0: [] -EVENT[3310]: 0.369617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3311]: 0.369629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3312]: 0.369643125 - core[0].svIdle(17), plen 0: [] -EVENT[3313]: 0.369747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3314]: 0.369756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3315]: 0.369770600 - core[1].svIdle(17), plen 0: [] -EVENT[3316]: 0.370617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3317]: 0.370631950 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3318]: 0.370645575 - core[0].svIdle(17), plen 0: [] -EVENT[3319]: 0.370747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3320]: 0.370756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3321]: 0.370770600 - core[1].svIdle(17), plen 0: [] -EVENT[3322]: 0.371617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3323]: 0.371629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3324]: 0.371643125 - core[0].svIdle(17), plen 0: [] -EVENT[3325]: 0.371747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3326]: 0.371757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3327]: 0.371770775 - core[1].svIdle(17), plen 0: [] -EVENT[3328]: 0.372617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3329]: 0.372629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3330]: 0.372643125 - core[0].svIdle(17), plen 0: [] -EVENT[3331]: 0.372747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3332]: 0.372756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3333]: 0.372770600 - core[1].svIdle(17), plen 0: [] -EVENT[3334]: 0.373617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3335]: 0.373629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3336]: 0.373643250 - core[0].svIdle(17), plen 0: [] -EVENT[3337]: 0.373747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3338]: 0.373756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3339]: 0.373770600 - core[1].svIdle(17), plen 0: [] -EVENT[3340]: 0.374617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3341]: 0.374629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3342]: 0.374643175 - core[0].svIdle(17), plen 0: [] -EVENT[3343]: 0.374747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3344]: 0.374756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3345]: 0.374770600 - core[1].svIdle(17), plen 0: [] -EVENT[3346]: 0.375617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3347]: 0.375629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3348]: 0.375643125 - core[0].svIdle(17), plen 0: [] -EVENT[3349]: 0.375747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3350]: 0.375757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3351]: 0.375770775 - core[1].svIdle(17), plen 0: [] -EVENT[3352]: 0.376617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3353]: 0.376629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3354]: 0.376643125 - core[0].svIdle(17), plen 0: [] -EVENT[3355]: 0.376747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3356]: 0.376756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3357]: 0.376770600 - core[1].svIdle(17), plen 0: [] -EVENT[3358]: 0.377617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3359]: 0.377629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3360]: 0.377643250 - core[0].svIdle(17), plen 0: [] -EVENT[3361]: 0.377747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3362]: 0.377756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3363]: 0.377770600 - core[1].svIdle(17), plen 0: [] -EVENT[3364]: 0.378617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3365]: 0.378629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3366]: 0.378643175 - core[0].svIdle(17), plen 0: [] -EVENT[3367]: 0.378747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3368]: 0.378756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3369]: 0.378770600 - core[1].svIdle(17), plen 0: [] -EVENT[3370]: 0.379617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3371]: 0.379629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3372]: 0.379643125 - core[0].svIdle(17), plen 0: [] -EVENT[3373]: 0.379747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3374]: 0.379757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3375]: 0.379770775 - core[1].svIdle(17), plen 0: [] -EVENT[3376]: 0.380617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3377]: 0.380629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3378]: 0.380643125 - core[0].svIdle(17), plen 0: [] -EVENT[3379]: 0.380747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3380]: 0.380756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3381]: 0.380770600 - core[1].svIdle(17), plen 0: [] -EVENT[3382]: 0.381617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3383]: 0.381629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3384]: 0.381643250 - core[0].svIdle(17), plen 0: [] -EVENT[3385]: 0.381747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3386]: 0.381756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3387]: 0.381770600 - core[1].svIdle(17), plen 0: [] -EVENT[3388]: 0.382617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3389]: 0.382632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3390]: 0.382646225 - core[0].svIdle(17), plen 0: [] -EVENT[3391]: 0.382747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3392]: 0.382756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3393]: 0.382770600 - core[1].svIdle(17), plen 0: [] -EVENT[3394]: 0.383617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3395]: 0.383629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3396]: 0.383643125 - core[0].svIdle(17), plen 0: [] -EVENT[3397]: 0.383747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3398]: 0.383757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3399]: 0.383770775 - core[1].svIdle(17), plen 0: [] -EVENT[3400]: 0.384617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3401]: 0.384629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3402]: 0.384643125 - core[0].svIdle(17), plen 0: [] -EVENT[3403]: 0.384747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3404]: 0.384756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3405]: 0.384770600 - core[1].svIdle(17), plen 0: [] -EVENT[3406]: 0.385617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3407]: 0.385629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3408]: 0.385643250 - core[0].svIdle(17), plen 0: [] -EVENT[3409]: 0.385747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3410]: 0.385756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3411]: 0.385770600 - core[1].svIdle(17), plen 0: [] -EVENT[3412]: 0.386617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3413]: 0.386629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3414]: 0.386643175 - core[0].svIdle(17), plen 0: [] -EVENT[3415]: 0.386747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3416]: 0.386756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3417]: 0.386770600 - core[1].svIdle(17), plen 0: [] -EVENT[3418]: 0.387617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3419]: 0.387629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3420]: 0.387643125 - core[0].svIdle(17), plen 0: [] -EVENT[3421]: 0.387747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3422]: 0.387757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3423]: 0.387770775 - core[1].svIdle(17), plen 0: [] -EVENT[3424]: 0.388617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3425]: 0.388629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3426]: 0.388643125 - core[0].svIdle(17), plen 0: [] -EVENT[3427]: 0.388747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3428]: 0.388756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3429]: 0.388770600 - core[1].svIdle(17), plen 0: [] -EVENT[3430]: 0.389617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3431]: 0.389629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3432]: 0.389643250 - core[0].svIdle(17), plen 0: [] -EVENT[3433]: 0.389747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3434]: 0.389756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3435]: 0.389770600 - core[1].svIdle(17), plen 0: [] -EVENT[3436]: 0.390617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3437]: 0.390629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3438]: 0.390643175 - core[0].svIdle(17), plen 0: [] -EVENT[3439]: 0.390747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3440]: 0.390756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3441]: 0.390770600 - core[1].svIdle(17), plen 0: [] -EVENT[3442]: 0.391617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3443]: 0.391629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3444]: 0.391643125 - core[0].svIdle(17), plen 0: [] -EVENT[3445]: 0.391747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3446]: 0.391757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3447]: 0.391770775 - core[1].svIdle(17), plen 0: [] -EVENT[3448]: 0.392617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3449]: 0.392629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3450]: 0.392643125 - core[0].svIdle(17), plen 0: [] -EVENT[3451]: 0.392747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3452]: 0.392756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3453]: 0.392770600 - core[1].svIdle(17), plen 0: [] -EVENT[3454]: 0.393617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3455]: 0.393629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[3456]: 0.393638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3457]: 0.393652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[3458]: 0.393676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 28, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.393676950] HEAP: Allocated 28 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3459]: 0.393692625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3460]: 0.393706700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3461]: 0.393747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3462]: 0.393768500 - core[0].svPrint(26), plen 70: [msg: I (720) example: Task[0x3ffb7f40]: allocated 28 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.393768500] LOG: I (720) example: Task[0x3ffb7f40]: allocated 28 bytes @ 0x3ffb87e4 -EVENT[3463]: 0.393777725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3464]: 0.393785875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3465]: 0.393796475 - core[1].svIdle(17), plen 0: [] -EVENT[3466]: 0.393807275 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[3467]: 0.393820275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3468]: 0.393828975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[3469]: 0.393836875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3470]: 0.393845425 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[3471]: 0.393858150 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[3472]: 0.393866550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[3473]: 0.393874825 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[3474]: 0.393883825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3475]: 0.393893200 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3476]: 0.393902425 - core[0].svIdle(17), plen 0: [] -EVENT[3477]: 0.393917350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3478]: 0.393965450 - core[1].svPrint(26), plen 63: [msg: I (720) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.393965450] LOG: I (720) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[3479]: 0.393983900 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.393983900] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3480]: 0.394002600 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[3481]: 0.394015350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3482]: 0.394024125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3483]: 0.394039550 - core[1].svIdle(17), plen 0: [] -EVENT[3484]: 0.394617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3485]: 0.394629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[3486]: 0.394638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3487]: 0.394653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[3488]: 0.394676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 56, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.394676950] HEAP: Allocated 56 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3489]: 0.394689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3490]: 0.394703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3491]: 0.394747575 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3492]: 0.394768525 - core[0].svPrint(26), plen 70: [msg: I (721) example: Task[0x3ffb82a0]: allocated 56 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.394768525] LOG: I (721) example: Task[0x3ffb82a0]: allocated 56 bytes @ 0x3ffb87e4 -EVENT[3493]: 0.394779600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3494]: 0.394787625 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3495]: 0.394798450 - core[1].svIdle(17), plen 0: [] -EVENT[3496]: 0.394809325 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[3497]: 0.394822275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3498]: 0.394830975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[3499]: 0.394838900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3500]: 0.394847450 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[3501]: 0.394860175 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[3502]: 0.394868550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[3503]: 0.394876850 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[3504]: 0.394885600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3505]: 0.394895025 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3506]: 0.394904300 - core[0].svIdle(17), plen 0: [] -EVENT[3507]: 0.394919125 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3508]: 0.394967175 - core[1].svPrint(26), plen 63: [msg: I (721) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.394967175] LOG: I (721) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[3509]: 0.394982725 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.394982725] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3510]: 0.395004275 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[3511]: 0.395016950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3512]: 0.395025750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3513]: 0.395041325 - core[1].svIdle(17), plen 0: [] -EVENT[3514]: 0.395617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3515]: 0.395629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[3516]: 0.395638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3517]: 0.395652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[3518]: 0.395676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 84, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.395676925] HEAP: Allocated 84 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3519]: 0.395689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3520]: 0.395703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3521]: 0.395747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3522]: 0.395768550 - core[0].svPrint(26), plen 70: [msg: I (722) example: Task[0x3ffb8600]: allocated 84 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.395768550] LOG: I (722) example: Task[0x3ffb8600]: allocated 84 bytes @ 0x3ffb87e4 -EVENT[3523]: 0.395776750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3524]: 0.395784900 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3525]: 0.395795600 - core[1].svIdle(17), plen 0: [] -EVENT[3526]: 0.395806400 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[3527]: 0.395819400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3528]: 0.395828100 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[3529]: 0.395836025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3530]: 0.395844575 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[3531]: 0.395857375 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[3532]: 0.395865775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[3533]: 0.395878050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[3534]: 0.395886100 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3535]: 0.395894550 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3536]: 0.395904650 - core[0].svIdle(17), plen 0: [] -EVENT[3537]: 0.395919600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3538]: 0.395967700 - core[1].svPrint(26), plen 63: [msg: I (722) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.395967700] LOG: I (722) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[3539]: 0.395983050 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.395983050] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3540]: 0.396001625 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[3541]: 0.396014475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3542]: 0.396023225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3543]: 0.396038675 - core[1].svIdle(17), plen 0: [] -EVENT[3544]: 0.396617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3545]: 0.396629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3546]: 0.396643250 - core[0].svIdle(17), plen 0: [] -EVENT[3547]: 0.396747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3548]: 0.396756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3549]: 0.396770600 - core[1].svIdle(17), plen 0: [] -EVENT[3550]: 0.397617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3551]: 0.397629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3552]: 0.397643175 - core[0].svIdle(17), plen 0: [] -EVENT[3553]: 0.397747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3554]: 0.397756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3555]: 0.397770600 - core[1].svIdle(17), plen 0: [] -EVENT[3556]: 0.398617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3557]: 0.398629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3558]: 0.398643125 - core[0].svIdle(17), plen 0: [] -EVENT[3559]: 0.398747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3560]: 0.398757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3561]: 0.398770775 - core[1].svIdle(17), plen 0: [] -EVENT[3562]: 0.399617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3563]: 0.399629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3564]: 0.399643125 - core[0].svIdle(17), plen 0: [] -EVENT[3565]: 0.399747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3566]: 0.399756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3567]: 0.399770600 - core[1].svIdle(17), plen 0: [] -EVENT[3568]: 0.400617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3569]: 0.400631950 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3570]: 0.400645575 - core[0].svIdle(17), plen 0: [] -EVENT[3571]: 0.400747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3572]: 0.400756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3573]: 0.400770600 - core[1].svIdle(17), plen 0: [] -EVENT[3574]: 0.401617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3575]: 0.401629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3576]: 0.401643125 - core[0].svIdle(17), plen 0: [] -EVENT[3577]: 0.401747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3578]: 0.401757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3579]: 0.401770775 - core[1].svIdle(17), plen 0: [] -EVENT[3580]: 0.402617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3581]: 0.402629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3582]: 0.402643125 - core[0].svIdle(17), plen 0: [] -EVENT[3583]: 0.402747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3584]: 0.402756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3585]: 0.402770600 - core[1].svIdle(17), plen 0: [] -EVENT[3586]: 0.403617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3587]: 0.403629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3588]: 0.403643250 - core[0].svIdle(17), plen 0: [] -EVENT[3589]: 0.403747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3590]: 0.403756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3591]: 0.403770600 - core[1].svIdle(17), plen 0: [] -EVENT[3592]: 0.404617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3593]: 0.404629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3594]: 0.404643175 - core[0].svIdle(17), plen 0: [] -EVENT[3595]: 0.404747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3596]: 0.404756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3597]: 0.404770600 - core[1].svIdle(17), plen 0: [] -EVENT[3598]: 0.405617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3599]: 0.405629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3600]: 0.405643125 - core[0].svIdle(17), plen 0: [] -EVENT[3601]: 0.405747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3602]: 0.405757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3603]: 0.405770775 - core[1].svIdle(17), plen 0: [] -EVENT[3604]: 0.406617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3605]: 0.406629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3606]: 0.406643125 - core[0].svIdle(17), plen 0: [] -EVENT[3607]: 0.406747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3608]: 0.406756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3609]: 0.406770600 - core[1].svIdle(17), plen 0: [] -EVENT[3610]: 0.407617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3611]: 0.407629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3612]: 0.407643250 - core[0].svIdle(17), plen 0: [] -EVENT[3613]: 0.407747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3614]: 0.407756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3615]: 0.407770600 - core[1].svIdle(17), plen 0: [] -EVENT[3616]: 0.408617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3617]: 0.408629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3618]: 0.408643175 - core[0].svIdle(17), plen 0: [] -EVENT[3619]: 0.408747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3620]: 0.408756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3621]: 0.408770600 - core[1].svIdle(17), plen 0: [] -EVENT[3622]: 0.409617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3623]: 0.409629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3624]: 0.409643125 - core[0].svIdle(17), plen 0: [] -EVENT[3625]: 0.409747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3626]: 0.409757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3627]: 0.409770775 - core[1].svIdle(17), plen 0: [] -EVENT[3628]: 0.410617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3629]: 0.410629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3630]: 0.410643125 - core[0].svIdle(17), plen 0: [] -EVENT[3631]: 0.410747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3632]: 0.410756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3633]: 0.410770600 - core[1].svIdle(17), plen 0: [] -EVENT[3634]: 0.411617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3635]: 0.411629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3636]: 0.411643250 - core[0].svIdle(17), plen 0: [] -EVENT[3637]: 0.411747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3638]: 0.411756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3639]: 0.411770600 - core[1].svIdle(17), plen 0: [] -EVENT[3640]: 0.412617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3641]: 0.412632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3642]: 0.412646225 - core[0].svIdle(17), plen 0: [] -EVENT[3643]: 0.412747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3644]: 0.412756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3645]: 0.412770600 - core[1].svIdle(17), plen 0: [] -EVENT[3646]: 0.413617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3647]: 0.413629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3648]: 0.413643125 - core[0].svIdle(17), plen 0: [] -EVENT[3649]: 0.413747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3650]: 0.413757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3651]: 0.413770775 - core[1].svIdle(17), plen 0: [] -EVENT[3652]: 0.414617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3653]: 0.414629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3654]: 0.414643125 - core[0].svIdle(17), plen 0: [] -EVENT[3655]: 0.414747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3656]: 0.414756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3657]: 0.414770600 - core[1].svIdle(17), plen 0: [] -EVENT[3658]: 0.415617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3659]: 0.415629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3660]: 0.415643250 - core[0].svIdle(17), plen 0: [] -EVENT[3661]: 0.415747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3662]: 0.415756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3663]: 0.415770600 - core[1].svIdle(17), plen 0: [] -EVENT[3664]: 0.416617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3665]: 0.416629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3666]: 0.416643175 - core[0].svIdle(17), plen 0: [] -EVENT[3667]: 0.416747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3668]: 0.416756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3669]: 0.416770600 - core[1].svIdle(17), plen 0: [] -EVENT[3670]: 0.417617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3671]: 0.417629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3672]: 0.417643125 - core[0].svIdle(17), plen 0: [] -EVENT[3673]: 0.417747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3674]: 0.417757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3675]: 0.417770775 - core[1].svIdle(17), plen 0: [] -EVENT[3676]: 0.418617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3677]: 0.418629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3678]: 0.418643125 - core[0].svIdle(17), plen 0: [] -EVENT[3679]: 0.418747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3680]: 0.418756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3681]: 0.418770600 - core[1].svIdle(17), plen 0: [] -EVENT[3682]: 0.419617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3683]: 0.419629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3684]: 0.419643250 - core[0].svIdle(17), plen 0: [] -EVENT[3685]: 0.419747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3686]: 0.419756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3687]: 0.419770600 - core[1].svIdle(17), plen 0: [] -EVENT[3688]: 0.420617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3689]: 0.420629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3690]: 0.420643175 - core[0].svIdle(17), plen 0: [] -EVENT[3691]: 0.420747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3692]: 0.420756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3693]: 0.420770600 - core[1].svIdle(17), plen 0: [] -EVENT[3694]: 0.421617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3695]: 0.421629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3696]: 0.421643125 - core[0].svIdle(17), plen 0: [] -EVENT[3697]: 0.421747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3698]: 0.421757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3699]: 0.421770775 - core[1].svIdle(17), plen 0: [] -EVENT[3700]: 0.422617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3701]: 0.422629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3702]: 0.422643125 - core[0].svIdle(17), plen 0: [] -EVENT[3703]: 0.422747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3704]: 0.422756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3705]: 0.422770600 - core[1].svIdle(17), plen 0: [] -EVENT[3706]: 0.423617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3707]: 0.423629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[3708]: 0.423638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3709]: 0.423652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[3710]: 0.423676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 30, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.423676950] HEAP: Allocated 30 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3711]: 0.423692625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3712]: 0.423706700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3713]: 0.423747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3714]: 0.423768500 - core[0].svPrint(26), plen 70: [msg: I (750) example: Task[0x3ffb7f40]: allocated 30 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.423768500] LOG: I (750) example: Task[0x3ffb7f40]: allocated 30 bytes @ 0x3ffb87e4 -EVENT[3715]: 0.423777725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3716]: 0.423785875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3717]: 0.423796475 - core[1].svIdle(17), plen 0: [] -EVENT[3718]: 0.423807275 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[3719]: 0.423820275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3720]: 0.423828975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[3721]: 0.423836875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3722]: 0.423845425 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[3723]: 0.423858150 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[3724]: 0.423866550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[3725]: 0.423874825 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[3726]: 0.423883825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3727]: 0.423893200 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3728]: 0.423902425 - core[0].svIdle(17), plen 0: [] -EVENT[3729]: 0.423917350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3730]: 0.423965450 - core[1].svPrint(26), plen 63: [msg: I (750) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.423965450] LOG: I (750) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[3731]: 0.423983900 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.423983900] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3732]: 0.424002600 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[3733]: 0.424015350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3734]: 0.424024125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3735]: 0.424039550 - core[1].svIdle(17), plen 0: [] -EVENT[3736]: 0.424617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3737]: 0.424629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[3738]: 0.424638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3739]: 0.424653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[3740]: 0.424676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 60, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.424676950] HEAP: Allocated 60 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3741]: 0.424689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3742]: 0.424703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3743]: 0.424747575 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3744]: 0.424768525 - core[0].svPrint(26), plen 70: [msg: I (751) example: Task[0x3ffb82a0]: allocated 60 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.424768525] LOG: I (751) example: Task[0x3ffb82a0]: allocated 60 bytes @ 0x3ffb87e4 -EVENT[3745]: 0.424779600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3746]: 0.424787625 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3747]: 0.424798450 - core[1].svIdle(17), plen 0: [] -EVENT[3748]: 0.424809325 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[3749]: 0.424822275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3750]: 0.424830975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[3751]: 0.424838900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3752]: 0.424847450 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[3753]: 0.424860175 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[3754]: 0.424868550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[3755]: 0.424876850 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[3756]: 0.424885600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3757]: 0.424895025 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3758]: 0.424904300 - core[0].svIdle(17), plen 0: [] -EVENT[3759]: 0.424919125 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3760]: 0.424967175 - core[1].svPrint(26), plen 63: [msg: I (751) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.424967175] LOG: I (751) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[3761]: 0.424982725 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.424982725] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3762]: 0.425004275 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[3763]: 0.425016950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3764]: 0.425025750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3765]: 0.425041325 - core[1].svIdle(17), plen 0: [] -EVENT[3766]: 0.425617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3767]: 0.425629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[3768]: 0.425638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3769]: 0.425652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[3770]: 0.425676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 90, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.425676925] HEAP: Allocated 90 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3771]: 0.425689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3772]: 0.425703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3773]: 0.425747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3774]: 0.425768550 - core[0].svPrint(26), plen 70: [msg: I (752) example: Task[0x3ffb8600]: allocated 90 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.425768550] LOG: I (752) example: Task[0x3ffb8600]: allocated 90 bytes @ 0x3ffb87e4 -EVENT[3775]: 0.425776750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3776]: 0.425784900 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3777]: 0.425795600 - core[1].svIdle(17), plen 0: [] -EVENT[3778]: 0.425806400 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[3779]: 0.425819400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3780]: 0.425828100 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[3781]: 0.425836025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3782]: 0.425844575 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[3783]: 0.425857375 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[3784]: 0.425865775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[3785]: 0.425878050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[3786]: 0.425886100 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3787]: 0.425894550 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3788]: 0.425904650 - core[0].svIdle(17), plen 0: [] -EVENT[3789]: 0.425919600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3790]: 0.425967700 - core[1].svPrint(26), plen 63: [msg: I (752) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.425967700] LOG: I (752) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[3791]: 0.425983050 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.425983050] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3792]: 0.426001625 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[3793]: 0.426014475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3794]: 0.426023225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3795]: 0.426038675 - core[1].svIdle(17), plen 0: [] -EVENT[3796]: 0.426617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3797]: 0.426629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3798]: 0.426643250 - core[0].svIdle(17), plen 0: [] -EVENT[3799]: 0.426747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3800]: 0.426756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3801]: 0.426770600 - core[1].svIdle(17), plen 0: [] -EVENT[3802]: 0.427617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3803]: 0.427629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3804]: 0.427643175 - core[0].svIdle(17), plen 0: [] -EVENT[3805]: 0.427747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3806]: 0.427756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3807]: 0.427770600 - core[1].svIdle(17), plen 0: [] -EVENT[3808]: 0.428617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3809]: 0.428629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3810]: 0.428643125 - core[0].svIdle(17), plen 0: [] -EVENT[3811]: 0.428747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3812]: 0.428757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3813]: 0.428770775 - core[1].svIdle(17), plen 0: [] -EVENT[3814]: 0.429617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3815]: 0.429629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3816]: 0.429643125 - core[0].svIdle(17), plen 0: [] -EVENT[3817]: 0.429747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3818]: 0.429756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3819]: 0.429770600 - core[1].svIdle(17), plen 0: [] -EVENT[3820]: 0.430617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3821]: 0.430631950 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3822]: 0.430645575 - core[0].svIdle(17), plen 0: [] -EVENT[3823]: 0.430747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3824]: 0.430756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3825]: 0.430770600 - core[1].svIdle(17), plen 0: [] -EVENT[3826]: 0.431617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3827]: 0.431629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3828]: 0.431643125 - core[0].svIdle(17), plen 0: [] -EVENT[3829]: 0.431747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3830]: 0.431757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3831]: 0.431770775 - core[1].svIdle(17), plen 0: [] -EVENT[3832]: 0.432617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3833]: 0.432629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3834]: 0.432643125 - core[0].svIdle(17), plen 0: [] -EVENT[3835]: 0.432747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3836]: 0.432756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3837]: 0.432770600 - core[1].svIdle(17), plen 0: [] -EVENT[3838]: 0.433617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3839]: 0.433629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3840]: 0.433643250 - core[0].svIdle(17), plen 0: [] -EVENT[3841]: 0.433747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3842]: 0.433756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3843]: 0.433770600 - core[1].svIdle(17), plen 0: [] -EVENT[3844]: 0.434617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3845]: 0.434629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3846]: 0.434643175 - core[0].svIdle(17), plen 0: [] -EVENT[3847]: 0.434747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3848]: 0.434756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3849]: 0.434770600 - core[1].svIdle(17), plen 0: [] -EVENT[3850]: 0.435617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3851]: 0.435629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3852]: 0.435643125 - core[0].svIdle(17), plen 0: [] -EVENT[3853]: 0.435747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3854]: 0.435757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3855]: 0.435770775 - core[1].svIdle(17), plen 0: [] -EVENT[3856]: 0.436617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3857]: 0.436629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3858]: 0.436643125 - core[0].svIdle(17), plen 0: [] -EVENT[3859]: 0.436747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3860]: 0.436756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3861]: 0.436770600 - core[1].svIdle(17), plen 0: [] -EVENT[3862]: 0.437617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3863]: 0.437629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3864]: 0.437643250 - core[0].svIdle(17), plen 0: [] -EVENT[3865]: 0.437747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3866]: 0.437756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3867]: 0.437770600 - core[1].svIdle(17), plen 0: [] -EVENT[3868]: 0.438617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3869]: 0.438629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3870]: 0.438643175 - core[0].svIdle(17), plen 0: [] -EVENT[3871]: 0.438747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3872]: 0.438756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3873]: 0.438770600 - core[1].svIdle(17), plen 0: [] -EVENT[3874]: 0.439617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3875]: 0.439629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3876]: 0.439643125 - core[0].svIdle(17), plen 0: [] -EVENT[3877]: 0.439747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3878]: 0.439757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3879]: 0.439770775 - core[1].svIdle(17), plen 0: [] -EVENT[3880]: 0.440617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3881]: 0.440629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3882]: 0.440643125 - core[0].svIdle(17), plen 0: [] -EVENT[3883]: 0.440747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3884]: 0.440756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3885]: 0.440770600 - core[1].svIdle(17), plen 0: [] -EVENT[3886]: 0.441617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3887]: 0.441629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3888]: 0.441643250 - core[0].svIdle(17), plen 0: [] -EVENT[3889]: 0.441747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3890]: 0.441756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3891]: 0.441770600 - core[1].svIdle(17), plen 0: [] -EVENT[3892]: 0.442617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3893]: 0.442632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3894]: 0.442646225 - core[0].svIdle(17), plen 0: [] -EVENT[3895]: 0.442747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3896]: 0.442756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3897]: 0.442770600 - core[1].svIdle(17), plen 0: [] -EVENT[3898]: 0.443617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3899]: 0.443629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3900]: 0.443643125 - core[0].svIdle(17), plen 0: [] -EVENT[3901]: 0.443747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3902]: 0.443757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3903]: 0.443770775 - core[1].svIdle(17), plen 0: [] -EVENT[3904]: 0.444617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3905]: 0.444629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3906]: 0.444643125 - core[0].svIdle(17), plen 0: [] -EVENT[3907]: 0.444747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3908]: 0.444756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3909]: 0.444770600 - core[1].svIdle(17), plen 0: [] -EVENT[3910]: 0.445617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3911]: 0.445629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3912]: 0.445643250 - core[0].svIdle(17), plen 0: [] -EVENT[3913]: 0.445747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3914]: 0.445756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3915]: 0.445770600 - core[1].svIdle(17), plen 0: [] -EVENT[3916]: 0.446617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3917]: 0.446629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3918]: 0.446643175 - core[0].svIdle(17), plen 0: [] -EVENT[3919]: 0.446747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3920]: 0.446756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3921]: 0.446770600 - core[1].svIdle(17), plen 0: [] -EVENT[3922]: 0.447617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3923]: 0.447629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3924]: 0.447643125 - core[0].svIdle(17), plen 0: [] -EVENT[3925]: 0.447747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3926]: 0.447757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3927]: 0.447770775 - core[1].svIdle(17), plen 0: [] -EVENT[3928]: 0.448617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3929]: 0.448629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3930]: 0.448643125 - core[0].svIdle(17), plen 0: [] -EVENT[3931]: 0.448747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3932]: 0.448756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3933]: 0.448770600 - core[1].svIdle(17), plen 0: [] -EVENT[3934]: 0.449617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3935]: 0.449629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3936]: 0.449643250 - core[0].svIdle(17), plen 0: [] -EVENT[3937]: 0.449747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3938]: 0.449756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3939]: 0.449770600 - core[1].svIdle(17), plen 0: [] -EVENT[3940]: 0.450617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3941]: 0.450629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3942]: 0.450643175 - core[0].svIdle(17), plen 0: [] -EVENT[3943]: 0.450747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3944]: 0.450756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3945]: 0.450770600 - core[1].svIdle(17), plen 0: [] -EVENT[3946]: 0.451617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3947]: 0.451629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3948]: 0.451643125 - core[0].svIdle(17), plen 0: [] -EVENT[3949]: 0.451747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3950]: 0.451757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3951]: 0.451770775 - core[1].svIdle(17), plen 0: [] -EVENT[3952]: 0.452617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3953]: 0.452629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3954]: 0.452643125 - core[0].svIdle(17), plen 0: [] -EVENT[3955]: 0.452747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3956]: 0.452756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3957]: 0.452770600 - core[1].svIdle(17), plen 0: [] -EVENT[3958]: 0.453617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3959]: 0.453629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[3960]: 0.453638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3961]: 0.453652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[3962]: 0.453676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 32, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.453676950] HEAP: Allocated 32 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3963]: 0.453692625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3964]: 0.453706700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3965]: 0.453747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3966]: 0.453768500 - core[0].svPrint(26), plen 70: [msg: I (780) example: Task[0x3ffb7f40]: allocated 32 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.453768500] LOG: I (780) example: Task[0x3ffb7f40]: allocated 32 bytes @ 0x3ffb87e4 -EVENT[3967]: 0.453777725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3968]: 0.453785875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3969]: 0.453796475 - core[1].svIdle(17), plen 0: [] -EVENT[3970]: 0.453807275 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[3971]: 0.453820275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3972]: 0.453828975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[3973]: 0.453836875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3974]: 0.453845425 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[3975]: 0.453858150 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[3976]: 0.453866550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[3977]: 0.453874825 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[3978]: 0.453883825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3979]: 0.453893200 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3980]: 0.453902425 - core[0].svIdle(17), plen 0: [] -EVENT[3981]: 0.453917350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3982]: 0.453965450 - core[1].svPrint(26), plen 63: [msg: I (780) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.453965450] LOG: I (780) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[3983]: 0.453983900 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.453983900] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3984]: 0.454002600 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[3985]: 0.454015350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[3986]: 0.454024125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3987]: 0.454039550 - core[1].svIdle(17), plen 0: [] -EVENT[3988]: 0.454617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3989]: 0.454629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[3990]: 0.454638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[3991]: 0.454653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[3992]: 0.454676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 64, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.454676950] HEAP: Allocated 64 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[3993]: 0.454689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[3994]: 0.454703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3995]: 0.454747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[3996]: 0.454768575 - core[0].svPrint(26), plen 70: [msg: I (781) example: Task[0x3ffb82a0]: allocated 64 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.454768575] LOG: I (781) example: Task[0x3ffb82a0]: allocated 64 bytes @ 0x3ffb87e4 -EVENT[3997]: 0.454779650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[3998]: 0.454787675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[3999]: 0.454798525 - core[1].svIdle(17), plen 0: [] -EVENT[4000]: 0.454809375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[4001]: 0.454822325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4002]: 0.454831050 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[4003]: 0.454838975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4004]: 0.454847525 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[4005]: 0.454860225 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[4006]: 0.454868625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[4007]: 0.454876925 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[4008]: 0.454885650 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4009]: 0.454895100 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4010]: 0.454904350 - core[0].svIdle(17), plen 0: [] -EVENT[4011]: 0.454919175 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4012]: 0.454967225 - core[1].svPrint(26), plen 63: [msg: I (781) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.454967225] LOG: I (781) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[4013]: 0.454982800 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.454982800] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4014]: 0.455004325 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[4015]: 0.455017025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4016]: 0.455025825 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4017]: 0.455041400 - core[1].svIdle(17), plen 0: [] -EVENT[4018]: 0.455617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4019]: 0.455629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[4020]: 0.455638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4021]: 0.455652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[4022]: 0.455676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 96, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.455676925] HEAP: Allocated 96 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4023]: 0.455689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4024]: 0.455703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4025]: 0.455747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4026]: 0.455768550 - core[0].svPrint(26), plen 70: [msg: I (782) example: Task[0x3ffb8600]: allocated 96 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.455768550] LOG: I (782) example: Task[0x3ffb8600]: allocated 96 bytes @ 0x3ffb87e4 -EVENT[4027]: 0.455776750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4028]: 0.455784900 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4029]: 0.455795600 - core[1].svIdle(17), plen 0: [] -EVENT[4030]: 0.455806400 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[4031]: 0.455819400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4032]: 0.455828100 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[4033]: 0.455836025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4034]: 0.455844575 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[4035]: 0.455857375 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[4036]: 0.455865775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[4037]: 0.455878050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[4038]: 0.455886100 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4039]: 0.455894550 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4040]: 0.455904650 - core[0].svIdle(17), plen 0: [] -EVENT[4041]: 0.455919600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4042]: 0.455967700 - core[1].svPrint(26), plen 63: [msg: I (782) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.455967700] LOG: I (782) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[4043]: 0.455983050 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.455983050] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4044]: 0.456001625 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[4045]: 0.456014475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4046]: 0.456023225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4047]: 0.456038675 - core[1].svIdle(17), plen 0: [] -EVENT[4048]: 0.456617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4049]: 0.456629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4050]: 0.456643250 - core[0].svIdle(17), plen 0: [] -EVENT[4051]: 0.456747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4052]: 0.456756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4053]: 0.456770600 - core[1].svIdle(17), plen 0: [] -EVENT[4054]: 0.457617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4055]: 0.457629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4056]: 0.457643175 - core[0].svIdle(17), plen 0: [] -EVENT[4057]: 0.457747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4058]: 0.457756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4059]: 0.457770600 - core[1].svIdle(17), plen 0: [] -EVENT[4060]: 0.458617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4061]: 0.458629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4062]: 0.458643125 - core[0].svIdle(17), plen 0: [] -EVENT[4063]: 0.458747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4064]: 0.458757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4065]: 0.458770775 - core[1].svIdle(17), plen 0: [] -EVENT[4066]: 0.459617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4067]: 0.459629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4068]: 0.459643125 - core[0].svIdle(17), plen 0: [] -EVENT[4069]: 0.459747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4070]: 0.459756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4071]: 0.459770600 - core[1].svIdle(17), plen 0: [] -EVENT[4072]: 0.460617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4073]: 0.460631950 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4074]: 0.460645575 - core[0].svIdle(17), plen 0: [] -EVENT[4075]: 0.460747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4076]: 0.460756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4077]: 0.460770600 - core[1].svIdle(17), plen 0: [] -EVENT[4078]: 0.461617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4079]: 0.461629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4080]: 0.461643125 - core[0].svIdle(17), plen 0: [] -EVENT[4081]: 0.461747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4082]: 0.461757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4083]: 0.461770775 - core[1].svIdle(17), plen 0: [] -EVENT[4084]: 0.462617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4085]: 0.462629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4086]: 0.462643125 - core[0].svIdle(17), plen 0: [] -EVENT[4087]: 0.462747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4088]: 0.462756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4089]: 0.462770600 - core[1].svIdle(17), plen 0: [] -EVENT[4090]: 0.463617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4091]: 0.463629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4092]: 0.463643250 - core[0].svIdle(17), plen 0: [] -EVENT[4093]: 0.463747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4094]: 0.463756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4095]: 0.463770600 - core[1].svIdle(17), plen 0: [] -EVENT[4096]: 0.464617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4097]: 0.464629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4098]: 0.464643175 - core[0].svIdle(17), plen 0: [] -EVENT[4099]: 0.464747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4100]: 0.464756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4101]: 0.464770600 - core[1].svIdle(17), plen 0: [] -EVENT[4102]: 0.465617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4103]: 0.465629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4104]: 0.465643125 - core[0].svIdle(17), plen 0: [] -EVENT[4105]: 0.465747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4106]: 0.465757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4107]: 0.465770775 - core[1].svIdle(17), plen 0: [] -EVENT[4108]: 0.466617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4109]: 0.466629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4110]: 0.466643125 - core[0].svIdle(17), plen 0: [] -EVENT[4111]: 0.466747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4112]: 0.466756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4113]: 0.466770600 - core[1].svIdle(17), plen 0: [] -EVENT[4114]: 0.467617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4115]: 0.467629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4116]: 0.467643250 - core[0].svIdle(17), plen 0: [] -EVENT[4117]: 0.467747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4118]: 0.467756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4119]: 0.467770600 - core[1].svIdle(17), plen 0: [] -EVENT[4120]: 0.468617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4121]: 0.468629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4122]: 0.468643175 - core[0].svIdle(17), plen 0: [] -EVENT[4123]: 0.468747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4124]: 0.468756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4125]: 0.468770600 - core[1].svIdle(17), plen 0: [] -EVENT[4126]: 0.469617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4127]: 0.469629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4128]: 0.469643125 - core[0].svIdle(17), plen 0: [] -EVENT[4129]: 0.469747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4130]: 0.469757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4131]: 0.469770775 - core[1].svIdle(17), plen 0: [] -EVENT[4132]: 0.470617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4133]: 0.470629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4134]: 0.470643125 - core[0].svIdle(17), plen 0: [] -EVENT[4135]: 0.470747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4136]: 0.470756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4137]: 0.470770600 - core[1].svIdle(17), plen 0: [] -EVENT[4138]: 0.471617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4139]: 0.471629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4140]: 0.471643250 - core[0].svIdle(17), plen 0: [] -EVENT[4141]: 0.471747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4142]: 0.471756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4143]: 0.471770600 - core[1].svIdle(17), plen 0: [] -EVENT[4144]: 0.472617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4145]: 0.472632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4146]: 0.472646225 - core[0].svIdle(17), plen 0: [] -EVENT[4147]: 0.472747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4148]: 0.472756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4149]: 0.472770600 - core[1].svIdle(17), plen 0: [] -EVENT[4150]: 0.473617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4151]: 0.473629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4152]: 0.473643125 - core[0].svIdle(17), plen 0: [] -EVENT[4153]: 0.473747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4154]: 0.473757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4155]: 0.473770775 - core[1].svIdle(17), plen 0: [] -EVENT[4156]: 0.474617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4157]: 0.474629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4158]: 0.474643125 - core[0].svIdle(17), plen 0: [] -EVENT[4159]: 0.474747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4160]: 0.474756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4161]: 0.474770600 - core[1].svIdle(17), plen 0: [] -EVENT[4162]: 0.475617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4163]: 0.475629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4164]: 0.475643250 - core[0].svIdle(17), plen 0: [] -EVENT[4165]: 0.475747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4166]: 0.475756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4167]: 0.475770600 - core[1].svIdle(17), plen 0: [] -EVENT[4168]: 0.476617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4169]: 0.476629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4170]: 0.476643175 - core[0].svIdle(17), plen 0: [] -EVENT[4171]: 0.476747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4172]: 0.476756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4173]: 0.476770600 - core[1].svIdle(17), plen 0: [] -EVENT[4174]: 0.477617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4175]: 0.477629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4176]: 0.477643125 - core[0].svIdle(17), plen 0: [] -EVENT[4177]: 0.477747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4178]: 0.477757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4179]: 0.477770775 - core[1].svIdle(17), plen 0: [] -EVENT[4180]: 0.478617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4181]: 0.478629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4182]: 0.478643125 - core[0].svIdle(17), plen 0: [] -EVENT[4183]: 0.478747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4184]: 0.478756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4185]: 0.478770600 - core[1].svIdle(17), plen 0: [] -EVENT[4186]: 0.479617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4187]: 0.479629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4188]: 0.479643250 - core[0].svIdle(17), plen 0: [] -EVENT[4189]: 0.479747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4190]: 0.479756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4191]: 0.479770600 - core[1].svIdle(17), plen 0: [] -EVENT[4192]: 0.480617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4193]: 0.480629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4194]: 0.480643175 - core[0].svIdle(17), plen 0: [] -EVENT[4195]: 0.480747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4196]: 0.480756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4197]: 0.480770600 - core[1].svIdle(17), plen 0: [] -EVENT[4198]: 0.481617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4199]: 0.481629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4200]: 0.481643125 - core[0].svIdle(17), plen 0: [] -EVENT[4201]: 0.481747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4202]: 0.481757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4203]: 0.481770775 - core[1].svIdle(17), plen 0: [] -EVENT[4204]: 0.482617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4205]: 0.482629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4206]: 0.482643125 - core[0].svIdle(17), plen 0: [] -EVENT[4207]: 0.482747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4208]: 0.482756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4209]: 0.482770600 - core[1].svIdle(17), plen 0: [] -EVENT[4210]: 0.483617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4211]: 0.483629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[4212]: 0.483638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4213]: 0.483652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[4214]: 0.483676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 34, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.483676950] HEAP: Allocated 34 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4215]: 0.483692625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4216]: 0.483706700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4217]: 0.483747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4218]: 0.483768500 - core[0].svPrint(26), plen 70: [msg: I (810) example: Task[0x3ffb7f40]: allocated 34 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.483768500] LOG: I (810) example: Task[0x3ffb7f40]: allocated 34 bytes @ 0x3ffb87e4 -EVENT[4219]: 0.483777725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4220]: 0.483785875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4221]: 0.483796475 - core[1].svIdle(17), plen 0: [] -EVENT[4222]: 0.483807275 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[4223]: 0.483820275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4224]: 0.483828975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[4225]: 0.483836875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4226]: 0.483845425 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[4227]: 0.483858150 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[4228]: 0.483866550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[4229]: 0.483874825 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[4230]: 0.483883825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4231]: 0.483893200 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4232]: 0.483902425 - core[0].svIdle(17), plen 0: [] -EVENT[4233]: 0.483917350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4234]: 0.483965450 - core[1].svPrint(26), plen 63: [msg: I (810) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.483965450] LOG: I (810) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[4235]: 0.483983900 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.483983900] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4236]: 0.484002600 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[4237]: 0.484015350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4238]: 0.484024125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4239]: 0.484039550 - core[1].svIdle(17), plen 0: [] -EVENT[4240]: 0.484617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4241]: 0.484629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[4242]: 0.484638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4243]: 0.484653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[4244]: 0.484676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 68, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.484676950] HEAP: Allocated 68 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4245]: 0.484689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4246]: 0.484703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4247]: 0.484747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4248]: 0.484768575 - core[0].svPrint(26), plen 70: [msg: I (811) example: Task[0x3ffb82a0]: allocated 68 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.484768575] LOG: I (811) example: Task[0x3ffb82a0]: allocated 68 bytes @ 0x3ffb87e4 -EVENT[4249]: 0.484779650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4250]: 0.484787675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4251]: 0.484798525 - core[1].svIdle(17), plen 0: [] -EVENT[4252]: 0.484809375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[4253]: 0.484822325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4254]: 0.484831050 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[4255]: 0.484838975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4256]: 0.484847525 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[4257]: 0.484860225 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[4258]: 0.484868625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[4259]: 0.484876925 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[4260]: 0.484885650 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4261]: 0.484895100 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4262]: 0.484904350 - core[0].svIdle(17), plen 0: [] -EVENT[4263]: 0.484919175 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4264]: 0.484967225 - core[1].svPrint(26), plen 63: [msg: I (811) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.484967225] LOG: I (811) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[4265]: 0.484982800 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.484982800] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4266]: 0.485004325 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[4267]: 0.485017025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4268]: 0.485025825 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4269]: 0.485041400 - core[1].svIdle(17), plen 0: [] -EVENT[4270]: 0.485617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4271]: 0.485629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[4272]: 0.485638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4273]: 0.485652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[4274]: 0.485676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 102, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.485676925] HEAP: Allocated 102 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4275]: 0.485689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4276]: 0.485703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4277]: 0.485747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4278]: 0.485768975 - core[0].svPrint(26), plen 71: [msg: I (812) example: Task[0x3ffb8600]: allocated 102 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.485768975] LOG: I (812) example: Task[0x3ffb8600]: allocated 102 bytes @ 0x3ffb87e4 -EVENT[4279]: 0.485778000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4280]: 0.485786400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4281]: 0.485796825 - core[1].svIdle(17), plen 0: [] -EVENT[4282]: 0.485807675 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[4283]: 0.485820625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4284]: 0.485829325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[4285]: 0.485837250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4286]: 0.485845800 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[4287]: 0.485858525 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[4288]: 0.485866925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[4289]: 0.485879175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[4290]: 0.485887200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4291]: 0.485895650 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4292]: 0.485905775 - core[0].svIdle(17), plen 0: [] -EVENT[4293]: 0.485920700 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4294]: 0.485968800 - core[1].svPrint(26), plen 63: [msg: I (812) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.485968800] LOG: I (812) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[4295]: 0.485984175 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.485984175] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4296]: 0.486002750 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[4297]: 0.486015575 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4298]: 0.486024350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4299]: 0.486039775 - core[1].svIdle(17), plen 0: [] -EVENT[4300]: 0.486617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4301]: 0.486629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4302]: 0.486643250 - core[0].svIdle(17), plen 0: [] -EVENT[4303]: 0.486747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4304]: 0.486756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4305]: 0.486770600 - core[1].svIdle(17), plen 0: [] -EVENT[4306]: 0.487617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4307]: 0.487629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4308]: 0.487643175 - core[0].svIdle(17), plen 0: [] -EVENT[4309]: 0.487747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4310]: 0.487756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4311]: 0.487770600 - core[1].svIdle(17), plen 0: [] -EVENT[4312]: 0.488617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4313]: 0.488629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4314]: 0.488643125 - core[0].svIdle(17), plen 0: [] -EVENT[4315]: 0.488747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4316]: 0.488757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4317]: 0.488770775 - core[1].svIdle(17), plen 0: [] -EVENT[4318]: 0.489617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4319]: 0.489629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4320]: 0.489643125 - core[0].svIdle(17), plen 0: [] -EVENT[4321]: 0.489747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4322]: 0.489756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4323]: 0.489770600 - core[1].svIdle(17), plen 0: [] -EVENT[4324]: 0.490617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4325]: 0.490632575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4326]: 0.490646200 - core[0].svIdle(17), plen 0: [] -EVENT[4327]: 0.490747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4328]: 0.490756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4329]: 0.490770600 - core[1].svIdle(17), plen 0: [] -EVENT[4330]: 0.491617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4331]: 0.491629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4332]: 0.491643125 - core[0].svIdle(17), plen 0: [] -EVENT[4333]: 0.491747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4334]: 0.491757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4335]: 0.491770775 - core[1].svIdle(17), plen 0: [] -EVENT[4336]: 0.492617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4337]: 0.492629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4338]: 0.492643125 - core[0].svIdle(17), plen 0: [] -EVENT[4339]: 0.492747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4340]: 0.492756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4341]: 0.492770600 - core[1].svIdle(17), plen 0: [] -EVENT[4342]: 0.493617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4343]: 0.493629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4344]: 0.493643250 - core[0].svIdle(17), plen 0: [] -EVENT[4345]: 0.493747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4346]: 0.493756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4347]: 0.493770600 - core[1].svIdle(17), plen 0: [] -EVENT[4348]: 0.494617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4349]: 0.494629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4350]: 0.494643175 - core[0].svIdle(17), plen 0: [] -EVENT[4351]: 0.494747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4352]: 0.494756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4353]: 0.494770600 - core[1].svIdle(17), plen 0: [] -EVENT[4354]: 0.495617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4355]: 0.495629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4356]: 0.495643125 - core[0].svIdle(17), plen 0: [] -EVENT[4357]: 0.495747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4358]: 0.495757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4359]: 0.495770775 - core[1].svIdle(17), plen 0: [] -EVENT[4360]: 0.496617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4361]: 0.496629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4362]: 0.496643125 - core[0].svIdle(17), plen 0: [] -EVENT[4363]: 0.496747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4364]: 0.496756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4365]: 0.496770600 - core[1].svIdle(17), plen 0: [] -EVENT[4366]: 0.497617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4367]: 0.497629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4368]: 0.497643250 - core[0].svIdle(17), plen 0: [] -EVENT[4369]: 0.497747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4370]: 0.497756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4371]: 0.497770600 - core[1].svIdle(17), plen 0: [] -EVENT[4372]: 0.498617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4373]: 0.498629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4374]: 0.498643175 - core[0].svIdle(17), plen 0: [] -EVENT[4375]: 0.498747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4376]: 0.498756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4377]: 0.498770600 - core[1].svIdle(17), plen 0: [] -EVENT[4378]: 0.499617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4379]: 0.499629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4380]: 0.499643125 - core[0].svIdle(17), plen 0: [] -EVENT[4381]: 0.499747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4382]: 0.499757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4383]: 0.499770775 - core[1].svIdle(17), plen 0: [] -EVENT[4384]: 0.500617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4385]: 0.500629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4386]: 0.500643125 - core[0].svIdle(17), plen 0: [] -EVENT[4387]: 0.500747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4388]: 0.500756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4389]: 0.500770600 - core[1].svIdle(17), plen 0: [] -EVENT[4390]: 0.501617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4391]: 0.501629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4392]: 0.501643250 - core[0].svIdle(17), plen 0: [] -EVENT[4393]: 0.501747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4394]: 0.501756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4395]: 0.501770600 - core[1].svIdle(17), plen 0: [] -EVENT[4396]: 0.502617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4397]: 0.502632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4398]: 0.502646225 - core[0].svIdle(17), plen 0: [] -EVENT[4399]: 0.502747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4400]: 0.502756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4401]: 0.502770600 - core[1].svIdle(17), plen 0: [] -EVENT[4402]: 0.503617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4403]: 0.503629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4404]: 0.503643125 - core[0].svIdle(17), plen 0: [] -EVENT[4405]: 0.503747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4406]: 0.503757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4407]: 0.503770775 - core[1].svIdle(17), plen 0: [] -EVENT[4408]: 0.504617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4409]: 0.504629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4410]: 0.504643125 - core[0].svIdle(17), plen 0: [] -EVENT[4411]: 0.504747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4412]: 0.504756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4413]: 0.504770600 - core[1].svIdle(17), plen 0: [] -EVENT[4414]: 0.505617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4415]: 0.505629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4416]: 0.505643250 - core[0].svIdle(17), plen 0: [] -EVENT[4417]: 0.505747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4418]: 0.505756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4419]: 0.505770600 - core[1].svIdle(17), plen 0: [] -EVENT[4420]: 0.506617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4421]: 0.506629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4422]: 0.506643175 - core[0].svIdle(17), plen 0: [] -EVENT[4423]: 0.506747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4424]: 0.506756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4425]: 0.506770600 - core[1].svIdle(17), plen 0: [] -EVENT[4426]: 0.507617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4427]: 0.507629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4428]: 0.507643125 - core[0].svIdle(17), plen 0: [] -EVENT[4429]: 0.507747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4430]: 0.507757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4431]: 0.507770775 - core[1].svIdle(17), plen 0: [] -EVENT[4432]: 0.508617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4433]: 0.508629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4434]: 0.508643125 - core[0].svIdle(17), plen 0: [] -EVENT[4435]: 0.508747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4436]: 0.508756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4437]: 0.508770600 - core[1].svIdle(17), plen 0: [] -EVENT[4438]: 0.509617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4439]: 0.509629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4440]: 0.509643250 - core[0].svIdle(17), plen 0: [] -EVENT[4441]: 0.509747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4442]: 0.509756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4443]: 0.509770600 - core[1].svIdle(17), plen 0: [] -EVENT[4444]: 0.510617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4445]: 0.510629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4446]: 0.510643175 - core[0].svIdle(17), plen 0: [] -EVENT[4447]: 0.510747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4448]: 0.510756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4449]: 0.510770600 - core[1].svIdle(17), plen 0: [] -EVENT[4450]: 0.511617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4451]: 0.511629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4452]: 0.511643125 - core[0].svIdle(17), plen 0: [] -EVENT[4453]: 0.511747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4454]: 0.511757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4455]: 0.511770775 - core[1].svIdle(17), plen 0: [] -EVENT[4456]: 0.512617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4457]: 0.512629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4458]: 0.512643125 - core[0].svIdle(17), plen 0: [] -EVENT[4459]: 0.512747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4460]: 0.512756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4461]: 0.512770600 - core[1].svIdle(17), plen 0: [] -EVENT[4462]: 0.513617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4463]: 0.513629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[4464]: 0.513638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4465]: 0.513652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[4466]: 0.513676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 36, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.513676950] HEAP: Allocated 36 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4467]: 0.513692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4468]: 0.513706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4469]: 0.513747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4470]: 0.513769150 - core[0].svPrint(26), plen 70: [msg: I (840) example: Task[0x3ffb7f40]: allocated 36 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.513769150] LOG: I (840) example: Task[0x3ffb7f40]: allocated 36 bytes @ 0x3ffb87e4 -EVENT[4471]: 0.513778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4472]: 0.513786600 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4473]: 0.513797000 - core[1].svIdle(17), plen 0: [] -EVENT[4474]: 0.513807775 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[4475]: 0.513820800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4476]: 0.513829500 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[4477]: 0.513837400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4478]: 0.513845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[4479]: 0.513858675 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[4480]: 0.513867050 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[4481]: 0.513875325 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[4482]: 0.513884325 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4483]: 0.513893700 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4484]: 0.513902925 - core[0].svIdle(17), plen 0: [] -EVENT[4485]: 0.513917850 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4486]: 0.513965950 - core[1].svPrint(26), plen 63: [msg: I (840) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.513965950] LOG: I (840) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[4487]: 0.513984425 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.513984425] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4488]: 0.514003125 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[4489]: 0.514015875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4490]: 0.514024650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4491]: 0.514040075 - core[1].svIdle(17), plen 0: [] -EVENT[4492]: 0.514617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4493]: 0.514629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[4494]: 0.514638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4495]: 0.514653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[4496]: 0.514676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 72, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.514676950] HEAP: Allocated 72 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4497]: 0.514689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4498]: 0.514703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4499]: 0.514747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4500]: 0.514768575 - core[0].svPrint(26), plen 70: [msg: I (841) example: Task[0x3ffb82a0]: allocated 72 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.514768575] LOG: I (841) example: Task[0x3ffb82a0]: allocated 72 bytes @ 0x3ffb87e4 -EVENT[4501]: 0.514779675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4502]: 0.514787700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4503]: 0.514798450 - core[1].svIdle(17), plen 0: [] -EVENT[4504]: 0.514809325 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[4505]: 0.514822275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4506]: 0.514830975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[4507]: 0.514838900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4508]: 0.514847450 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[4509]: 0.514860175 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[4510]: 0.514868550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[4511]: 0.514876850 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[4512]: 0.514885600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4513]: 0.514895025 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4514]: 0.514904300 - core[0].svIdle(17), plen 0: [] -EVENT[4515]: 0.514919125 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4516]: 0.514967175 - core[1].svPrint(26), plen 63: [msg: I (841) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.514967175] LOG: I (841) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[4517]: 0.514982725 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.514982725] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4518]: 0.515004275 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[4519]: 0.515016975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4520]: 0.515025775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4521]: 0.515041350 - core[1].svIdle(17), plen 0: [] -EVENT[4522]: 0.515617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4523]: 0.515629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[4524]: 0.515638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4525]: 0.515652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[4526]: 0.515676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 108, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.515676925] HEAP: Allocated 108 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4527]: 0.515689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4528]: 0.515703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4529]: 0.515747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4530]: 0.515768975 - core[0].svPrint(26), plen 71: [msg: I (842) example: Task[0x3ffb8600]: allocated 108 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.515768975] LOG: I (842) example: Task[0x3ffb8600]: allocated 108 bytes @ 0x3ffb87e4 -EVENT[4531]: 0.515778000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4532]: 0.515786400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4533]: 0.515796825 - core[1].svIdle(17), plen 0: [] -EVENT[4534]: 0.515807675 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[4535]: 0.515820625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4536]: 0.515829325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[4537]: 0.515837250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4538]: 0.515845800 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[4539]: 0.515858525 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[4540]: 0.515866925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[4541]: 0.515879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[4542]: 0.515887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4543]: 0.515895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4544]: 0.515905825 - core[0].svIdle(17), plen 0: [] -EVENT[4545]: 0.515920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4546]: 0.515968850 - core[1].svPrint(26), plen 63: [msg: I (842) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.515968850] LOG: I (842) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[4547]: 0.515984225 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.515984225] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4548]: 0.516002800 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[4549]: 0.516015625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4550]: 0.516024400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4551]: 0.516039825 - core[1].svIdle(17), plen 0: [] -EVENT[4552]: 0.516617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4553]: 0.516629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4554]: 0.516643250 - core[0].svIdle(17), plen 0: [] -EVENT[4555]: 0.516747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4556]: 0.516756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4557]: 0.516770600 - core[1].svIdle(17), plen 0: [] -EVENT[4558]: 0.517617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4559]: 0.517629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4560]: 0.517643175 - core[0].svIdle(17), plen 0: [] -EVENT[4561]: 0.517747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4562]: 0.517756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4563]: 0.517770600 - core[1].svIdle(17), plen 0: [] -EVENT[4564]: 0.518617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4565]: 0.518629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4566]: 0.518643125 - core[0].svIdle(17), plen 0: [] -EVENT[4567]: 0.518747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4568]: 0.518757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4569]: 0.518770775 - core[1].svIdle(17), plen 0: [] -EVENT[4570]: 0.519617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4571]: 0.519629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4572]: 0.519643125 - core[0].svIdle(17), plen 0: [] -EVENT[4573]: 0.519747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4574]: 0.519756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4575]: 0.519770600 - core[1].svIdle(17), plen 0: [] -EVENT[4576]: 0.520617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4577]: 0.520633950 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4578]: 0.520647575 - core[0].svIdle(17), plen 0: [] -EVENT[4579]: 0.520747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4580]: 0.520756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4581]: 0.520770600 - core[1].svIdle(17), plen 0: [] -EVENT[4582]: 0.521617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4583]: 0.521629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4584]: 0.521643125 - core[0].svIdle(17), plen 0: [] -EVENT[4585]: 0.521747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4586]: 0.521757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4587]: 0.521770775 - core[1].svIdle(17), plen 0: [] -EVENT[4588]: 0.522617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4589]: 0.522629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4590]: 0.522643125 - core[0].svIdle(17), plen 0: [] -EVENT[4591]: 0.522747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4592]: 0.522756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4593]: 0.522770600 - core[1].svIdle(17), plen 0: [] -EVENT[4594]: 0.523617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4595]: 0.523629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4596]: 0.523643250 - core[0].svIdle(17), plen 0: [] -EVENT[4597]: 0.523747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4598]: 0.523756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4599]: 0.523770600 - core[1].svIdle(17), plen 0: [] -EVENT[4600]: 0.524617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4601]: 0.524629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4602]: 0.524643175 - core[0].svIdle(17), plen 0: [] -EVENT[4603]: 0.524747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4604]: 0.524756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4605]: 0.524770600 - core[1].svIdle(17), plen 0: [] -EVENT[4606]: 0.525617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4607]: 0.525629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4608]: 0.525643125 - core[0].svIdle(17), plen 0: [] -EVENT[4609]: 0.525747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4610]: 0.525757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4611]: 0.525770775 - core[1].svIdle(17), plen 0: [] -EVENT[4612]: 0.526617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4613]: 0.526629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4614]: 0.526643125 - core[0].svIdle(17), plen 0: [] -EVENT[4615]: 0.526747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4616]: 0.526756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4617]: 0.526770600 - core[1].svIdle(17), plen 0: [] -EVENT[4618]: 0.527617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4619]: 0.527629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4620]: 0.527643250 - core[0].svIdle(17), plen 0: [] -EVENT[4621]: 0.527747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4622]: 0.527756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4623]: 0.527770600 - core[1].svIdle(17), plen 0: [] -EVENT[4624]: 0.528617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4625]: 0.528629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4626]: 0.528643175 - core[0].svIdle(17), plen 0: [] -EVENT[4627]: 0.528747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4628]: 0.528756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4629]: 0.528770600 - core[1].svIdle(17), plen 0: [] -EVENT[4630]: 0.529617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4631]: 0.529629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4632]: 0.529643125 - core[0].svIdle(17), plen 0: [] -EVENT[4633]: 0.529747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4634]: 0.529757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4635]: 0.529770775 - core[1].svIdle(17), plen 0: [] -EVENT[4636]: 0.530617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4637]: 0.530629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4638]: 0.530643125 - core[0].svIdle(17), plen 0: [] -EVENT[4639]: 0.530747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4640]: 0.530756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4641]: 0.530770600 - core[1].svIdle(17), plen 0: [] -EVENT[4642]: 0.531617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4643]: 0.531629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4644]: 0.531643250 - core[0].svIdle(17), plen 0: [] -EVENT[4645]: 0.531747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4646]: 0.531756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4647]: 0.531770600 - core[1].svIdle(17), plen 0: [] -EVENT[4648]: 0.532617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4649]: 0.532632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4650]: 0.532646225 - core[0].svIdle(17), plen 0: [] -EVENT[4651]: 0.532747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4652]: 0.532756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4653]: 0.532770600 - core[1].svIdle(17), plen 0: [] -EVENT[4654]: 0.533617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4655]: 0.533629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4656]: 0.533643125 - core[0].svIdle(17), plen 0: [] -EVENT[4657]: 0.533747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4658]: 0.533757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4659]: 0.533770775 - core[1].svIdle(17), plen 0: [] -EVENT[4660]: 0.534617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4661]: 0.534629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4662]: 0.534643125 - core[0].svIdle(17), plen 0: [] -EVENT[4663]: 0.534747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4664]: 0.534756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4665]: 0.534770600 - core[1].svIdle(17), plen 0: [] -EVENT[4666]: 0.535617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4667]: 0.535629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4668]: 0.535643250 - core[0].svIdle(17), plen 0: [] -EVENT[4669]: 0.535747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4670]: 0.535756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4671]: 0.535770600 - core[1].svIdle(17), plen 0: [] -EVENT[4672]: 0.536617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4673]: 0.536629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4674]: 0.536643175 - core[0].svIdle(17), plen 0: [] -EVENT[4675]: 0.536747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4676]: 0.536756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4677]: 0.536770600 - core[1].svIdle(17), plen 0: [] -EVENT[4678]: 0.537617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4679]: 0.537629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4680]: 0.537643125 - core[0].svIdle(17), plen 0: [] -EVENT[4681]: 0.537747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4682]: 0.537757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4683]: 0.537770775 - core[1].svIdle(17), plen 0: [] -EVENT[4684]: 0.538617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4685]: 0.538629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4686]: 0.538643125 - core[0].svIdle(17), plen 0: [] -EVENT[4687]: 0.538747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4688]: 0.538756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4689]: 0.538770600 - core[1].svIdle(17), plen 0: [] -EVENT[4690]: 0.539617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4691]: 0.539629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4692]: 0.539643250 - core[0].svIdle(17), plen 0: [] -EVENT[4693]: 0.539747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4694]: 0.539756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4695]: 0.539770600 - core[1].svIdle(17), plen 0: [] -EVENT[4696]: 0.540617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4697]: 0.540629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4698]: 0.540643175 - core[0].svIdle(17), plen 0: [] -EVENT[4699]: 0.540747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4700]: 0.540756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4701]: 0.540770600 - core[1].svIdle(17), plen 0: [] -EVENT[4702]: 0.541617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4703]: 0.541629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4704]: 0.541643125 - core[0].svIdle(17), plen 0: [] -EVENT[4705]: 0.541747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4706]: 0.541757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4707]: 0.541770775 - core[1].svIdle(17), plen 0: [] -EVENT[4708]: 0.542617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4709]: 0.542629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4710]: 0.542643125 - core[0].svIdle(17), plen 0: [] -EVENT[4711]: 0.542747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4712]: 0.542756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4713]: 0.542770600 - core[1].svIdle(17), plen 0: [] -EVENT[4714]: 0.543617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4715]: 0.543629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[4716]: 0.543638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4717]: 0.543652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[4718]: 0.543676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 38, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.543676950] HEAP: Allocated 38 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4719]: 0.543692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4720]: 0.543706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4721]: 0.543747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4722]: 0.543768825 - core[0].svPrint(26), plen 70: [msg: I (870) example: Task[0x3ffb7f40]: allocated 38 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.543768825] LOG: I (870) example: Task[0x3ffb7f40]: allocated 38 bytes @ 0x3ffb87e4 -EVENT[4723]: 0.543778050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4724]: 0.543786400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4725]: 0.543796925 - core[1].svIdle(17), plen 0: [] -EVENT[4726]: 0.543807700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[4727]: 0.543820725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4728]: 0.543829425 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[4729]: 0.543837325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4730]: 0.543845875 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[4731]: 0.543858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[4732]: 0.543866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[4733]: 0.543875250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[4734]: 0.543884250 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4735]: 0.543893625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4736]: 0.543902850 - core[0].svIdle(17), plen 0: [] -EVENT[4737]: 0.543917775 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4738]: 0.543965875 - core[1].svPrint(26), plen 63: [msg: I (870) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.543965875] LOG: I (870) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[4739]: 0.543983750 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.543983750] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4740]: 0.544002450 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[4741]: 0.544015225 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4742]: 0.544023975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4743]: 0.544039425 - core[1].svIdle(17), plen 0: [] -EVENT[4744]: 0.544617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4745]: 0.544629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[4746]: 0.544638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4747]: 0.544653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[4748]: 0.544676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 76, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.544676950] HEAP: Allocated 76 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4749]: 0.544689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4750]: 0.544703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4751]: 0.544747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4752]: 0.544768575 - core[0].svPrint(26), plen 70: [msg: I (871) example: Task[0x3ffb82a0]: allocated 76 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.544768575] LOG: I (871) example: Task[0x3ffb82a0]: allocated 76 bytes @ 0x3ffb87e4 -EVENT[4753]: 0.544780275 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4754]: 0.544788600 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4755]: 0.544799050 - core[1].svIdle(17), plen 0: [] -EVENT[4756]: 0.544809900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[4757]: 0.544822850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4758]: 0.544831575 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[4759]: 0.544839500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4760]: 0.544848050 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[4761]: 0.544860750 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[4762]: 0.544869150 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[4763]: 0.544877450 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[4764]: 0.544886175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4765]: 0.544895625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4766]: 0.544904875 - core[0].svIdle(17), plen 0: [] -EVENT[4767]: 0.544919700 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4768]: 0.544967750 - core[1].svPrint(26), plen 63: [msg: I (871) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.544967750] LOG: I (871) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[4769]: 0.544983325 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.544983325] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4770]: 0.545004275 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[4771]: 0.545016975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4772]: 0.545025775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4773]: 0.545041350 - core[1].svIdle(17), plen 0: [] -EVENT[4774]: 0.545617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4775]: 0.545629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[4776]: 0.545638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4777]: 0.545652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[4778]: 0.545676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 114, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.545676925] HEAP: Allocated 114 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4779]: 0.545689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4780]: 0.545703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4781]: 0.545747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4782]: 0.545768975 - core[0].svPrint(26), plen 71: [msg: I (872) example: Task[0x3ffb8600]: allocated 114 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.545768975] LOG: I (872) example: Task[0x3ffb8600]: allocated 114 bytes @ 0x3ffb87e4 -EVENT[4783]: 0.545778000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4784]: 0.545786400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4785]: 0.545796825 - core[1].svIdle(17), plen 0: [] -EVENT[4786]: 0.545807675 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[4787]: 0.545820625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4788]: 0.545829325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[4789]: 0.545837250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4790]: 0.545845800 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[4791]: 0.545858525 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[4792]: 0.545866925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[4793]: 0.545878150 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[4794]: 0.545886325 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4795]: 0.545894700 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4796]: 0.545904975 - core[0].svIdle(17), plen 0: [] -EVENT[4797]: 0.545919900 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4798]: 0.545968000 - core[1].svPrint(26), plen 63: [msg: I (872) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.545968000] LOG: I (872) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[4799]: 0.545983375 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.545983375] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4800]: 0.546001950 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[4801]: 0.546014775 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4802]: 0.546023550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4803]: 0.546038975 - core[1].svIdle(17), plen 0: [] -EVENT[4804]: 0.546617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4805]: 0.546629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4806]: 0.546643250 - core[0].svIdle(17), plen 0: [] -EVENT[4807]: 0.546747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4808]: 0.546756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4809]: 0.546770600 - core[1].svIdle(17), plen 0: [] -EVENT[4810]: 0.547617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4811]: 0.547629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4812]: 0.547643175 - core[0].svIdle(17), plen 0: [] -EVENT[4813]: 0.547747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4814]: 0.547756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4815]: 0.547770600 - core[1].svIdle(17), plen 0: [] -EVENT[4816]: 0.548617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4817]: 0.548629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4818]: 0.548643125 - core[0].svIdle(17), plen 0: [] -EVENT[4819]: 0.548747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4820]: 0.548757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4821]: 0.548770775 - core[1].svIdle(17), plen 0: [] -EVENT[4822]: 0.549617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4823]: 0.549629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4824]: 0.549643125 - core[0].svIdle(17), plen 0: [] -EVENT[4825]: 0.549747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4826]: 0.549756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4827]: 0.549770600 - core[1].svIdle(17), plen 0: [] -EVENT[4828]: 0.550617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4829]: 0.550632575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4830]: 0.550646200 - core[0].svIdle(17), plen 0: [] -EVENT[4831]: 0.550747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4832]: 0.550756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4833]: 0.550770600 - core[1].svIdle(17), plen 0: [] -EVENT[4834]: 0.551617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4835]: 0.551629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4836]: 0.551643125 - core[0].svIdle(17), plen 0: [] -EVENT[4837]: 0.551747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4838]: 0.551757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4839]: 0.551770775 - core[1].svIdle(17), plen 0: [] -EVENT[4840]: 0.552617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4841]: 0.552629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4842]: 0.552643125 - core[0].svIdle(17), plen 0: [] -EVENT[4843]: 0.552747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4844]: 0.552756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4845]: 0.552770600 - core[1].svIdle(17), plen 0: [] -EVENT[4846]: 0.553617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4847]: 0.553629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4848]: 0.553643250 - core[0].svIdle(17), plen 0: [] -EVENT[4849]: 0.553747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4850]: 0.553756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4851]: 0.553770600 - core[1].svIdle(17), plen 0: [] -EVENT[4852]: 0.554617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4853]: 0.554629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4854]: 0.554643175 - core[0].svIdle(17), plen 0: [] -EVENT[4855]: 0.554747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4856]: 0.554756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4857]: 0.554770600 - core[1].svIdle(17), plen 0: [] -EVENT[4858]: 0.555617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4859]: 0.555629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4860]: 0.555643125 - core[0].svIdle(17), plen 0: [] -EVENT[4861]: 0.555747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4862]: 0.555757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4863]: 0.555770775 - core[1].svIdle(17), plen 0: [] -EVENT[4864]: 0.556617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4865]: 0.556629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4866]: 0.556643125 - core[0].svIdle(17), plen 0: [] -EVENT[4867]: 0.556747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4868]: 0.556756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4869]: 0.556770600 - core[1].svIdle(17), plen 0: [] -EVENT[4870]: 0.557617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4871]: 0.557629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4872]: 0.557643250 - core[0].svIdle(17), plen 0: [] -EVENT[4873]: 0.557747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4874]: 0.557756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4875]: 0.557770600 - core[1].svIdle(17), plen 0: [] -EVENT[4876]: 0.558617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4877]: 0.558629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4878]: 0.558643175 - core[0].svIdle(17), plen 0: [] -EVENT[4879]: 0.558747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4880]: 0.558756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4881]: 0.558770600 - core[1].svIdle(17), plen 0: [] -EVENT[4882]: 0.559617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4883]: 0.559629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4884]: 0.559643125 - core[0].svIdle(17), plen 0: [] -EVENT[4885]: 0.559747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4886]: 0.559757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4887]: 0.559770775 - core[1].svIdle(17), plen 0: [] -EVENT[4888]: 0.560617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4889]: 0.560629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4890]: 0.560643125 - core[0].svIdle(17), plen 0: [] -EVENT[4891]: 0.560747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4892]: 0.560756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4893]: 0.560770600 - core[1].svIdle(17), plen 0: [] -EVENT[4894]: 0.561617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4895]: 0.561629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4896]: 0.561643250 - core[0].svIdle(17), plen 0: [] -EVENT[4897]: 0.561747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4898]: 0.561756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4899]: 0.561770600 - core[1].svIdle(17), plen 0: [] -EVENT[4900]: 0.562617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4901]: 0.562631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4902]: 0.562645550 - core[0].svIdle(17), plen 0: [] -EVENT[4903]: 0.562747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4904]: 0.562756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4905]: 0.562770600 - core[1].svIdle(17), plen 0: [] -EVENT[4906]: 0.563617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4907]: 0.563629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4908]: 0.563643125 - core[0].svIdle(17), plen 0: [] -EVENT[4909]: 0.563747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4910]: 0.563757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4911]: 0.563770775 - core[1].svIdle(17), plen 0: [] -EVENT[4912]: 0.564617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4913]: 0.564629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4914]: 0.564643125 - core[0].svIdle(17), plen 0: [] -EVENT[4915]: 0.564747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4916]: 0.564756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4917]: 0.564770600 - core[1].svIdle(17), plen 0: [] -EVENT[4918]: 0.565617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4919]: 0.565629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4920]: 0.565643250 - core[0].svIdle(17), plen 0: [] -EVENT[4921]: 0.565747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4922]: 0.565756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4923]: 0.565770600 - core[1].svIdle(17), plen 0: [] -EVENT[4924]: 0.566617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4925]: 0.566629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4926]: 0.566643175 - core[0].svIdle(17), plen 0: [] -EVENT[4927]: 0.566747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4928]: 0.566756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4929]: 0.566770600 - core[1].svIdle(17), plen 0: [] -EVENT[4930]: 0.567617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4931]: 0.567629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4932]: 0.567643125 - core[0].svIdle(17), plen 0: [] -EVENT[4933]: 0.567747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4934]: 0.567757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4935]: 0.567770775 - core[1].svIdle(17), plen 0: [] -EVENT[4936]: 0.568617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4937]: 0.568629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4938]: 0.568643125 - core[0].svIdle(17), plen 0: [] -EVENT[4939]: 0.568747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4940]: 0.568756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4941]: 0.568770600 - core[1].svIdle(17), plen 0: [] -EVENT[4942]: 0.569617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4943]: 0.569629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4944]: 0.569643250 - core[0].svIdle(17), plen 0: [] -EVENT[4945]: 0.569747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4946]: 0.569756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4947]: 0.569770600 - core[1].svIdle(17), plen 0: [] -EVENT[4948]: 0.570617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4949]: 0.570629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4950]: 0.570643175 - core[0].svIdle(17), plen 0: [] -EVENT[4951]: 0.570747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4952]: 0.570756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4953]: 0.570770600 - core[1].svIdle(17), plen 0: [] -EVENT[4954]: 0.571617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4955]: 0.571629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4956]: 0.571643125 - core[0].svIdle(17), plen 0: [] -EVENT[4957]: 0.571747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4958]: 0.571757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4959]: 0.571770775 - core[1].svIdle(17), plen 0: [] -EVENT[4960]: 0.572617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4961]: 0.572629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4962]: 0.572643125 - core[0].svIdle(17), plen 0: [] -EVENT[4963]: 0.572747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4964]: 0.572756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4965]: 0.572770600 - core[1].svIdle(17), plen 0: [] -EVENT[4966]: 0.573617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4967]: 0.573629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[4968]: 0.573638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4969]: 0.573652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[4970]: 0.573676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 40, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.573676950] HEAP: Allocated 40 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4971]: 0.573692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4972]: 0.573706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4973]: 0.573747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4974]: 0.573768825 - core[0].svPrint(26), plen 70: [msg: I (900) example: Task[0x3ffb7f40]: allocated 40 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.573768825] LOG: I (900) example: Task[0x3ffb7f40]: allocated 40 bytes @ 0x3ffb87e4 -EVENT[4975]: 0.573778050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4976]: 0.573786400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4977]: 0.573796950 - core[1].svIdle(17), plen 0: [] -EVENT[4978]: 0.573807725 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[4979]: 0.573820750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4980]: 0.573829450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[4981]: 0.573837350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4982]: 0.573845900 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[4983]: 0.573858625 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[4984]: 0.573867000 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[4985]: 0.573875275 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[4986]: 0.573884275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4987]: 0.573893650 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[4988]: 0.573902875 - core[0].svIdle(17), plen 0: [] -EVENT[4989]: 0.573917800 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[4990]: 0.573965900 - core[1].svPrint(26), plen 63: [msg: I (900) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.573965900] LOG: I (900) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[4991]: 0.573984450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.573984450] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[4992]: 0.574003150 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[4993]: 0.574015925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[4994]: 0.574024675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[4995]: 0.574040125 - core[1].svIdle(17), plen 0: [] -EVENT[4996]: 0.574617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[4997]: 0.574629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[4998]: 0.574638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[4999]: 0.574653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[5000]: 0.574676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 80, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.574676950] HEAP: Allocated 80 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5001]: 0.574689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5002]: 0.574703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5003]: 0.574747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5004]: 0.574768575 - core[0].svPrint(26), plen 70: [msg: I (901) example: Task[0x3ffb82a0]: allocated 80 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.574768575] LOG: I (901) example: Task[0x3ffb82a0]: allocated 80 bytes @ 0x3ffb87e4 -EVENT[5005]: 0.574779750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5006]: 0.574787900 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5007]: 0.574798700 - core[1].svIdle(17), plen 0: [] -EVENT[5008]: 0.574809575 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[5009]: 0.574822525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5010]: 0.574831225 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[5011]: 0.574839150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5012]: 0.574847700 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[5013]: 0.574860425 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[5014]: 0.574868800 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[5015]: 0.574877100 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[5016]: 0.574885850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5017]: 0.574895275 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5018]: 0.574904550 - core[0].svIdle(17), plen 0: [] -EVENT[5019]: 0.574919375 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5020]: 0.574967425 - core[1].svPrint(26), plen 63: [msg: I (901) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.574967425] LOG: I (901) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[5021]: 0.574982975 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.574982975] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5022]: 0.575004625 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[5023]: 0.575017300 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5024]: 0.575026100 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5025]: 0.575041675 - core[1].svIdle(17), plen 0: [] -EVENT[5026]: 0.575617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5027]: 0.575629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[5028]: 0.575638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5029]: 0.575652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[5030]: 0.575676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 120, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.575676925] HEAP: Allocated 120 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5031]: 0.575689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5032]: 0.575703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5033]: 0.575747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5034]: 0.575768975 - core[0].svPrint(26), plen 71: [msg: I (902) example: Task[0x3ffb8600]: allocated 120 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.575768975] LOG: I (902) example: Task[0x3ffb8600]: allocated 120 bytes @ 0x3ffb87e4 -EVENT[5035]: 0.575778000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5036]: 0.575786400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5037]: 0.575796925 - core[1].svIdle(17), plen 0: [] -EVENT[5038]: 0.575807775 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[5039]: 0.575820725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5040]: 0.575829425 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[5041]: 0.575837350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5042]: 0.575845900 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[5043]: 0.575858625 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[5044]: 0.575867025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[5045]: 0.575879275 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[5046]: 0.575887300 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5047]: 0.575895750 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5048]: 0.575905875 - core[0].svIdle(17), plen 0: [] -EVENT[5049]: 0.575920800 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5050]: 0.575968900 - core[1].svPrint(26), plen 63: [msg: I (902) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.575968900] LOG: I (902) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[5051]: 0.575984275 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.575984275] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5052]: 0.576002850 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[5053]: 0.576015675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5054]: 0.576024450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5055]: 0.576039875 - core[1].svIdle(17), plen 0: [] -EVENT[5056]: 0.576617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5057]: 0.576629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5058]: 0.576643250 - core[0].svIdle(17), plen 0: [] -EVENT[5059]: 0.576747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5060]: 0.576756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5061]: 0.576770600 - core[1].svIdle(17), plen 0: [] -EVENT[5062]: 0.577617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5063]: 0.577629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5064]: 0.577643175 - core[0].svIdle(17), plen 0: [] -EVENT[5065]: 0.577747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5066]: 0.577756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5067]: 0.577770600 - core[1].svIdle(17), plen 0: [] -EVENT[5068]: 0.578617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5069]: 0.578629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5070]: 0.578643125 - core[0].svIdle(17), plen 0: [] -EVENT[5071]: 0.578747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5072]: 0.578757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5073]: 0.578770775 - core[1].svIdle(17), plen 0: [] -EVENT[5074]: 0.579617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5075]: 0.579629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5076]: 0.579643125 - core[0].svIdle(17), plen 0: [] -EVENT[5077]: 0.579747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5078]: 0.579756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5079]: 0.579770600 - core[1].svIdle(17), plen 0: [] -EVENT[5080]: 0.580617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5081]: 0.580631950 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5082]: 0.580645575 - core[0].svIdle(17), plen 0: [] -EVENT[5083]: 0.580747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5084]: 0.580756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5085]: 0.580770600 - core[1].svIdle(17), plen 0: [] -EVENT[5086]: 0.581617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5087]: 0.581629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5088]: 0.581643125 - core[0].svIdle(17), plen 0: [] -EVENT[5089]: 0.581747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5090]: 0.581757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5091]: 0.581770775 - core[1].svIdle(17), plen 0: [] -EVENT[5092]: 0.582617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5093]: 0.582629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5094]: 0.582643125 - core[0].svIdle(17), plen 0: [] -EVENT[5095]: 0.582747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5096]: 0.582756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5097]: 0.582770600 - core[1].svIdle(17), plen 0: [] -EVENT[5098]: 0.583617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5099]: 0.583629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5100]: 0.583643250 - core[0].svIdle(17), plen 0: [] -EVENT[5101]: 0.583747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5102]: 0.583756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5103]: 0.583770600 - core[1].svIdle(17), plen 0: [] -EVENT[5104]: 0.584617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5105]: 0.584629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5106]: 0.584643175 - core[0].svIdle(17), plen 0: [] -EVENT[5107]: 0.584747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5108]: 0.584756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5109]: 0.584770600 - core[1].svIdle(17), plen 0: [] -EVENT[5110]: 0.585617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5111]: 0.585629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5112]: 0.585643125 - core[0].svIdle(17), plen 0: [] -EVENT[5113]: 0.585747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5114]: 0.585757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5115]: 0.585770775 - core[1].svIdle(17), plen 0: [] -EVENT[5116]: 0.586617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5117]: 0.586629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5118]: 0.586643125 - core[0].svIdle(17), plen 0: [] -EVENT[5119]: 0.586747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5120]: 0.586756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5121]: 0.586770600 - core[1].svIdle(17), plen 0: [] -EVENT[5122]: 0.587617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5123]: 0.587629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5124]: 0.587643250 - core[0].svIdle(17), plen 0: [] -EVENT[5125]: 0.587747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5126]: 0.587756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5127]: 0.587770600 - core[1].svIdle(17), plen 0: [] -EVENT[5128]: 0.588617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5129]: 0.588629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5130]: 0.588643175 - core[0].svIdle(17), plen 0: [] -EVENT[5131]: 0.588747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5132]: 0.588756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5133]: 0.588770600 - core[1].svIdle(17), plen 0: [] -EVENT[5134]: 0.589617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5135]: 0.589629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5136]: 0.589643125 - core[0].svIdle(17), plen 0: [] -EVENT[5137]: 0.589747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5138]: 0.589757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5139]: 0.589770775 - core[1].svIdle(17), plen 0: [] -EVENT[5140]: 0.590617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5141]: 0.590629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5142]: 0.590643125 - core[0].svIdle(17), plen 0: [] -EVENT[5143]: 0.590747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5144]: 0.590756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5145]: 0.590770600 - core[1].svIdle(17), plen 0: [] -EVENT[5146]: 0.591617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5147]: 0.591629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5148]: 0.591643250 - core[0].svIdle(17), plen 0: [] -EVENT[5149]: 0.591747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5150]: 0.591756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5151]: 0.591770600 - core[1].svIdle(17), plen 0: [] -EVENT[5152]: 0.592617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5153]: 0.592632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5154]: 0.592646225 - core[0].svIdle(17), plen 0: [] -EVENT[5155]: 0.592747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5156]: 0.592756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5157]: 0.592770600 - core[1].svIdle(17), plen 0: [] -EVENT[5158]: 0.593617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5159]: 0.593629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5160]: 0.593643125 - core[0].svIdle(17), plen 0: [] -EVENT[5161]: 0.593747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5162]: 0.593757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5163]: 0.593770775 - core[1].svIdle(17), plen 0: [] -EVENT[5164]: 0.594617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5165]: 0.594629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5166]: 0.594643125 - core[0].svIdle(17), plen 0: [] -EVENT[5167]: 0.594747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5168]: 0.594756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5169]: 0.594770600 - core[1].svIdle(17), plen 0: [] -EVENT[5170]: 0.595617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5171]: 0.595629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5172]: 0.595643250 - core[0].svIdle(17), plen 0: [] -EVENT[5173]: 0.595747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5174]: 0.595756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5175]: 0.595770600 - core[1].svIdle(17), plen 0: [] -EVENT[5176]: 0.596617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5177]: 0.596629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5178]: 0.596643175 - core[0].svIdle(17), plen 0: [] -EVENT[5179]: 0.596747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5180]: 0.596756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5181]: 0.596770600 - core[1].svIdle(17), plen 0: [] -EVENT[5182]: 0.597617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5183]: 0.597629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5184]: 0.597643125 - core[0].svIdle(17), plen 0: [] -EVENT[5185]: 0.597747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5186]: 0.597757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5187]: 0.597770775 - core[1].svIdle(17), plen 0: [] -EVENT[5188]: 0.598617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5189]: 0.598629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5190]: 0.598643125 - core[0].svIdle(17), plen 0: [] -EVENT[5191]: 0.598747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5192]: 0.598756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5193]: 0.598770600 - core[1].svIdle(17), plen 0: [] -EVENT[5194]: 0.599617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5195]: 0.599629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5196]: 0.599643250 - core[0].svIdle(17), plen 0: [] -EVENT[5197]: 0.599747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5198]: 0.599756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5199]: 0.599770600 - core[1].svIdle(17), plen 0: [] -EVENT[5200]: 0.600617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5201]: 0.600629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5202]: 0.600643175 - core[0].svIdle(17), plen 0: [] -EVENT[5203]: 0.600747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5204]: 0.600756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5205]: 0.600770600 - core[1].svIdle(17), plen 0: [] -EVENT[5206]: 0.601617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5207]: 0.601629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5208]: 0.601643125 - core[0].svIdle(17), plen 0: [] -EVENT[5209]: 0.601747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5210]: 0.601757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5211]: 0.601770775 - core[1].svIdle(17), plen 0: [] -EVENT[5212]: 0.602617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5213]: 0.602629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5214]: 0.602643125 - core[0].svIdle(17), plen 0: [] -EVENT[5215]: 0.602747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5216]: 0.602756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5217]: 0.602770600 - core[1].svIdle(17), plen 0: [] -EVENT[5218]: 0.603617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5219]: 0.603629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[5220]: 0.603638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5221]: 0.603652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[5222]: 0.603676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 42, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.603676950] HEAP: Allocated 42 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5223]: 0.603692625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5224]: 0.603706700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5225]: 0.603747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5226]: 0.603768500 - core[0].svPrint(26), plen 70: [msg: I (930) example: Task[0x3ffb7f40]: allocated 42 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.603768500] LOG: I (930) example: Task[0x3ffb7f40]: allocated 42 bytes @ 0x3ffb87e4 -EVENT[5227]: 0.603777725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5228]: 0.603785875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5229]: 0.603796475 - core[1].svIdle(17), plen 0: [] -EVENT[5230]: 0.603807275 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[5231]: 0.603820275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5232]: 0.603828975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[5233]: 0.603836875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5234]: 0.603845425 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[5235]: 0.603858150 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[5236]: 0.603866550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[5237]: 0.603874875 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[5238]: 0.603884000 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5239]: 0.603892900 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5240]: 0.603902475 - core[0].svIdle(17), plen 0: [] -EVENT[5241]: 0.603917400 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5242]: 0.603965500 - core[1].svPrint(26), plen 63: [msg: I (930) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.603965500] LOG: I (930) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[5243]: 0.603983950 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.603983950] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5244]: 0.604002650 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[5245]: 0.604015425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5246]: 0.604024175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5247]: 0.604039625 - core[1].svIdle(17), plen 0: [] -EVENT[5248]: 0.604617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5249]: 0.604629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[5250]: 0.604638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5251]: 0.604653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[5252]: 0.604676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 84, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.604676950] HEAP: Allocated 84 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5253]: 0.604689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5254]: 0.604703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5255]: 0.604747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5256]: 0.604768575 - core[0].svPrint(26), plen 70: [msg: I (931) example: Task[0x3ffb82a0]: allocated 84 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.604768575] LOG: I (931) example: Task[0x3ffb82a0]: allocated 84 bytes @ 0x3ffb87e4 -EVENT[5257]: 0.604779650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5258]: 0.604787675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5259]: 0.604798525 - core[1].svIdle(17), plen 0: [] -EVENT[5260]: 0.604809375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[5261]: 0.604822325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5262]: 0.604831050 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[5263]: 0.604838975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5264]: 0.604847525 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[5265]: 0.604860225 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[5266]: 0.604868625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[5267]: 0.604876875 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[5268]: 0.604885600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5269]: 0.604895025 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5270]: 0.604904300 - core[0].svIdle(17), plen 0: [] -EVENT[5271]: 0.604919125 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5272]: 0.604967175 - core[1].svPrint(26), plen 63: [msg: I (931) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.604967175] LOG: I (931) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[5273]: 0.604982725 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.604982725] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5274]: 0.605004275 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[5275]: 0.605016950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5276]: 0.605025750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5277]: 0.605041325 - core[1].svIdle(17), plen 0: [] -EVENT[5278]: 0.605617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5279]: 0.605629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[5280]: 0.605638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5281]: 0.605652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[5282]: 0.605676925 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 126, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.605676925] HEAP: Allocated 126 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5283]: 0.605689600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5284]: 0.605703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5285]: 0.605747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5286]: 0.605768975 - core[0].svPrint(26), plen 71: [msg: I (932) example: Task[0x3ffb8600]: allocated 126 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.605768975] LOG: I (932) example: Task[0x3ffb8600]: allocated 126 bytes @ 0x3ffb87e4 -EVENT[5287]: 0.605778000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5288]: 0.605786400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5289]: 0.605796825 - core[1].svIdle(17), plen 0: [] -EVENT[5290]: 0.605807675 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[5291]: 0.605820625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5292]: 0.605829325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[5293]: 0.605837250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5294]: 0.605845800 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[5295]: 0.605858525 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[5296]: 0.605866925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[5297]: 0.605879125 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[5298]: 0.605887175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5299]: 0.605895625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5300]: 0.605905725 - core[0].svIdle(17), plen 0: [] -EVENT[5301]: 0.605920675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5302]: 0.605968775 - core[1].svPrint(26), plen 63: [msg: I (932) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.605968775] LOG: I (932) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[5303]: 0.605984125 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.605984125] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5304]: 0.606002700 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[5305]: 0.606015550 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5306]: 0.606024300 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5307]: 0.606039750 - core[1].svIdle(17), plen 0: [] -EVENT[5308]: 0.606617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5309]: 0.606629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5310]: 0.606643250 - core[0].svIdle(17), plen 0: [] -EVENT[5311]: 0.606747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5312]: 0.606756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5313]: 0.606770600 - core[1].svIdle(17), plen 0: [] -EVENT[5314]: 0.607617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5315]: 0.607629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5316]: 0.607643175 - core[0].svIdle(17), plen 0: [] -EVENT[5317]: 0.607747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5318]: 0.607756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5319]: 0.607770600 - core[1].svIdle(17), plen 0: [] -EVENT[5320]: 0.608617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5321]: 0.608629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5322]: 0.608643125 - core[0].svIdle(17), plen 0: [] -EVENT[5323]: 0.608747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5324]: 0.608757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5325]: 0.608770775 - core[1].svIdle(17), plen 0: [] -EVENT[5326]: 0.609617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5327]: 0.609629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5328]: 0.609643125 - core[0].svIdle(17), plen 0: [] -EVENT[5329]: 0.609747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5330]: 0.609756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5331]: 0.609770600 - core[1].svIdle(17), plen 0: [] -EVENT[5332]: 0.610617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5333]: 0.610632575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5334]: 0.610646200 - core[0].svIdle(17), plen 0: [] -EVENT[5335]: 0.610747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5336]: 0.610756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5337]: 0.610770600 - core[1].svIdle(17), plen 0: [] -EVENT[5338]: 0.611617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5339]: 0.611629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5340]: 0.611643125 - core[0].svIdle(17), plen 0: [] -EVENT[5341]: 0.611747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5342]: 0.611757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5343]: 0.611770775 - core[1].svIdle(17), plen 0: [] -EVENT[5344]: 0.612617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5345]: 0.612629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5346]: 0.612643125 - core[0].svIdle(17), plen 0: [] -EVENT[5347]: 0.612747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5348]: 0.612756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5349]: 0.612770600 - core[1].svIdle(17), plen 0: [] -EVENT[5350]: 0.613617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5351]: 0.613629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5352]: 0.613643250 - core[0].svIdle(17), plen 0: [] -EVENT[5353]: 0.613747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5354]: 0.613756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5355]: 0.613770600 - core[1].svIdle(17), plen 0: [] -EVENT[5356]: 0.614617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5357]: 0.614629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5358]: 0.614643175 - core[0].svIdle(17), plen 0: [] -EVENT[5359]: 0.614747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5360]: 0.614756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5361]: 0.614770600 - core[1].svIdle(17), plen 0: [] -EVENT[5362]: 0.615617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5363]: 0.615629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5364]: 0.615643125 - core[0].svIdle(17), plen 0: [] -EVENT[5365]: 0.615747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5366]: 0.615757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5367]: 0.615770775 - core[1].svIdle(17), plen 0: [] -EVENT[5368]: 0.616617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5369]: 0.616629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5370]: 0.616643125 - core[0].svIdle(17), plen 0: [] -EVENT[5371]: 0.616747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5372]: 0.616756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5373]: 0.616770600 - core[1].svIdle(17), plen 0: [] -EVENT[5374]: 0.617617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5375]: 0.617629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5376]: 0.617643250 - core[0].svIdle(17), plen 0: [] -EVENT[5377]: 0.617747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5378]: 0.617756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5379]: 0.617770600 - core[1].svIdle(17), plen 0: [] -EVENT[5380]: 0.618617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5381]: 0.618629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5382]: 0.618643175 - core[0].svIdle(17), plen 0: [] -EVENT[5383]: 0.618747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5384]: 0.618756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5385]: 0.618770600 - core[1].svIdle(17), plen 0: [] -EVENT[5386]: 0.619617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5387]: 0.619629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5388]: 0.619643125 - core[0].svIdle(17), plen 0: [] -EVENT[5389]: 0.619747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5390]: 0.619757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5391]: 0.619770775 - core[1].svIdle(17), plen 0: [] -EVENT[5392]: 0.620617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5393]: 0.620629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5394]: 0.620643125 - core[0].svIdle(17), plen 0: [] -EVENT[5395]: 0.620747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5396]: 0.620756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5397]: 0.620770600 - core[1].svIdle(17), plen 0: [] -EVENT[5398]: 0.621617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5399]: 0.621629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5400]: 0.621643250 - core[0].svIdle(17), plen 0: [] -EVENT[5401]: 0.621747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5402]: 0.621756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5403]: 0.621770600 - core[1].svIdle(17), plen 0: [] -EVENT[5404]: 0.622617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5405]: 0.622632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5406]: 0.622646225 - core[0].svIdle(17), plen 0: [] -EVENT[5407]: 0.622747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5408]: 0.622756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5409]: 0.622770600 - core[1].svIdle(17), plen 0: [] -EVENT[5410]: 0.623617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5411]: 0.623629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5412]: 0.623643125 - core[0].svIdle(17), plen 0: [] -EVENT[5413]: 0.623747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5414]: 0.623757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5415]: 0.623770775 - core[1].svIdle(17), plen 0: [] -EVENT[5416]: 0.624617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5417]: 0.624629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5418]: 0.624643125 - core[0].svIdle(17), plen 0: [] -EVENT[5419]: 0.624747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5420]: 0.624756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5421]: 0.624770600 - core[1].svIdle(17), plen 0: [] -EVENT[5422]: 0.625617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5423]: 0.625629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5424]: 0.625643250 - core[0].svIdle(17), plen 0: [] -EVENT[5425]: 0.625747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5426]: 0.625756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5427]: 0.625770600 - core[1].svIdle(17), plen 0: [] -EVENT[5428]: 0.626617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5429]: 0.626629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5430]: 0.626643175 - core[0].svIdle(17), plen 0: [] -EVENT[5431]: 0.626747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5432]: 0.626756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5433]: 0.626770600 - core[1].svIdle(17), plen 0: [] -EVENT[5434]: 0.627617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5435]: 0.627629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5436]: 0.627643125 - core[0].svIdle(17), plen 0: [] -EVENT[5437]: 0.627747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5438]: 0.627757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5439]: 0.627770775 - core[1].svIdle(17), plen 0: [] -EVENT[5440]: 0.628617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5441]: 0.628629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5442]: 0.628643125 - core[0].svIdle(17), plen 0: [] -EVENT[5443]: 0.628747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5444]: 0.628756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5445]: 0.628770600 - core[1].svIdle(17), plen 0: [] -EVENT[5446]: 0.629617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5447]: 0.629629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5448]: 0.629643250 - core[0].svIdle(17), plen 0: [] -EVENT[5449]: 0.629747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5450]: 0.629756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5451]: 0.629770600 - core[1].svIdle(17), plen 0: [] -EVENT[5452]: 0.630617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5453]: 0.630629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5454]: 0.630643175 - core[0].svIdle(17), plen 0: [] -EVENT[5455]: 0.630747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5456]: 0.630756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5457]: 0.630770600 - core[1].svIdle(17), plen 0: [] -EVENT[5458]: 0.631617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5459]: 0.631629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5460]: 0.631643125 - core[0].svIdle(17), plen 0: [] -EVENT[5461]: 0.631747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5462]: 0.631757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5463]: 0.631770775 - core[1].svIdle(17), plen 0: [] -EVENT[5464]: 0.632617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5465]: 0.632629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5466]: 0.632643125 - core[0].svIdle(17), plen 0: [] -EVENT[5467]: 0.632747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5468]: 0.632756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5469]: 0.632770600 - core[1].svIdle(17), plen 0: [] -EVENT[5470]: 0.633617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5471]: 0.633629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[5472]: 0.633638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5473]: 0.633652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[5474]: 0.633676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 44, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.633676950] HEAP: Allocated 44 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5475]: 0.633692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5476]: 0.633706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5477]: 0.633747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5478]: 0.633769150 - core[0].svPrint(26), plen 70: [msg: I (960) example: Task[0x3ffb7f40]: allocated 44 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.633769150] LOG: I (960) example: Task[0x3ffb7f40]: allocated 44 bytes @ 0x3ffb87e4 -EVENT[5479]: 0.633778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5480]: 0.633786600 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5481]: 0.633797000 - core[1].svIdle(17), plen 0: [] -EVENT[5482]: 0.633807775 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[5483]: 0.633820800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5484]: 0.633829500 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[5485]: 0.633837400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5486]: 0.633845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[5487]: 0.633858675 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[5488]: 0.633867050 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[5489]: 0.633875325 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[5490]: 0.633884325 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5491]: 0.633893700 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5492]: 0.633902925 - core[0].svIdle(17), plen 0: [] -EVENT[5493]: 0.633917850 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5494]: 0.633965950 - core[1].svPrint(26), plen 63: [msg: I (960) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.633965950] LOG: I (960) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[5495]: 0.633984425 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.633984425] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5496]: 0.634003125 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[5497]: 0.634015875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5498]: 0.634024650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5499]: 0.634040075 - core[1].svIdle(17), plen 0: [] -EVENT[5500]: 0.634617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5501]: 0.634629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[5502]: 0.634638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5503]: 0.634653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[5504]: 0.634676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 88, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.634676950] HEAP: Allocated 88 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5505]: 0.634689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5506]: 0.634703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5507]: 0.634747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5508]: 0.634768575 - core[0].svPrint(26), plen 70: [msg: I (961) example: Task[0x3ffb82a0]: allocated 88 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.634768575] LOG: I (961) example: Task[0x3ffb82a0]: allocated 88 bytes @ 0x3ffb87e4 -EVENT[5509]: 0.634779675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5510]: 0.634787700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5511]: 0.634798450 - core[1].svIdle(17), plen 0: [] -EVENT[5512]: 0.634809325 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[5513]: 0.634822275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5514]: 0.634830975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[5515]: 0.634838900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5516]: 0.634847450 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[5517]: 0.634860175 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[5518]: 0.634868550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[5519]: 0.634876850 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[5520]: 0.634885600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5521]: 0.634895025 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5522]: 0.634904300 - core[0].svIdle(17), plen 0: [] -EVENT[5523]: 0.634919125 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5524]: 0.634967175 - core[1].svPrint(26), plen 63: [msg: I (961) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.634967175] LOG: I (961) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[5525]: 0.634982725 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.634982725] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5526]: 0.635004275 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[5527]: 0.635016975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5528]: 0.635025775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5529]: 0.635041350 - core[1].svIdle(17), plen 0: [] -EVENT[5530]: 0.635617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5531]: 0.635629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[5532]: 0.635638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5533]: 0.635652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[5534]: 0.635676800 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073448932, size: 132, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.635676800] HEAP: Allocated 132 bytes @ 0x3ffb87e4 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5535]: 0.635689500 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5536]: 0.635703500 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5537]: 0.635747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5538]: 0.635768725 - core[0].svPrint(26), plen 71: [msg: I (962) example: Task[0x3ffb8600]: allocated 132 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.635768725] LOG: I (962) example: Task[0x3ffb8600]: allocated 132 bytes @ 0x3ffb87e4 -EVENT[5539]: 0.635777950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5540]: 0.635786150 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5541]: 0.635797050 - core[1].svIdle(17), plen 0: [] -EVENT[5542]: 0.635807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[5543]: 0.635820825 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5544]: 0.635829525 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[5545]: 0.635837450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5546]: 0.635846100 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[5547]: 0.635858775 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[5548]: 0.635867025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[5549]: 0.635879300 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[5550]: 0.635887325 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5551]: 0.635895775 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5552]: 0.635905875 - core[0].svIdle(17), plen 0: [] -EVENT[5553]: 0.635920800 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5554]: 0.635968900 - core[1].svPrint(26), plen 63: [msg: I (962) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.635968900] LOG: I (962) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 -EVENT[5555]: 0.635984275 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.635984275] HEAP: Freed bytes @ 0x3ffb87e4 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5556]: 0.636002250 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[5557]: 0.636015100 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5558]: 0.636023850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5559]: 0.636039300 - core[1].svIdle(17), plen 0: [] -EVENT[5560]: 0.636617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5561]: 0.636629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5562]: 0.636643250 - core[0].svIdle(17), plen 0: [] -EVENT[5563]: 0.636747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5564]: 0.636756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5565]: 0.636770600 - core[1].svIdle(17), plen 0: [] -EVENT[5566]: 0.637617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5567]: 0.637629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5568]: 0.637643175 - core[0].svIdle(17), plen 0: [] -EVENT[5569]: 0.637747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5570]: 0.637756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5571]: 0.637770600 - core[1].svIdle(17), plen 0: [] -EVENT[5572]: 0.638617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5573]: 0.638629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5574]: 0.638643125 - core[0].svIdle(17), plen 0: [] -EVENT[5575]: 0.638747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5576]: 0.638757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5577]: 0.638770775 - core[1].svIdle(17), plen 0: [] -EVENT[5578]: 0.639617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5579]: 0.639629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5580]: 0.639643125 - core[0].svIdle(17), plen 0: [] -EVENT[5581]: 0.639747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5582]: 0.639756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5583]: 0.639770600 - core[1].svIdle(17), plen 0: [] -EVENT[5584]: 0.640617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5585]: 0.640632575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5586]: 0.640646200 - core[0].svIdle(17), plen 0: [] -EVENT[5587]: 0.640747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5588]: 0.640756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5589]: 0.640770600 - core[1].svIdle(17), plen 0: [] -EVENT[5590]: 0.641617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5591]: 0.641629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5592]: 0.641643125 - core[0].svIdle(17), plen 0: [] -EVENT[5593]: 0.641747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5594]: 0.641757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5595]: 0.641770775 - core[1].svIdle(17), plen 0: [] -EVENT[5596]: 0.642617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5597]: 0.642629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5598]: 0.642643125 - core[0].svIdle(17), plen 0: [] -EVENT[5599]: 0.642747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5600]: 0.642756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5601]: 0.642770600 - core[1].svIdle(17), plen 0: [] -EVENT[5602]: 0.643617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5603]: 0.643629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5604]: 0.643643250 - core[0].svIdle(17), plen 0: [] -EVENT[5605]: 0.643747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5606]: 0.643756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5607]: 0.643770600 - core[1].svIdle(17), plen 0: [] -EVENT[5608]: 0.644617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5609]: 0.644629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5610]: 0.644643175 - core[0].svIdle(17), plen 0: [] -EVENT[5611]: 0.644747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5612]: 0.644756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5613]: 0.644770600 - core[1].svIdle(17), plen 0: [] -EVENT[5614]: 0.645617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5615]: 0.645629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5616]: 0.645643125 - core[0].svIdle(17), plen 0: [] -EVENT[5617]: 0.645747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5618]: 0.645757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5619]: 0.645770775 - core[1].svIdle(17), plen 0: [] -EVENT[5620]: 0.646617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5621]: 0.646629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5622]: 0.646643125 - core[0].svIdle(17), plen 0: [] -EVENT[5623]: 0.646747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5624]: 0.646756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5625]: 0.646770600 - core[1].svIdle(17), plen 0: [] -EVENT[5626]: 0.647617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5627]: 0.647629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5628]: 0.647643250 - core[0].svIdle(17), plen 0: [] -EVENT[5629]: 0.647747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5630]: 0.647756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5631]: 0.647770600 - core[1].svIdle(17), plen 0: [] -EVENT[5632]: 0.648617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5633]: 0.648629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5634]: 0.648643175 - core[0].svIdle(17), plen 0: [] -EVENT[5635]: 0.648747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5636]: 0.648756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5637]: 0.648770600 - core[1].svIdle(17), plen 0: [] -EVENT[5638]: 0.649617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5639]: 0.649629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5640]: 0.649643125 - core[0].svIdle(17), plen 0: [] -EVENT[5641]: 0.649747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5642]: 0.649757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5643]: 0.649770775 - core[1].svIdle(17), plen 0: [] -EVENT[5644]: 0.650617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5645]: 0.650629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5646]: 0.650643125 - core[0].svIdle(17), plen 0: [] -EVENT[5647]: 0.650747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5648]: 0.650756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5649]: 0.650770600 - core[1].svIdle(17), plen 0: [] -EVENT[5650]: 0.651617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5651]: 0.651629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5652]: 0.651643250 - core[0].svIdle(17), plen 0: [] -EVENT[5653]: 0.651747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5654]: 0.651756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5655]: 0.651770600 - core[1].svIdle(17), plen 0: [] -EVENT[5656]: 0.652617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5657]: 0.652631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5658]: 0.652645550 - core[0].svIdle(17), plen 0: [] -EVENT[5659]: 0.652747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5660]: 0.652756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5661]: 0.652770600 - core[1].svIdle(17), plen 0: [] -EVENT[5662]: 0.653617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5663]: 0.653629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5664]: 0.653643125 - core[0].svIdle(17), plen 0: [] -EVENT[5665]: 0.653747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5666]: 0.653757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5667]: 0.653770775 - core[1].svIdle(17), plen 0: [] -EVENT[5668]: 0.654617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5669]: 0.654629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5670]: 0.654643125 - core[0].svIdle(17), plen 0: [] -EVENT[5671]: 0.654747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5672]: 0.654756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5673]: 0.654770600 - core[1].svIdle(17), plen 0: [] -EVENT[5674]: 0.655617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5675]: 0.655629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5676]: 0.655643250 - core[0].svIdle(17), plen 0: [] -EVENT[5677]: 0.655747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5678]: 0.655756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5679]: 0.655770600 - core[1].svIdle(17), plen 0: [] -EVENT[5680]: 0.656617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5681]: 0.656629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5682]: 0.656643175 - core[0].svIdle(17), plen 0: [] -EVENT[5683]: 0.656747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5684]: 0.656756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5685]: 0.656770600 - core[1].svIdle(17), plen 0: [] -EVENT[5686]: 0.657617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5687]: 0.657629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5688]: 0.657643125 - core[0].svIdle(17), plen 0: [] -EVENT[5689]: 0.657747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5690]: 0.657757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5691]: 0.657770775 - core[1].svIdle(17), plen 0: [] -EVENT[5692]: 0.658617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5693]: 0.658629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5694]: 0.658643125 - core[0].svIdle(17), plen 0: [] -EVENT[5695]: 0.658747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5696]: 0.658756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5697]: 0.658770600 - core[1].svIdle(17), plen 0: [] -EVENT[5698]: 0.659617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5699]: 0.659629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5700]: 0.659643250 - core[0].svIdle(17), plen 0: [] -EVENT[5701]: 0.659747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5702]: 0.659756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5703]: 0.659770600 - core[1].svIdle(17), plen 0: [] -EVENT[5704]: 0.660617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5705]: 0.660629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5706]: 0.660643175 - core[0].svIdle(17), plen 0: [] -EVENT[5707]: 0.660747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5708]: 0.660756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5709]: 0.660770600 - core[1].svIdle(17), plen 0: [] -EVENT[5710]: 0.661617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5711]: 0.661629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5712]: 0.661643125 - core[0].svIdle(17), plen 0: [] -EVENT[5713]: 0.661747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5714]: 0.661757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5715]: 0.661770775 - core[1].svIdle(17), plen 0: [] -EVENT[5716]: 0.662617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5717]: 0.662629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5718]: 0.662643125 - core[0].svIdle(17), plen 0: [] -EVENT[5719]: 0.662747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5720]: 0.662756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5721]: 0.662770600 - core[1].svIdle(17), plen 0: [] -EVENT[5722]: 0.663617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5723]: 0.663629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[5724]: 0.663638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5725]: 0.663652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[5726]: 0.663676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 46, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.663676950] HEAP: Allocated 46 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5727]: 0.663692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5728]: 0.663706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5729]: 0.663747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5730]: 0.663768825 - core[0].svPrint(26), plen 70: [msg: I (990) example: Task[0x3ffb7f40]: allocated 46 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.663768825] LOG: I (990) example: Task[0x3ffb7f40]: allocated 46 bytes @ 0x3ffb87e4 -EVENT[5731]: 0.663778050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5732]: 0.663786400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5733]: 0.663796925 - core[1].svIdle(17), plen 0: [] -EVENT[5734]: 0.663807700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[5735]: 0.663820725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5736]: 0.663829425 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[5737]: 0.663837325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5738]: 0.663845875 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[5739]: 0.663858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[5740]: 0.663866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[5741]: 0.663875250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[5742]: 0.663884250 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5743]: 0.663893625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5744]: 0.663902850 - core[0].svIdle(17), plen 0: [] -EVENT[5745]: 0.663917775 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5746]: 0.663965875 - core[1].svPrint(26), plen 63: [msg: I (990) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.663965875] LOG: I (990) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[5747]: 0.663984425 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.663984425] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5748]: 0.664003125 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[5749]: 0.664015900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5750]: 0.664024650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5751]: 0.664040100 - core[1].svIdle(17), plen 0: [] -EVENT[5752]: 0.664617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5753]: 0.664629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[5754]: 0.664638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5755]: 0.664653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[5756]: 0.664676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 92, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.664676950] HEAP: Allocated 92 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5757]: 0.664689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5758]: 0.664703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5759]: 0.664747600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5760]: 0.664768575 - core[0].svPrint(26), plen 70: [msg: I (991) example: Task[0x3ffb82a0]: allocated 92 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.664768575] LOG: I (991) example: Task[0x3ffb82a0]: allocated 92 bytes @ 0x3ffb87e4 -EVENT[5761]: 0.664779750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5762]: 0.664787900 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5763]: 0.664798700 - core[1].svIdle(17), plen 0: [] -EVENT[5764]: 0.664809575 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[5765]: 0.664822525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5766]: 0.664831225 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[5767]: 0.664839150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5768]: 0.664847700 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[5769]: 0.664860425 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[5770]: 0.664868800 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[5771]: 0.664877100 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[5772]: 0.664885850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5773]: 0.664895275 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5774]: 0.664904550 - core[0].svIdle(17), plen 0: [] -EVENT[5775]: 0.664919375 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5776]: 0.664967425 - core[1].svPrint(26), plen 63: [msg: I (991) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.664967425] LOG: I (991) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[5777]: 0.664982975 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.664982975] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5778]: 0.665004625 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[5779]: 0.665017300 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5780]: 0.665026100 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5781]: 0.665041675 - core[1].svIdle(17), plen 0: [] -EVENT[5782]: 0.665617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5783]: 0.665629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[5784]: 0.665638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5785]: 0.665652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[5786]: 0.665676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 138, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.665676975] HEAP: Allocated 138 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5787]: 0.665689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5788]: 0.665703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5789]: 0.665747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5790]: 0.665769075 - core[0].svPrint(26), plen 71: [msg: I (992) example: Task[0x3ffb8600]: allocated 138 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.665769075] LOG: I (992) example: Task[0x3ffb8600]: allocated 138 bytes @ 0x3ffb4b10 -EVENT[5791]: 0.665778125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5792]: 0.665786500 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5793]: 0.665797000 - core[1].svIdle(17), plen 0: [] -EVENT[5794]: 0.665807800 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[5795]: 0.665820775 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5796]: 0.665829475 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[5797]: 0.665837400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5798]: 0.665846050 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[5799]: 0.665858725 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[5800]: 0.665866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[5801]: 0.665879125 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[5802]: 0.665887125 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5803]: 0.665895550 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5804]: 0.665905650 - core[0].svIdle(17), plen 0: [] -EVENT[5805]: 0.665920575 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5806]: 0.665968675 - core[1].svPrint(26), plen 63: [msg: I (992) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.665968675] LOG: I (992) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[5807]: 0.665984050 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.665984050] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5808]: 0.666002050 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[5809]: 0.666014900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5810]: 0.666023650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5811]: 0.666039100 - core[1].svIdle(17), plen 0: [] -EVENT[5812]: 0.666617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5813]: 0.666629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5814]: 0.666643250 - core[0].svIdle(17), plen 0: [] -EVENT[5815]: 0.666747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5816]: 0.666756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5817]: 0.666770600 - core[1].svIdle(17), plen 0: [] -EVENT[5818]: 0.667617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5819]: 0.667629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5820]: 0.667643175 - core[0].svIdle(17), plen 0: [] -EVENT[5821]: 0.667747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5822]: 0.667756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5823]: 0.667770600 - core[1].svIdle(17), plen 0: [] -EVENT[5824]: 0.668617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5825]: 0.668629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5826]: 0.668643125 - core[0].svIdle(17), plen 0: [] -EVENT[5827]: 0.668747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5828]: 0.668757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5829]: 0.668770775 - core[1].svIdle(17), plen 0: [] -EVENT[5830]: 0.669617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5831]: 0.669629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5832]: 0.669643125 - core[0].svIdle(17), plen 0: [] -EVENT[5833]: 0.669747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5834]: 0.669756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5835]: 0.669770600 - core[1].svIdle(17), plen 0: [] -EVENT[5836]: 0.670617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5837]: 0.670632575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5838]: 0.670646200 - core[0].svIdle(17), plen 0: [] -EVENT[5839]: 0.670747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5840]: 0.670756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5841]: 0.670770600 - core[1].svIdle(17), plen 0: [] -EVENT[5842]: 0.671617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5843]: 0.671629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5844]: 0.671643125 - core[0].svIdle(17), plen 0: [] -EVENT[5845]: 0.671747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5846]: 0.671757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5847]: 0.671770775 - core[1].svIdle(17), plen 0: [] -EVENT[5848]: 0.672617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5849]: 0.672629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5850]: 0.672643125 - core[0].svIdle(17), plen 0: [] -EVENT[5851]: 0.672747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5852]: 0.672756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5853]: 0.672770600 - core[1].svIdle(17), plen 0: [] -EVENT[5854]: 0.673617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5855]: 0.673629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5856]: 0.673643250 - core[0].svIdle(17), plen 0: [] -EVENT[5857]: 0.673747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5858]: 0.673756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5859]: 0.673770600 - core[1].svIdle(17), plen 0: [] -EVENT[5860]: 0.674617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5861]: 0.674629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5862]: 0.674643175 - core[0].svIdle(17), plen 0: [] -EVENT[5863]: 0.674747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5864]: 0.674756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5865]: 0.674770600 - core[1].svIdle(17), plen 0: [] -EVENT[5866]: 0.675617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5867]: 0.675629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5868]: 0.675643125 - core[0].svIdle(17), plen 0: [] -EVENT[5869]: 0.675747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5870]: 0.675757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5871]: 0.675770775 - core[1].svIdle(17), plen 0: [] -EVENT[5872]: 0.676617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5873]: 0.676629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5874]: 0.676643125 - core[0].svIdle(17), plen 0: [] -EVENT[5875]: 0.676747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5876]: 0.676756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5877]: 0.676770600 - core[1].svIdle(17), plen 0: [] -EVENT[5878]: 0.677617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5879]: 0.677629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5880]: 0.677643250 - core[0].svIdle(17), plen 0: [] -EVENT[5881]: 0.677747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5882]: 0.677756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5883]: 0.677770600 - core[1].svIdle(17), plen 0: [] -EVENT[5884]: 0.678617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5885]: 0.678629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5886]: 0.678643175 - core[0].svIdle(17), plen 0: [] -EVENT[5887]: 0.678747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5888]: 0.678756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5889]: 0.678770600 - core[1].svIdle(17), plen 0: [] -EVENT[5890]: 0.679617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5891]: 0.679629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5892]: 0.679643125 - core[0].svIdle(17), plen 0: [] -EVENT[5893]: 0.679747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5894]: 0.679757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5895]: 0.679770775 - core[1].svIdle(17), plen 0: [] -EVENT[5896]: 0.680617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5897]: 0.680629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5898]: 0.680643125 - core[0].svIdle(17), plen 0: [] -EVENT[5899]: 0.680747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5900]: 0.680756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5901]: 0.680770600 - core[1].svIdle(17), plen 0: [] -EVENT[5902]: 0.681617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5903]: 0.681629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5904]: 0.681643250 - core[0].svIdle(17), plen 0: [] -EVENT[5905]: 0.681747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5906]: 0.681756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5907]: 0.681770600 - core[1].svIdle(17), plen 0: [] -EVENT[5908]: 0.682617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5909]: 0.682632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5910]: 0.682646225 - core[0].svIdle(17), plen 0: [] -EVENT[5911]: 0.682747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5912]: 0.682756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5913]: 0.682770600 - core[1].svIdle(17), plen 0: [] -EVENT[5914]: 0.683617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5915]: 0.683629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5916]: 0.683643125 - core[0].svIdle(17), plen 0: [] -EVENT[5917]: 0.683747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5918]: 0.683757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5919]: 0.683770775 - core[1].svIdle(17), plen 0: [] -EVENT[5920]: 0.684617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5921]: 0.684629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5922]: 0.684643125 - core[0].svIdle(17), plen 0: [] -EVENT[5923]: 0.684747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5924]: 0.684756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5925]: 0.684770600 - core[1].svIdle(17), plen 0: [] -EVENT[5926]: 0.685617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5927]: 0.685629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5928]: 0.685643250 - core[0].svIdle(17), plen 0: [] -EVENT[5929]: 0.685747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5930]: 0.685756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5931]: 0.685770600 - core[1].svIdle(17), plen 0: [] -EVENT[5932]: 0.686617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5933]: 0.686629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5934]: 0.686643175 - core[0].svIdle(17), plen 0: [] -EVENT[5935]: 0.686747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5936]: 0.686756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5937]: 0.686770600 - core[1].svIdle(17), plen 0: [] -EVENT[5938]: 0.687617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5939]: 0.687629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5940]: 0.687643125 - core[0].svIdle(17), plen 0: [] -EVENT[5941]: 0.687747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5942]: 0.687757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5943]: 0.687770775 - core[1].svIdle(17), plen 0: [] -EVENT[5944]: 0.688617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5945]: 0.688629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5946]: 0.688643125 - core[0].svIdle(17), plen 0: [] -EVENT[5947]: 0.688747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5948]: 0.688756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5949]: 0.688770600 - core[1].svIdle(17), plen 0: [] -EVENT[5950]: 0.689617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5951]: 0.689629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5952]: 0.689643250 - core[0].svIdle(17), plen 0: [] -EVENT[5953]: 0.689747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5954]: 0.689756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5955]: 0.689770600 - core[1].svIdle(17), plen 0: [] -EVENT[5956]: 0.690617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5957]: 0.690629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5958]: 0.690643175 - core[0].svIdle(17), plen 0: [] -EVENT[5959]: 0.690747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5960]: 0.690756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5961]: 0.690770600 - core[1].svIdle(17), plen 0: [] -EVENT[5962]: 0.691617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5963]: 0.691629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5964]: 0.691643125 - core[0].svIdle(17), plen 0: [] -EVENT[5965]: 0.691747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5966]: 0.691757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5967]: 0.691770775 - core[1].svIdle(17), plen 0: [] -EVENT[5968]: 0.692617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5969]: 0.692629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5970]: 0.692643125 - core[0].svIdle(17), plen 0: [] -EVENT[5971]: 0.692747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5972]: 0.692756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5973]: 0.692770600 - core[1].svIdle(17), plen 0: [] -EVENT[5974]: 0.693617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5975]: 0.693629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[5976]: 0.693638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5977]: 0.693652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[5978]: 0.693676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 48, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.693676950] HEAP: Allocated 48 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[5979]: 0.693692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5980]: 0.693706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5981]: 0.693747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[5982]: 0.693769175 - core[0].svPrint(26), plen 71: [msg: I (1020) example: Task[0x3ffb7f40]: allocated 48 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.693769175] LOG: I (1020) example: Task[0x3ffb7f40]: allocated 48 bytes @ 0x3ffb87e4 -EVENT[5983]: 0.693777400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5984]: 0.693785550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5985]: 0.693796350 - core[1].svIdle(17), plen 0: [] -EVENT[5986]: 0.693807225 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[5987]: 0.693820175 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[5988]: 0.693828875 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[5989]: 0.693836775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[5990]: 0.693845325 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[5991]: 0.693858050 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[5992]: 0.693866425 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[5993]: 0.693874725 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[5994]: 0.693883475 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[5995]: 0.693892925 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[5996]: 0.693902125 - core[0].svIdle(17), plen 0: [] -EVENT[5997]: 0.693916950 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[5998]: 0.693966250 - core[1].svPrint(26), plen 64: [msg: I (1020) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.693966250] LOG: I (1020) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[5999]: 0.693984675 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.693984675] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6000]: 0.694003250 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[6001]: 0.694015925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6002]: 0.694024725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6003]: 0.694040300 - core[1].svIdle(17), plen 0: [] -EVENT[6004]: 0.694617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6005]: 0.694629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[6006]: 0.694638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6007]: 0.694652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[6008]: 0.694676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 96, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.694676950] HEAP: Allocated 96 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6009]: 0.694689625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6010]: 0.694703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6011]: 0.694747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6012]: 0.694769000 - core[0].svPrint(26), plen 71: [msg: I (1021) example: Task[0x3ffb82a0]: allocated 96 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.694769000] LOG: I (1021) example: Task[0x3ffb82a0]: allocated 96 bytes @ 0x3ffb87e4 -EVENT[6013]: 0.694779900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6014]: 0.694787900 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6015]: 0.694798800 - core[1].svIdle(17), plen 0: [] -EVENT[6016]: 0.694809600 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[6017]: 0.694822575 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6018]: 0.694831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[6019]: 0.694839200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6020]: 0.694847850 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[6021]: 0.694860525 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[6022]: 0.694868775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[6023]: 0.694877075 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[6024]: 0.694886100 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6025]: 0.694894850 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6026]: 0.694904750 - core[0].svIdle(17), plen 0: [] -EVENT[6027]: 0.694919575 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6028]: 0.694968925 - core[1].svPrint(26), plen 64: [msg: I (1021) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.694968925] LOG: I (1021) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[6029]: 0.694984400 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.694984400] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6030]: 0.695006000 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[6031]: 0.695018700 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6032]: 0.695027500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6033]: 0.695043075 - core[1].svIdle(17), plen 0: [] -EVENT[6034]: 0.695617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6035]: 0.695629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[6036]: 0.695638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6037]: 0.695652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[6038]: 0.695676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 144, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.695676975] HEAP: Allocated 144 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6039]: 0.695689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6040]: 0.695703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6041]: 0.695747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6042]: 0.695769450 - core[0].svPrint(26), plen 72: [msg: I (1022) example: Task[0x3ffb8600]: allocated 144 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.695769450] LOG: I (1022) example: Task[0x3ffb8600]: allocated 144 bytes @ 0x3ffb4b10 -EVENT[6043]: 0.695778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6044]: 0.695786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6045]: 0.695797075 - core[1].svIdle(17), plen 0: [] -EVENT[6046]: 0.695807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[6047]: 0.695820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6048]: 0.695829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[6049]: 0.695837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6050]: 0.695845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[6051]: 0.695858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[6052]: 0.695866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[6053]: 0.695879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[6054]: 0.695887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6055]: 0.695895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6056]: 0.695905800 - core[0].svIdle(17), plen 0: [] -EVENT[6057]: 0.695920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6058]: 0.695970075 - core[1].svPrint(26), plen 64: [msg: I (1022) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.695970075] LOG: I (1022) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[6059]: 0.695985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.695985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6060]: 0.696003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[6061]: 0.696016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6062]: 0.696025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6063]: 0.696040625 - core[1].svIdle(17), plen 0: [] -EVENT[6064]: 0.696617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6065]: 0.696629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6066]: 0.696643175 - core[0].svIdle(17), plen 0: [] -EVENT[6067]: 0.696747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6068]: 0.696756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6069]: 0.696770600 - core[1].svIdle(17), plen 0: [] -EVENT[6070]: 0.697617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6071]: 0.697629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6072]: 0.697643125 - core[0].svIdle(17), plen 0: [] -EVENT[6073]: 0.697747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6074]: 0.697757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6075]: 0.697770775 - core[1].svIdle(17), plen 0: [] -EVENT[6076]: 0.698617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6077]: 0.698629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6078]: 0.698643125 - core[0].svIdle(17), plen 0: [] -EVENT[6079]: 0.698747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6080]: 0.698756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6081]: 0.698770600 - core[1].svIdle(17), plen 0: [] -EVENT[6082]: 0.699617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6083]: 0.699629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6084]: 0.699643250 - core[0].svIdle(17), plen 0: [] -EVENT[6085]: 0.699747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6086]: 0.699756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6087]: 0.699770600 - core[1].svIdle(17), plen 0: [] -EVENT[6088]: 0.700617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6089]: 0.700631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6090]: 0.700645550 - core[0].svIdle(17), plen 0: [] -EVENT[6091]: 0.700747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6092]: 0.700756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6093]: 0.700770600 - core[1].svIdle(17), plen 0: [] -EVENT[6094]: 0.701617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6095]: 0.701629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6096]: 0.701643125 - core[0].svIdle(17), plen 0: [] -EVENT[6097]: 0.701747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6098]: 0.701757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6099]: 0.701770775 - core[1].svIdle(17), plen 0: [] -EVENT[6100]: 0.702617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6101]: 0.702629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6102]: 0.702643125 - core[0].svIdle(17), plen 0: [] -EVENT[6103]: 0.702747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6104]: 0.702756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6105]: 0.702770600 - core[1].svIdle(17), plen 0: [] -EVENT[6106]: 0.703617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6107]: 0.703629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6108]: 0.703643250 - core[0].svIdle(17), plen 0: [] -EVENT[6109]: 0.703747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6110]: 0.703756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6111]: 0.703770600 - core[1].svIdle(17), plen 0: [] -EVENT[6112]: 0.704617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6113]: 0.704629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6114]: 0.704643175 - core[0].svIdle(17), plen 0: [] -EVENT[6115]: 0.704747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6116]: 0.704756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6117]: 0.704770600 - core[1].svIdle(17), plen 0: [] -EVENT[6118]: 0.705617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6119]: 0.705629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6120]: 0.705643125 - core[0].svIdle(17), plen 0: [] -EVENT[6121]: 0.705747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6122]: 0.705757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6123]: 0.705770775 - core[1].svIdle(17), plen 0: [] -EVENT[6124]: 0.706617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6125]: 0.706629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6126]: 0.706643125 - core[0].svIdle(17), plen 0: [] -EVENT[6127]: 0.706747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6128]: 0.706756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6129]: 0.706770600 - core[1].svIdle(17), plen 0: [] -EVENT[6130]: 0.707617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6131]: 0.707629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6132]: 0.707643250 - core[0].svIdle(17), plen 0: [] -EVENT[6133]: 0.707747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6134]: 0.707756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6135]: 0.707770600 - core[1].svIdle(17), plen 0: [] -EVENT[6136]: 0.708617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6137]: 0.708629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6138]: 0.708643175 - core[0].svIdle(17), plen 0: [] -EVENT[6139]: 0.708747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6140]: 0.708756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6141]: 0.708770600 - core[1].svIdle(17), plen 0: [] -EVENT[6142]: 0.709617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6143]: 0.709629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6144]: 0.709643125 - core[0].svIdle(17), plen 0: [] -EVENT[6145]: 0.709747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6146]: 0.709757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6147]: 0.709770775 - core[1].svIdle(17), plen 0: [] -EVENT[6148]: 0.710617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6149]: 0.710629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6150]: 0.710643125 - core[0].svIdle(17), plen 0: [] -EVENT[6151]: 0.710747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6152]: 0.710756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6153]: 0.710770600 - core[1].svIdle(17), plen 0: [] -EVENT[6154]: 0.711617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6155]: 0.711629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6156]: 0.711643250 - core[0].svIdle(17), plen 0: [] -EVENT[6157]: 0.711747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6158]: 0.711756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6159]: 0.711770600 - core[1].svIdle(17), plen 0: [] -EVENT[6160]: 0.712617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6161]: 0.712632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6162]: 0.712646225 - core[0].svIdle(17), plen 0: [] -EVENT[6163]: 0.712747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6164]: 0.712756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6165]: 0.712770600 - core[1].svIdle(17), plen 0: [] -EVENT[6166]: 0.713617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6167]: 0.713629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6168]: 0.713643125 - core[0].svIdle(17), plen 0: [] -EVENT[6169]: 0.713747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6170]: 0.713757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6171]: 0.713770775 - core[1].svIdle(17), plen 0: [] -EVENT[6172]: 0.714617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6173]: 0.714629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6174]: 0.714643125 - core[0].svIdle(17), plen 0: [] -EVENT[6175]: 0.714747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6176]: 0.714756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6177]: 0.714770600 - core[1].svIdle(17), plen 0: [] -EVENT[6178]: 0.715617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6179]: 0.715629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6180]: 0.715643250 - core[0].svIdle(17), plen 0: [] -EVENT[6181]: 0.715747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6182]: 0.715756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6183]: 0.715770600 - core[1].svIdle(17), plen 0: [] -EVENT[6184]: 0.716617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6185]: 0.716629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6186]: 0.716643175 - core[0].svIdle(17), plen 0: [] -EVENT[6187]: 0.716747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6188]: 0.716756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6189]: 0.716770600 - core[1].svIdle(17), plen 0: [] -EVENT[6190]: 0.717617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6191]: 0.717629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6192]: 0.717643125 - core[0].svIdle(17), plen 0: [] -EVENT[6193]: 0.717747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6194]: 0.717757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6195]: 0.717770775 - core[1].svIdle(17), plen 0: [] -EVENT[6196]: 0.718617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6197]: 0.718629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6198]: 0.718643125 - core[0].svIdle(17), plen 0: [] -EVENT[6199]: 0.718747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6200]: 0.718756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6201]: 0.718770600 - core[1].svIdle(17), plen 0: [] -EVENT[6202]: 0.719617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6203]: 0.719629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6204]: 0.719643250 - core[0].svIdle(17), plen 0: [] -EVENT[6205]: 0.719747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6206]: 0.719756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6207]: 0.719770600 - core[1].svIdle(17), plen 0: [] -EVENT[6208]: 0.720617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6209]: 0.720629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6210]: 0.720643175 - core[0].svIdle(17), plen 0: [] -EVENT[6211]: 0.720747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6212]: 0.720756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6213]: 0.720770600 - core[1].svIdle(17), plen 0: [] -EVENT[6214]: 0.721617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6215]: 0.721629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6216]: 0.721643125 - core[0].svIdle(17), plen 0: [] -EVENT[6217]: 0.721747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6218]: 0.721757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6219]: 0.721770775 - core[1].svIdle(17), plen 0: [] -EVENT[6220]: 0.722617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6221]: 0.722629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6222]: 0.722643125 - core[0].svIdle(17), plen 0: [] -EVENT[6223]: 0.722747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6224]: 0.722756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6225]: 0.722770600 - core[1].svIdle(17), plen 0: [] -EVENT[6226]: 0.723617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6227]: 0.723629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[6228]: 0.723638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6229]: 0.723652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[6230]: 0.723676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 50, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.723676950] HEAP: Allocated 50 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6231]: 0.723692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6232]: 0.723706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6233]: 0.723747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6234]: 0.723769175 - core[0].svPrint(26), plen 71: [msg: I (1050) example: Task[0x3ffb7f40]: allocated 50 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.723769175] LOG: I (1050) example: Task[0x3ffb7f40]: allocated 50 bytes @ 0x3ffb87e4 -EVENT[6235]: 0.723777400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6236]: 0.723785550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6237]: 0.723796350 - core[1].svIdle(17), plen 0: [] -EVENT[6238]: 0.723807225 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[6239]: 0.723820175 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6240]: 0.723828875 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[6241]: 0.723836775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6242]: 0.723845325 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[6243]: 0.723858050 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[6244]: 0.723866425 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[6245]: 0.723874725 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[6246]: 0.723883475 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6247]: 0.723892925 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6248]: 0.723902125 - core[0].svIdle(17), plen 0: [] -EVENT[6249]: 0.723916950 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6250]: 0.723966250 - core[1].svPrint(26), plen 64: [msg: I (1050) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.723966250] LOG: I (1050) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[6251]: 0.723984675 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.723984675] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6252]: 0.724003250 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[6253]: 0.724015925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6254]: 0.724024725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6255]: 0.724040300 - core[1].svIdle(17), plen 0: [] -EVENT[6256]: 0.724617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6257]: 0.724629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[6258]: 0.724638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6259]: 0.724652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[6260]: 0.724676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 100, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.724676950] HEAP: Allocated 100 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6261]: 0.724689625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6262]: 0.724703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6263]: 0.724747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6264]: 0.724769475 - core[0].svPrint(26), plen 72: [msg: I (1051) example: Task[0x3ffb82a0]: allocated 100 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.724769475] LOG: I (1051) example: Task[0x3ffb82a0]: allocated 100 bytes @ 0x3ffb87e4 -EVENT[6265]: 0.724780075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6266]: 0.724789075 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6267]: 0.724798975 - core[1].svIdle(17), plen 0: [] -EVENT[6268]: 0.724809750 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[6269]: 0.724822775 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6270]: 0.724831300 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[6271]: 0.724839275 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6272]: 0.724847850 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[6273]: 0.724860500 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[6274]: 0.724868875 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[6275]: 0.724877200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[6276]: 0.724886075 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6277]: 0.724895450 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6278]: 0.724904650 - core[0].svIdle(17), plen 0: [] -EVENT[6279]: 0.724919475 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6280]: 0.724968725 - core[1].svPrint(26), plen 64: [msg: I (1051) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.724968725] LOG: I (1051) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[6281]: 0.724984325 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.724984325] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6282]: 0.725005950 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[6283]: 0.725018650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6284]: 0.725027450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6285]: 0.725043025 - core[1].svIdle(17), plen 0: [] -EVENT[6286]: 0.725617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6287]: 0.725629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[6288]: 0.725638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6289]: 0.725652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[6290]: 0.725676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 150, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.725676975] HEAP: Allocated 150 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6291]: 0.725689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6292]: 0.725703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6293]: 0.725747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6294]: 0.725769450 - core[0].svPrint(26), plen 72: [msg: I (1052) example: Task[0x3ffb8600]: allocated 150 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.725769450] LOG: I (1052) example: Task[0x3ffb8600]: allocated 150 bytes @ 0x3ffb4b10 -EVENT[6295]: 0.725778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6296]: 0.725786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6297]: 0.725797075 - core[1].svIdle(17), plen 0: [] -EVENT[6298]: 0.725807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[6299]: 0.725820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6300]: 0.725829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[6301]: 0.725837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6302]: 0.725845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[6303]: 0.725858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[6304]: 0.725866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[6305]: 0.725878175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[6306]: 0.725886350 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6307]: 0.725894725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6308]: 0.725904975 - core[0].svIdle(17), plen 0: [] -EVENT[6309]: 0.725919925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6310]: 0.725969275 - core[1].svPrint(26), plen 64: [msg: I (1052) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.725969275] LOG: I (1052) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[6311]: 0.725984650 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.725984650] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6312]: 0.726002775 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[6313]: 0.726015600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6314]: 0.726024350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6315]: 0.726039800 - core[1].svIdle(17), plen 0: [] -EVENT[6316]: 0.726617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6317]: 0.726629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6318]: 0.726643175 - core[0].svIdle(17), plen 0: [] -EVENT[6319]: 0.726747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6320]: 0.726756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6321]: 0.726770600 - core[1].svIdle(17), plen 0: [] -EVENT[6322]: 0.727617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6323]: 0.727629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6324]: 0.727643125 - core[0].svIdle(17), plen 0: [] -EVENT[6325]: 0.727747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6326]: 0.727757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6327]: 0.727770775 - core[1].svIdle(17), plen 0: [] -EVENT[6328]: 0.728617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6329]: 0.728629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6330]: 0.728643125 - core[0].svIdle(17), plen 0: [] -EVENT[6331]: 0.728747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6332]: 0.728756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6333]: 0.728770600 - core[1].svIdle(17), plen 0: [] -EVENT[6334]: 0.729617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6335]: 0.729629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6336]: 0.729643250 - core[0].svIdle(17), plen 0: [] -EVENT[6337]: 0.729747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6338]: 0.729756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6339]: 0.729770600 - core[1].svIdle(17), plen 0: [] -EVENT[6340]: 0.730617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6341]: 0.730632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6342]: 0.730646225 - core[0].svIdle(17), plen 0: [] -EVENT[6343]: 0.730747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6344]: 0.730756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6345]: 0.730770600 - core[1].svIdle(17), plen 0: [] -EVENT[6346]: 0.731617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6347]: 0.731629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6348]: 0.731643125 - core[0].svIdle(17), plen 0: [] -EVENT[6349]: 0.731747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6350]: 0.731757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6351]: 0.731770775 - core[1].svIdle(17), plen 0: [] -EVENT[6352]: 0.732617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6353]: 0.732629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6354]: 0.732643125 - core[0].svIdle(17), plen 0: [] -EVENT[6355]: 0.732747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6356]: 0.732756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6357]: 0.732770600 - core[1].svIdle(17), plen 0: [] -EVENT[6358]: 0.733617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6359]: 0.733629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6360]: 0.733643250 - core[0].svIdle(17), plen 0: [] -EVENT[6361]: 0.733747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6362]: 0.733756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6363]: 0.733770600 - core[1].svIdle(17), plen 0: [] -EVENT[6364]: 0.734617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6365]: 0.734629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6366]: 0.734643175 - core[0].svIdle(17), plen 0: [] -EVENT[6367]: 0.734747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6368]: 0.734756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6369]: 0.734770600 - core[1].svIdle(17), plen 0: [] -EVENT[6370]: 0.735617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6371]: 0.735629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6372]: 0.735643125 - core[0].svIdle(17), plen 0: [] -EVENT[6373]: 0.735747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6374]: 0.735757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6375]: 0.735770775 - core[1].svIdle(17), plen 0: [] -EVENT[6376]: 0.736617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6377]: 0.736629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6378]: 0.736643125 - core[0].svIdle(17), plen 0: [] -EVENT[6379]: 0.736747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6380]: 0.736756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6381]: 0.736770600 - core[1].svIdle(17), plen 0: [] -EVENT[6382]: 0.737617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6383]: 0.737629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6384]: 0.737643250 - core[0].svIdle(17), plen 0: [] -EVENT[6385]: 0.737747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6386]: 0.737756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6387]: 0.737770600 - core[1].svIdle(17), plen 0: [] -EVENT[6388]: 0.738617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6389]: 0.738629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6390]: 0.738643175 - core[0].svIdle(17), plen 0: [] -EVENT[6391]: 0.738747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6392]: 0.738756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6393]: 0.738770600 - core[1].svIdle(17), plen 0: [] -EVENT[6394]: 0.739617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6395]: 0.739629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6396]: 0.739643125 - core[0].svIdle(17), plen 0: [] -EVENT[6397]: 0.739747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6398]: 0.739757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6399]: 0.739770775 - core[1].svIdle(17), plen 0: [] -EVENT[6400]: 0.740617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6401]: 0.740629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6402]: 0.740643125 - core[0].svIdle(17), plen 0: [] -EVENT[6403]: 0.740747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6404]: 0.740756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6405]: 0.740770600 - core[1].svIdle(17), plen 0: [] -EVENT[6406]: 0.741617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6407]: 0.741629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6408]: 0.741643250 - core[0].svIdle(17), plen 0: [] -EVENT[6409]: 0.741747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6410]: 0.741756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6411]: 0.741770600 - core[1].svIdle(17), plen 0: [] -EVENT[6412]: 0.742617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6413]: 0.742632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6414]: 0.742646225 - core[0].svIdle(17), plen 0: [] -EVENT[6415]: 0.742747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6416]: 0.742756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6417]: 0.742770600 - core[1].svIdle(17), plen 0: [] -EVENT[6418]: 0.743617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6419]: 0.743629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6420]: 0.743643125 - core[0].svIdle(17), plen 0: [] -EVENT[6421]: 0.743747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6422]: 0.743757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6423]: 0.743770775 - core[1].svIdle(17), plen 0: [] -EVENT[6424]: 0.744617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6425]: 0.744629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6426]: 0.744643125 - core[0].svIdle(17), plen 0: [] -EVENT[6427]: 0.744747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6428]: 0.744756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6429]: 0.744770600 - core[1].svIdle(17), plen 0: [] -EVENT[6430]: 0.745617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6431]: 0.745629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6432]: 0.745643250 - core[0].svIdle(17), plen 0: [] -EVENT[6433]: 0.745747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6434]: 0.745756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6435]: 0.745770600 - core[1].svIdle(17), plen 0: [] -EVENT[6436]: 0.746617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6437]: 0.746629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6438]: 0.746643175 - core[0].svIdle(17), plen 0: [] -EVENT[6439]: 0.746747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6440]: 0.746756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6441]: 0.746770600 - core[1].svIdle(17), plen 0: [] -EVENT[6442]: 0.747617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6443]: 0.747629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6444]: 0.747643125 - core[0].svIdle(17), plen 0: [] -EVENT[6445]: 0.747747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6446]: 0.747757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6447]: 0.747770775 - core[1].svIdle(17), plen 0: [] -EVENT[6448]: 0.748617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6449]: 0.748629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6450]: 0.748643125 - core[0].svIdle(17), plen 0: [] -EVENT[6451]: 0.748747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6452]: 0.748756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6453]: 0.748770600 - core[1].svIdle(17), plen 0: [] -EVENT[6454]: 0.749617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6455]: 0.749629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6456]: 0.749643250 - core[0].svIdle(17), plen 0: [] -EVENT[6457]: 0.749747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6458]: 0.749756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6459]: 0.749770600 - core[1].svIdle(17), plen 0: [] -EVENT[6460]: 0.750617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6461]: 0.750629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6462]: 0.750643175 - core[0].svIdle(17), plen 0: [] -EVENT[6463]: 0.750747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6464]: 0.750756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6465]: 0.750770600 - core[1].svIdle(17), plen 0: [] -EVENT[6466]: 0.751617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6467]: 0.751629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6468]: 0.751643125 - core[0].svIdle(17), plen 0: [] -EVENT[6469]: 0.751747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6470]: 0.751757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6471]: 0.751770775 - core[1].svIdle(17), plen 0: [] -EVENT[6472]: 0.752617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6473]: 0.752629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6474]: 0.752643125 - core[0].svIdle(17), plen 0: [] -EVENT[6475]: 0.752747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6476]: 0.752756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6477]: 0.752770600 - core[1].svIdle(17), plen 0: [] -EVENT[6478]: 0.753617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6479]: 0.753629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[6480]: 0.753638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6481]: 0.753652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[6482]: 0.753676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 52, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.753676950] HEAP: Allocated 52 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6483]: 0.753692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6484]: 0.753706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6485]: 0.753747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6486]: 0.753768925 - core[0].svPrint(26), plen 71: [msg: I (1080) example: Task[0x3ffb7f40]: allocated 52 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.753768925] LOG: I (1080) example: Task[0x3ffb7f40]: allocated 52 bytes @ 0x3ffb87e4 -EVENT[6487]: 0.753777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6488]: 0.753786200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6489]: 0.753796350 - core[1].svIdle(17), plen 0: [] -EVENT[6490]: 0.753807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[6491]: 0.753820150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6492]: 0.753828875 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[6493]: 0.753836775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6494]: 0.753845325 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[6495]: 0.753858025 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[6496]: 0.753866425 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[6497]: 0.753874725 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[6498]: 0.753883450 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6499]: 0.753892900 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6500]: 0.753902100 - core[0].svIdle(17), plen 0: [] -EVENT[6501]: 0.753916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6502]: 0.753966250 - core[1].svPrint(26), plen 64: [msg: I (1080) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.753966250] LOG: I (1080) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[6503]: 0.753984100 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.753984100] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6504]: 0.754002650 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[6505]: 0.754015350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6506]: 0.754024150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6507]: 0.754039725 - core[1].svIdle(17), plen 0: [] -EVENT[6508]: 0.754617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6509]: 0.754629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[6510]: 0.754638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6511]: 0.754652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[6512]: 0.754676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 104, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.754676950] HEAP: Allocated 104 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6513]: 0.754689625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6514]: 0.754703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6515]: 0.754747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6516]: 0.754769475 - core[0].svPrint(26), plen 72: [msg: I (1081) example: Task[0x3ffb82a0]: allocated 104 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.754769475] LOG: I (1081) example: Task[0x3ffb82a0]: allocated 104 bytes @ 0x3ffb87e4 -EVENT[6517]: 0.754781275 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6518]: 0.754789775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6519]: 0.754800150 - core[1].svIdle(17), plen 0: [] -EVENT[6520]: 0.754810925 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[6521]: 0.754823950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6522]: 0.754832475 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[6523]: 0.754840450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6524]: 0.754849025 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[6525]: 0.754861675 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[6526]: 0.754870050 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[6527]: 0.754878375 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[6528]: 0.754887250 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6529]: 0.754896625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6530]: 0.754905825 - core[0].svIdle(17), plen 0: [] -EVENT[6531]: 0.754920650 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6532]: 0.754969900 - core[1].svPrint(26), plen 64: [msg: I (1081) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.754969900] LOG: I (1081) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[6533]: 0.754985500 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.754985500] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6534]: 0.755007125 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[6535]: 0.755019800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6536]: 0.755028600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6537]: 0.755044175 - core[1].svIdle(17), plen 0: [] -EVENT[6538]: 0.755617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6539]: 0.755629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[6540]: 0.755638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6541]: 0.755652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[6542]: 0.755676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 156, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.755676975] HEAP: Allocated 156 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6543]: 0.755689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6544]: 0.755703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6545]: 0.755747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6546]: 0.755769450 - core[0].svPrint(26), plen 72: [msg: I (1082) example: Task[0x3ffb8600]: allocated 156 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.755769450] LOG: I (1082) example: Task[0x3ffb8600]: allocated 156 bytes @ 0x3ffb4b10 -EVENT[6547]: 0.755778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6548]: 0.755786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6549]: 0.755797075 - core[1].svIdle(17), plen 0: [] -EVENT[6550]: 0.755807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[6551]: 0.755820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6552]: 0.755829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[6553]: 0.755837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6554]: 0.755845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[6555]: 0.755858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[6556]: 0.755866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[6557]: 0.755879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[6558]: 0.755887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6559]: 0.755895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6560]: 0.755905825 - core[0].svIdle(17), plen 0: [] -EVENT[6561]: 0.755920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6562]: 0.755970100 - core[1].svPrint(26), plen 64: [msg: I (1082) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.755970100] LOG: I (1082) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[6563]: 0.755985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.755985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6564]: 0.756003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[6565]: 0.756016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6566]: 0.756025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6567]: 0.756040650 - core[1].svIdle(17), plen 0: [] -EVENT[6568]: 0.756617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6569]: 0.756629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6570]: 0.756643175 - core[0].svIdle(17), plen 0: [] -EVENT[6571]: 0.756747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6572]: 0.756756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6573]: 0.756770600 - core[1].svIdle(17), plen 0: [] -EVENT[6574]: 0.757617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6575]: 0.757629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6576]: 0.757643125 - core[0].svIdle(17), plen 0: [] -EVENT[6577]: 0.757747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6578]: 0.757757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6579]: 0.757770775 - core[1].svIdle(17), plen 0: [] -EVENT[6580]: 0.758617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6581]: 0.758629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6582]: 0.758643125 - core[0].svIdle(17), plen 0: [] -EVENT[6583]: 0.758747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6584]: 0.758756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6585]: 0.758770600 - core[1].svIdle(17), plen 0: [] -EVENT[6586]: 0.759617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6587]: 0.759629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6588]: 0.759643250 - core[0].svIdle(17), plen 0: [] -EVENT[6589]: 0.759747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6590]: 0.759756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6591]: 0.759770600 - core[1].svIdle(17), plen 0: [] -EVENT[6592]: 0.760617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6593]: 0.760632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6594]: 0.760646225 - core[0].svIdle(17), plen 0: [] -EVENT[6595]: 0.760747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6596]: 0.760756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6597]: 0.760770600 - core[1].svIdle(17), plen 0: [] -EVENT[6598]: 0.761617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6599]: 0.761629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6600]: 0.761643125 - core[0].svIdle(17), plen 0: [] -EVENT[6601]: 0.761747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6602]: 0.761757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6603]: 0.761770775 - core[1].svIdle(17), plen 0: [] -EVENT[6604]: 0.762617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6605]: 0.762629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6606]: 0.762643125 - core[0].svIdle(17), plen 0: [] -EVENT[6607]: 0.762747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6608]: 0.762756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6609]: 0.762770600 - core[1].svIdle(17), plen 0: [] -EVENT[6610]: 0.763617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6611]: 0.763629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6612]: 0.763643250 - core[0].svIdle(17), plen 0: [] -EVENT[6613]: 0.763747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6614]: 0.763756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6615]: 0.763770600 - core[1].svIdle(17), plen 0: [] -EVENT[6616]: 0.764617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6617]: 0.764629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6618]: 0.764643175 - core[0].svIdle(17), plen 0: [] -EVENT[6619]: 0.764747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6620]: 0.764756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6621]: 0.764770600 - core[1].svIdle(17), plen 0: [] -EVENT[6622]: 0.765617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6623]: 0.765629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6624]: 0.765643125 - core[0].svIdle(17), plen 0: [] -EVENT[6625]: 0.765747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6626]: 0.765757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6627]: 0.765770775 - core[1].svIdle(17), plen 0: [] -EVENT[6628]: 0.766617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6629]: 0.766629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6630]: 0.766643125 - core[0].svIdle(17), plen 0: [] -EVENT[6631]: 0.766747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6632]: 0.766756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6633]: 0.766770600 - core[1].svIdle(17), plen 0: [] -EVENT[6634]: 0.767617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6635]: 0.767629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6636]: 0.767643250 - core[0].svIdle(17), plen 0: [] -EVENT[6637]: 0.767747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6638]: 0.767756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6639]: 0.767770600 - core[1].svIdle(17), plen 0: [] -EVENT[6640]: 0.768617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6641]: 0.768629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6642]: 0.768643175 - core[0].svIdle(17), plen 0: [] -EVENT[6643]: 0.768747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6644]: 0.768756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6645]: 0.768770600 - core[1].svIdle(17), plen 0: [] -EVENT[6646]: 0.769617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6647]: 0.769629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6648]: 0.769643125 - core[0].svIdle(17), plen 0: [] -EVENT[6649]: 0.769747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6650]: 0.769757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6651]: 0.769770775 - core[1].svIdle(17), plen 0: [] -EVENT[6652]: 0.770617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6653]: 0.770629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6654]: 0.770643125 - core[0].svIdle(17), plen 0: [] -EVENT[6655]: 0.770747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6656]: 0.770756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6657]: 0.770770600 - core[1].svIdle(17), plen 0: [] -EVENT[6658]: 0.771617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6659]: 0.771629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6660]: 0.771643250 - core[0].svIdle(17), plen 0: [] -EVENT[6661]: 0.771747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6662]: 0.771756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6663]: 0.771770600 - core[1].svIdle(17), plen 0: [] -EVENT[6664]: 0.772617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6665]: 0.772631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6666]: 0.772645550 - core[0].svIdle(17), plen 0: [] -EVENT[6667]: 0.772747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6668]: 0.772756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6669]: 0.772770600 - core[1].svIdle(17), plen 0: [] -EVENT[6670]: 0.773617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6671]: 0.773629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6672]: 0.773643125 - core[0].svIdle(17), plen 0: [] -EVENT[6673]: 0.773747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6674]: 0.773757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6675]: 0.773770775 - core[1].svIdle(17), plen 0: [] -EVENT[6676]: 0.774617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6677]: 0.774629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6678]: 0.774643125 - core[0].svIdle(17), plen 0: [] -EVENT[6679]: 0.774747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6680]: 0.774756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6681]: 0.774770600 - core[1].svIdle(17), plen 0: [] -EVENT[6682]: 0.775617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6683]: 0.775629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6684]: 0.775643250 - core[0].svIdle(17), plen 0: [] -EVENT[6685]: 0.775747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6686]: 0.775756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6687]: 0.775770600 - core[1].svIdle(17), plen 0: [] -EVENT[6688]: 0.776617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6689]: 0.776629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6690]: 0.776643175 - core[0].svIdle(17), plen 0: [] -EVENT[6691]: 0.776747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6692]: 0.776756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6693]: 0.776770600 - core[1].svIdle(17), plen 0: [] -EVENT[6694]: 0.777617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6695]: 0.777629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6696]: 0.777643125 - core[0].svIdle(17), plen 0: [] -EVENT[6697]: 0.777747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6698]: 0.777757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6699]: 0.777770775 - core[1].svIdle(17), plen 0: [] -EVENT[6700]: 0.778617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6701]: 0.778629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6702]: 0.778643125 - core[0].svIdle(17), plen 0: [] -EVENT[6703]: 0.778747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6704]: 0.778756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6705]: 0.778770600 - core[1].svIdle(17), plen 0: [] -EVENT[6706]: 0.779617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6707]: 0.779629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6708]: 0.779643250 - core[0].svIdle(17), plen 0: [] -EVENT[6709]: 0.779747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6710]: 0.779756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6711]: 0.779770600 - core[1].svIdle(17), plen 0: [] -EVENT[6712]: 0.780617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6713]: 0.780629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6714]: 0.780643175 - core[0].svIdle(17), plen 0: [] -EVENT[6715]: 0.780747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6716]: 0.780756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6717]: 0.780770600 - core[1].svIdle(17), plen 0: [] -EVENT[6718]: 0.781617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6719]: 0.781629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6720]: 0.781643125 - core[0].svIdle(17), plen 0: [] -EVENT[6721]: 0.781747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6722]: 0.781757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6723]: 0.781770775 - core[1].svIdle(17), plen 0: [] -EVENT[6724]: 0.782617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6725]: 0.782629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6726]: 0.782643125 - core[0].svIdle(17), plen 0: [] -EVENT[6727]: 0.782747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6728]: 0.782756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6729]: 0.782770600 - core[1].svIdle(17), plen 0: [] -EVENT[6730]: 0.783617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6731]: 0.783629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[6732]: 0.783638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6733]: 0.783652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[6734]: 0.783676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 54, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.783676950] HEAP: Allocated 54 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6735]: 0.783692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6736]: 0.783706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6737]: 0.783747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6738]: 0.783768925 - core[0].svPrint(26), plen 71: [msg: I (1110) example: Task[0x3ffb7f40]: allocated 54 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.783768925] LOG: I (1110) example: Task[0x3ffb7f40]: allocated 54 bytes @ 0x3ffb87e4 -EVENT[6739]: 0.783777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6740]: 0.783786200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6741]: 0.783796350 - core[1].svIdle(17), plen 0: [] -EVENT[6742]: 0.783807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[6743]: 0.783820150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6744]: 0.783828875 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[6745]: 0.783836775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6746]: 0.783845325 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[6747]: 0.783858025 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[6748]: 0.783866425 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[6749]: 0.783874725 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[6750]: 0.783883450 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6751]: 0.783892900 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6752]: 0.783902100 - core[0].svIdle(17), plen 0: [] -EVENT[6753]: 0.783916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6754]: 0.783966250 - core[1].svPrint(26), plen 64: [msg: I (1110) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.783966250] LOG: I (1110) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[6755]: 0.783984675 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.783984675] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6756]: 0.784003225 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[6757]: 0.784015925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6758]: 0.784024725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6759]: 0.784040300 - core[1].svIdle(17), plen 0: [] -EVENT[6760]: 0.784617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6761]: 0.784629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[6762]: 0.784638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6763]: 0.784652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[6764]: 0.784676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 108, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.784676950] HEAP: Allocated 108 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6765]: 0.784689625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6766]: 0.784703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6767]: 0.784747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6768]: 0.784769475 - core[0].svPrint(26), plen 72: [msg: I (1111) example: Task[0x3ffb82a0]: allocated 108 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.784769475] LOG: I (1111) example: Task[0x3ffb82a0]: allocated 108 bytes @ 0x3ffb87e4 -EVENT[6769]: 0.784781275 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6770]: 0.784789775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6771]: 0.784800150 - core[1].svIdle(17), plen 0: [] -EVENT[6772]: 0.784810925 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[6773]: 0.784823950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6774]: 0.784832475 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[6775]: 0.784840450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6776]: 0.784849025 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[6777]: 0.784861675 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[6778]: 0.784870050 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[6779]: 0.784878375 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[6780]: 0.784887250 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6781]: 0.784896625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6782]: 0.784905825 - core[0].svIdle(17), plen 0: [] -EVENT[6783]: 0.784920650 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6784]: 0.784969900 - core[1].svPrint(26), plen 64: [msg: I (1111) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.784969900] LOG: I (1111) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[6785]: 0.784985500 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.784985500] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6786]: 0.785007025 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[6787]: 0.785019725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6788]: 0.785028525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6789]: 0.785044100 - core[1].svIdle(17), plen 0: [] -EVENT[6790]: 0.785617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6791]: 0.785629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[6792]: 0.785638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6793]: 0.785652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[6794]: 0.785676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 162, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.785676975] HEAP: Allocated 162 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6795]: 0.785689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6796]: 0.785703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6797]: 0.785747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6798]: 0.785769450 - core[0].svPrint(26), plen 72: [msg: I (1112) example: Task[0x3ffb8600]: allocated 162 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.785769450] LOG: I (1112) example: Task[0x3ffb8600]: allocated 162 bytes @ 0x3ffb4b10 -EVENT[6799]: 0.785778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6800]: 0.785786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6801]: 0.785797075 - core[1].svIdle(17), plen 0: [] -EVENT[6802]: 0.785807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[6803]: 0.785820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6804]: 0.785829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[6805]: 0.785837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6806]: 0.785845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[6807]: 0.785858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[6808]: 0.785866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[6809]: 0.785879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[6810]: 0.785887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6811]: 0.785895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6812]: 0.785905825 - core[0].svIdle(17), plen 0: [] -EVENT[6813]: 0.785920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6814]: 0.785970100 - core[1].svPrint(26), plen 64: [msg: I (1112) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.785970100] LOG: I (1112) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[6815]: 0.785985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.785985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6816]: 0.786003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[6817]: 0.786016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6818]: 0.786025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6819]: 0.786040650 - core[1].svIdle(17), plen 0: [] -EVENT[6820]: 0.786617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6821]: 0.786629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6822]: 0.786643175 - core[0].svIdle(17), plen 0: [] -EVENT[6823]: 0.786747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6824]: 0.786756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6825]: 0.786770600 - core[1].svIdle(17), plen 0: [] -EVENT[6826]: 0.787617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6827]: 0.787629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6828]: 0.787643125 - core[0].svIdle(17), plen 0: [] -EVENT[6829]: 0.787747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6830]: 0.787757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6831]: 0.787770775 - core[1].svIdle(17), plen 0: [] -EVENT[6832]: 0.788617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6833]: 0.788629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6834]: 0.788643125 - core[0].svIdle(17), plen 0: [] -EVENT[6835]: 0.788747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6836]: 0.788756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6837]: 0.788770600 - core[1].svIdle(17), plen 0: [] -EVENT[6838]: 0.789617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6839]: 0.789629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6840]: 0.789643250 - core[0].svIdle(17), plen 0: [] -EVENT[6841]: 0.789747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6842]: 0.789756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6843]: 0.789770600 - core[1].svIdle(17), plen 0: [] -EVENT[6844]: 0.790617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6845]: 0.790632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6846]: 0.790646225 - core[0].svIdle(17), plen 0: [] -EVENT[6847]: 0.790747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6848]: 0.790756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6849]: 0.790770600 - core[1].svIdle(17), plen 0: [] -EVENT[6850]: 0.791617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6851]: 0.791629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6852]: 0.791643125 - core[0].svIdle(17), plen 0: [] -EVENT[6853]: 0.791747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6854]: 0.791757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6855]: 0.791770775 - core[1].svIdle(17), plen 0: [] -EVENT[6856]: 0.792617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6857]: 0.792629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6858]: 0.792643125 - core[0].svIdle(17), plen 0: [] -EVENT[6859]: 0.792747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6860]: 0.792756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6861]: 0.792770600 - core[1].svIdle(17), plen 0: [] -EVENT[6862]: 0.793617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6863]: 0.793629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6864]: 0.793643250 - core[0].svIdle(17), plen 0: [] -EVENT[6865]: 0.793747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6866]: 0.793756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6867]: 0.793770600 - core[1].svIdle(17), plen 0: [] -EVENT[6868]: 0.794617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6869]: 0.794629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6870]: 0.794643175 - core[0].svIdle(17), plen 0: [] -EVENT[6871]: 0.794747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6872]: 0.794756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6873]: 0.794770600 - core[1].svIdle(17), plen 0: [] -EVENT[6874]: 0.795617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6875]: 0.795629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6876]: 0.795643125 - core[0].svIdle(17), plen 0: [] -EVENT[6877]: 0.795747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6878]: 0.795757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6879]: 0.795770775 - core[1].svIdle(17), plen 0: [] -EVENT[6880]: 0.796617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6881]: 0.796629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6882]: 0.796643125 - core[0].svIdle(17), plen 0: [] -EVENT[6883]: 0.796747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6884]: 0.796756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6885]: 0.796770600 - core[1].svIdle(17), plen 0: [] -EVENT[6886]: 0.797617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6887]: 0.797629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6888]: 0.797643250 - core[0].svIdle(17), plen 0: [] -EVENT[6889]: 0.797747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6890]: 0.797756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6891]: 0.797770600 - core[1].svIdle(17), plen 0: [] -EVENT[6892]: 0.798617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6893]: 0.798629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6894]: 0.798643175 - core[0].svIdle(17), plen 0: [] -EVENT[6895]: 0.798747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6896]: 0.798756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6897]: 0.798770600 - core[1].svIdle(17), plen 0: [] -EVENT[6898]: 0.799617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6899]: 0.799629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6900]: 0.799643125 - core[0].svIdle(17), plen 0: [] -EVENT[6901]: 0.799747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6902]: 0.799757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6903]: 0.799770775 - core[1].svIdle(17), plen 0: [] -EVENT[6904]: 0.800617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6905]: 0.800629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6906]: 0.800643125 - core[0].svIdle(17), plen 0: [] -EVENT[6907]: 0.800747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6908]: 0.800756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6909]: 0.800770600 - core[1].svIdle(17), plen 0: [] -EVENT[6910]: 0.801617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6911]: 0.801629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6912]: 0.801643250 - core[0].svIdle(17), plen 0: [] -EVENT[6913]: 0.801747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6914]: 0.801756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6915]: 0.801770600 - core[1].svIdle(17), plen 0: [] -EVENT[6916]: 0.802617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6917]: 0.802632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6918]: 0.802646225 - core[0].svIdle(17), plen 0: [] -EVENT[6919]: 0.802747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6920]: 0.802756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6921]: 0.802770600 - core[1].svIdle(17), plen 0: [] -EVENT[6922]: 0.803617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6923]: 0.803629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6924]: 0.803643125 - core[0].svIdle(17), plen 0: [] -EVENT[6925]: 0.803747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6926]: 0.803757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6927]: 0.803770775 - core[1].svIdle(17), plen 0: [] -EVENT[6928]: 0.804617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6929]: 0.804629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6930]: 0.804643125 - core[0].svIdle(17), plen 0: [] -EVENT[6931]: 0.804747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6932]: 0.804756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6933]: 0.804770600 - core[1].svIdle(17), plen 0: [] -EVENT[6934]: 0.805617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6935]: 0.805629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6936]: 0.805643250 - core[0].svIdle(17), plen 0: [] -EVENT[6937]: 0.805747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6938]: 0.805756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6939]: 0.805770600 - core[1].svIdle(17), plen 0: [] -EVENT[6940]: 0.806617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6941]: 0.806629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6942]: 0.806643175 - core[0].svIdle(17), plen 0: [] -EVENT[6943]: 0.806747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6944]: 0.806756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6945]: 0.806770600 - core[1].svIdle(17), plen 0: [] -EVENT[6946]: 0.807617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6947]: 0.807629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6948]: 0.807643125 - core[0].svIdle(17), plen 0: [] -EVENT[6949]: 0.807747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6950]: 0.807757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6951]: 0.807770775 - core[1].svIdle(17), plen 0: [] -EVENT[6952]: 0.808617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6953]: 0.808629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6954]: 0.808643125 - core[0].svIdle(17), plen 0: [] -EVENT[6955]: 0.808747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6956]: 0.808756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6957]: 0.808770600 - core[1].svIdle(17), plen 0: [] -EVENT[6958]: 0.809617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6959]: 0.809629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6960]: 0.809643250 - core[0].svIdle(17), plen 0: [] -EVENT[6961]: 0.809747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6962]: 0.809756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6963]: 0.809770600 - core[1].svIdle(17), plen 0: [] -EVENT[6964]: 0.810617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6965]: 0.810629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6966]: 0.810643175 - core[0].svIdle(17), plen 0: [] -EVENT[6967]: 0.810747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6968]: 0.810756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6969]: 0.810770600 - core[1].svIdle(17), plen 0: [] -EVENT[6970]: 0.811617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6971]: 0.811629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6972]: 0.811643125 - core[0].svIdle(17), plen 0: [] -EVENT[6973]: 0.811747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6974]: 0.811757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6975]: 0.811770775 - core[1].svIdle(17), plen 0: [] -EVENT[6976]: 0.812617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6977]: 0.812629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6978]: 0.812643125 - core[0].svIdle(17), plen 0: [] -EVENT[6979]: 0.812747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6980]: 0.812756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6981]: 0.812770600 - core[1].svIdle(17), plen 0: [] -EVENT[6982]: 0.813617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6983]: 0.813629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[6984]: 0.813638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[6985]: 0.813652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[6986]: 0.813676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 56, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.813676950] HEAP: Allocated 56 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[6987]: 0.813692625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[6988]: 0.813706700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6989]: 0.813747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[6990]: 0.813768900 - core[0].svPrint(26), plen 71: [msg: I (1140) example: Task[0x3ffb7f40]: allocated 56 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.813768900] LOG: I (1140) example: Task[0x3ffb7f40]: allocated 56 bytes @ 0x3ffb87e4 -EVENT[6991]: 0.813777825 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6992]: 0.813786325 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[6993]: 0.813796400 - core[1].svIdle(17), plen 0: [] -EVENT[6994]: 0.813807250 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[6995]: 0.813820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[6996]: 0.813828925 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[6997]: 0.813836825 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[6998]: 0.813845375 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[6999]: 0.813858075 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[7000]: 0.813866475 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[7001]: 0.813874775 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[7002]: 0.813883500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7003]: 0.813892950 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7004]: 0.813902150 - core[0].svIdle(17), plen 0: [] -EVENT[7005]: 0.813916975 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7006]: 0.813966300 - core[1].svPrint(26), plen 64: [msg: I (1140) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.813966300] LOG: I (1140) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[7007]: 0.813984700 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.813984700] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7008]: 0.814003275 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[7009]: 0.814015950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7010]: 0.814024750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7011]: 0.814040325 - core[1].svIdle(17), plen 0: [] -EVENT[7012]: 0.814617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7013]: 0.814629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[7014]: 0.814638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7015]: 0.814652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[7016]: 0.814676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 112, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.814676950] HEAP: Allocated 112 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7017]: 0.814689625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7018]: 0.814703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7019]: 0.814747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7020]: 0.814769475 - core[0].svPrint(26), plen 72: [msg: I (1141) example: Task[0x3ffb82a0]: allocated 112 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.814769475] LOG: I (1141) example: Task[0x3ffb82a0]: allocated 112 bytes @ 0x3ffb87e4 -EVENT[7021]: 0.814783625 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7022]: 0.814791875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7023]: 0.814802625 - core[1].svIdle(17), plen 0: [] -EVENT[7024]: 0.814813425 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[7025]: 0.814826425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7026]: 0.814834975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[7027]: 0.814842925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7028]: 0.814851500 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[7029]: 0.814864150 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[7030]: 0.814872550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[7031]: 0.814880850 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[7032]: 0.814889725 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7033]: 0.814899125 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7034]: 0.814908300 - core[0].svIdle(17), plen 0: [] -EVENT[7035]: 0.814923125 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7036]: 0.814972375 - core[1].svPrint(26), plen 64: [msg: I (1141) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.814972375] LOG: I (1141) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[7037]: 0.814987975 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.814987975] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7038]: 0.815009525 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[7039]: 0.815022200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7040]: 0.815031000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7041]: 0.815046575 - core[1].svIdle(17), plen 0: [] -EVENT[7042]: 0.815617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7043]: 0.815629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[7044]: 0.815638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7045]: 0.815652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[7046]: 0.815676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 168, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.815676975] HEAP: Allocated 168 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7047]: 0.815689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7048]: 0.815703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7049]: 0.815747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7050]: 0.815769450 - core[0].svPrint(26), plen 72: [msg: I (1142) example: Task[0x3ffb8600]: allocated 168 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.815769450] LOG: I (1142) example: Task[0x3ffb8600]: allocated 168 bytes @ 0x3ffb4b10 -EVENT[7051]: 0.815778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7052]: 0.815786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7053]: 0.815797075 - core[1].svIdle(17), plen 0: [] -EVENT[7054]: 0.815807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[7055]: 0.815820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7056]: 0.815829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[7057]: 0.815837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7058]: 0.815845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[7059]: 0.815858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[7060]: 0.815866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[7061]: 0.815879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[7062]: 0.815887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7063]: 0.815895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7064]: 0.815905825 - core[0].svIdle(17), plen 0: [] -EVENT[7065]: 0.815920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7066]: 0.815970100 - core[1].svPrint(26), plen 64: [msg: I (1142) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.815970100] LOG: I (1142) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[7067]: 0.815985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.815985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7068]: 0.816003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[7069]: 0.816016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7070]: 0.816025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7071]: 0.816040650 - core[1].svIdle(17), plen 0: [] -EVENT[7072]: 0.816617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7073]: 0.816629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7074]: 0.816643175 - core[0].svIdle(17), plen 0: [] -EVENT[7075]: 0.816747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7076]: 0.816756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7077]: 0.816770600 - core[1].svIdle(17), plen 0: [] -EVENT[7078]: 0.817617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7079]: 0.817629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7080]: 0.817643125 - core[0].svIdle(17), plen 0: [] -EVENT[7081]: 0.817747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7082]: 0.817757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7083]: 0.817770775 - core[1].svIdle(17), plen 0: [] -EVENT[7084]: 0.818617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7085]: 0.818629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7086]: 0.818643125 - core[0].svIdle(17), plen 0: [] -EVENT[7087]: 0.818747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7088]: 0.818756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7089]: 0.818770600 - core[1].svIdle(17), plen 0: [] -EVENT[7090]: 0.819617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7091]: 0.819629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7092]: 0.819643250 - core[0].svIdle(17), plen 0: [] -EVENT[7093]: 0.819747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7094]: 0.819756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7095]: 0.819770600 - core[1].svIdle(17), plen 0: [] -EVENT[7096]: 0.820617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7097]: 0.820632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7098]: 0.820646225 - core[0].svIdle(17), plen 0: [] -EVENT[7099]: 0.820747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7100]: 0.820756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7101]: 0.820770600 - core[1].svIdle(17), plen 0: [] -EVENT[7102]: 0.821617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7103]: 0.821629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7104]: 0.821643125 - core[0].svIdle(17), plen 0: [] -EVENT[7105]: 0.821747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7106]: 0.821757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7107]: 0.821770775 - core[1].svIdle(17), plen 0: [] -EVENT[7108]: 0.822617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7109]: 0.822629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7110]: 0.822643125 - core[0].svIdle(17), plen 0: [] -EVENT[7111]: 0.822747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7112]: 0.822756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7113]: 0.822770600 - core[1].svIdle(17), plen 0: [] -EVENT[7114]: 0.823617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7115]: 0.823629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7116]: 0.823643250 - core[0].svIdle(17), plen 0: [] -EVENT[7117]: 0.823747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7118]: 0.823756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7119]: 0.823770600 - core[1].svIdle(17), plen 0: [] -EVENT[7120]: 0.824617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7121]: 0.824629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7122]: 0.824643175 - core[0].svIdle(17), plen 0: [] -EVENT[7123]: 0.824747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7124]: 0.824756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7125]: 0.824770600 - core[1].svIdle(17), plen 0: [] -EVENT[7126]: 0.825617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7127]: 0.825629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7128]: 0.825643125 - core[0].svIdle(17), plen 0: [] -EVENT[7129]: 0.825747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7130]: 0.825757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7131]: 0.825770775 - core[1].svIdle(17), plen 0: [] -EVENT[7132]: 0.826617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7133]: 0.826629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7134]: 0.826643125 - core[0].svIdle(17), plen 0: [] -EVENT[7135]: 0.826747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7136]: 0.826756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7137]: 0.826770600 - core[1].svIdle(17), plen 0: [] -EVENT[7138]: 0.827617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7139]: 0.827629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7140]: 0.827643250 - core[0].svIdle(17), plen 0: [] -EVENT[7141]: 0.827747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7142]: 0.827756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7143]: 0.827770600 - core[1].svIdle(17), plen 0: [] -EVENT[7144]: 0.828617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7145]: 0.828629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7146]: 0.828643175 - core[0].svIdle(17), plen 0: [] -EVENT[7147]: 0.828747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7148]: 0.828756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7149]: 0.828770600 - core[1].svIdle(17), plen 0: [] -EVENT[7150]: 0.829617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7151]: 0.829629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7152]: 0.829643125 - core[0].svIdle(17), plen 0: [] -EVENT[7153]: 0.829747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7154]: 0.829757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7155]: 0.829770775 - core[1].svIdle(17), plen 0: [] -EVENT[7156]: 0.830617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7157]: 0.830629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7158]: 0.830643125 - core[0].svIdle(17), plen 0: [] -EVENT[7159]: 0.830747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7160]: 0.830756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7161]: 0.830770600 - core[1].svIdle(17), plen 0: [] -EVENT[7162]: 0.831617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7163]: 0.831629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7164]: 0.831643250 - core[0].svIdle(17), plen 0: [] -EVENT[7165]: 0.831747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7166]: 0.831756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7167]: 0.831770600 - core[1].svIdle(17), plen 0: [] -EVENT[7168]: 0.832617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7169]: 0.832632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7170]: 0.832646225 - core[0].svIdle(17), plen 0: [] -EVENT[7171]: 0.832747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7172]: 0.832756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7173]: 0.832770600 - core[1].svIdle(17), plen 0: [] -EVENT[7174]: 0.833617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7175]: 0.833629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7176]: 0.833643125 - core[0].svIdle(17), plen 0: [] -EVENT[7177]: 0.833747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7178]: 0.833757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7179]: 0.833770775 - core[1].svIdle(17), plen 0: [] -EVENT[7180]: 0.834617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7181]: 0.834629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7182]: 0.834643125 - core[0].svIdle(17), plen 0: [] -EVENT[7183]: 0.834747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7184]: 0.834756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7185]: 0.834770600 - core[1].svIdle(17), plen 0: [] -EVENT[7186]: 0.835617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7187]: 0.835629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7188]: 0.835643250 - core[0].svIdle(17), plen 0: [] -EVENT[7189]: 0.835747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7190]: 0.835756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7191]: 0.835770600 - core[1].svIdle(17), plen 0: [] -EVENT[7192]: 0.836617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7193]: 0.836629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7194]: 0.836643175 - core[0].svIdle(17), plen 0: [] -EVENT[7195]: 0.836747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7196]: 0.836756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7197]: 0.836770600 - core[1].svIdle(17), plen 0: [] -EVENT[7198]: 0.837617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7199]: 0.837629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7200]: 0.837643125 - core[0].svIdle(17), plen 0: [] -EVENT[7201]: 0.837747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7202]: 0.837757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7203]: 0.837770775 - core[1].svIdle(17), plen 0: [] -EVENT[7204]: 0.838617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7205]: 0.838629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7206]: 0.838643125 - core[0].svIdle(17), plen 0: [] -EVENT[7207]: 0.838747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7208]: 0.838756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7209]: 0.838770600 - core[1].svIdle(17), plen 0: [] -EVENT[7210]: 0.839617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7211]: 0.839629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7212]: 0.839643250 - core[0].svIdle(17), plen 0: [] -EVENT[7213]: 0.839747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7214]: 0.839756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7215]: 0.839770600 - core[1].svIdle(17), plen 0: [] -EVENT[7216]: 0.840617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7217]: 0.840629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7218]: 0.840643175 - core[0].svIdle(17), plen 0: [] -EVENT[7219]: 0.840747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7220]: 0.840756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7221]: 0.840770600 - core[1].svIdle(17), plen 0: [] -EVENT[7222]: 0.841617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7223]: 0.841629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7224]: 0.841643125 - core[0].svIdle(17), plen 0: [] -EVENT[7225]: 0.841747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7226]: 0.841757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7227]: 0.841770775 - core[1].svIdle(17), plen 0: [] -EVENT[7228]: 0.842617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7229]: 0.842629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7230]: 0.842643125 - core[0].svIdle(17), plen 0: [] -EVENT[7231]: 0.842747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7232]: 0.842756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7233]: 0.842770600 - core[1].svIdle(17), plen 0: [] -EVENT[7234]: 0.843617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7235]: 0.843629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[7236]: 0.843638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7237]: 0.843652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[7238]: 0.843676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 58, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.843676950] HEAP: Allocated 58 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7239]: 0.843692625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7240]: 0.843706700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7241]: 0.843747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7242]: 0.843768900 - core[0].svPrint(26), plen 71: [msg: I (1170) example: Task[0x3ffb7f40]: allocated 58 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.843768900] LOG: I (1170) example: Task[0x3ffb7f40]: allocated 58 bytes @ 0x3ffb87e4 -EVENT[7243]: 0.843777825 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7244]: 0.843786325 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7245]: 0.843796400 - core[1].svIdle(17), plen 0: [] -EVENT[7246]: 0.843807250 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[7247]: 0.843820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7248]: 0.843828925 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[7249]: 0.843836825 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7250]: 0.843845375 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[7251]: 0.843858075 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[7252]: 0.843866475 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[7253]: 0.843874775 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[7254]: 0.843883500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7255]: 0.843892950 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7256]: 0.843902150 - core[0].svIdle(17), plen 0: [] -EVENT[7257]: 0.843916975 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7258]: 0.843966300 - core[1].svPrint(26), plen 64: [msg: I (1170) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.843966300] LOG: I (1170) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[7259]: 0.843984700 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.843984700] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7260]: 0.844003275 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[7261]: 0.844015950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7262]: 0.844024750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7263]: 0.844040325 - core[1].svIdle(17), plen 0: [] -EVENT[7264]: 0.844617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7265]: 0.844629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[7266]: 0.844638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7267]: 0.844652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[7268]: 0.844676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 116, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.844676950] HEAP: Allocated 116 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7269]: 0.844689625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7270]: 0.844703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7271]: 0.844747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7272]: 0.844769475 - core[0].svPrint(26), plen 72: [msg: I (1171) example: Task[0x3ffb82a0]: allocated 116 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.844769475] LOG: I (1171) example: Task[0x3ffb82a0]: allocated 116 bytes @ 0x3ffb87e4 -EVENT[7273]: 0.844781275 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7274]: 0.844789775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7275]: 0.844800150 - core[1].svIdle(17), plen 0: [] -EVENT[7276]: 0.844810925 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[7277]: 0.844823950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7278]: 0.844832475 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[7279]: 0.844840450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7280]: 0.844849025 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[7281]: 0.844861675 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[7282]: 0.844870050 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[7283]: 0.844878375 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[7284]: 0.844887250 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7285]: 0.844896625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7286]: 0.844905825 - core[0].svIdle(17), plen 0: [] -EVENT[7287]: 0.844920650 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7288]: 0.844969900 - core[1].svPrint(26), plen 64: [msg: I (1171) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.844969900] LOG: I (1171) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[7289]: 0.844985500 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.844985500] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7290]: 0.845006425 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[7291]: 0.845019100 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7292]: 0.845027900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7293]: 0.845043475 - core[1].svIdle(17), plen 0: [] -EVENT[7294]: 0.845617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7295]: 0.845629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[7296]: 0.845638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7297]: 0.845652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[7298]: 0.845676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 174, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.845676975] HEAP: Allocated 174 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7299]: 0.845689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7300]: 0.845703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7301]: 0.845747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7302]: 0.845769450 - core[0].svPrint(26), plen 72: [msg: I (1172) example: Task[0x3ffb8600]: allocated 174 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.845769450] LOG: I (1172) example: Task[0x3ffb8600]: allocated 174 bytes @ 0x3ffb4b10 -EVENT[7303]: 0.845778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7304]: 0.845786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7305]: 0.845797075 - core[1].svIdle(17), plen 0: [] -EVENT[7306]: 0.845807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[7307]: 0.845820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7308]: 0.845829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[7309]: 0.845837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7310]: 0.845845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[7311]: 0.845858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[7312]: 0.845866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[7313]: 0.845879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[7314]: 0.845887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7315]: 0.845895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7316]: 0.845905800 - core[0].svIdle(17), plen 0: [] -EVENT[7317]: 0.845920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7318]: 0.845970075 - core[1].svPrint(26), plen 64: [msg: I (1172) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.845970075] LOG: I (1172) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[7319]: 0.845985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.845985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7320]: 0.846003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[7321]: 0.846016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7322]: 0.846025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7323]: 0.846040625 - core[1].svIdle(17), plen 0: [] -EVENT[7324]: 0.846617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7325]: 0.846629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7326]: 0.846643175 - core[0].svIdle(17), plen 0: [] -EVENT[7327]: 0.846747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7328]: 0.846756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7329]: 0.846770600 - core[1].svIdle(17), plen 0: [] -EVENT[7330]: 0.847617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7331]: 0.847629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7332]: 0.847643125 - core[0].svIdle(17), plen 0: [] -EVENT[7333]: 0.847747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7334]: 0.847757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7335]: 0.847770775 - core[1].svIdle(17), plen 0: [] -EVENT[7336]: 0.848617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7337]: 0.848629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7338]: 0.848643125 - core[0].svIdle(17), plen 0: [] -EVENT[7339]: 0.848747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7340]: 0.848756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7341]: 0.848770600 - core[1].svIdle(17), plen 0: [] -EVENT[7342]: 0.849617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7343]: 0.849629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7344]: 0.849643250 - core[0].svIdle(17), plen 0: [] -EVENT[7345]: 0.849747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7346]: 0.849756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7347]: 0.849770600 - core[1].svIdle(17), plen 0: [] -EVENT[7348]: 0.850617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7349]: 0.850631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7350]: 0.850645550 - core[0].svIdle(17), plen 0: [] -EVENT[7351]: 0.850747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7352]: 0.850756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7353]: 0.850770600 - core[1].svIdle(17), plen 0: [] -EVENT[7354]: 0.851617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7355]: 0.851629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7356]: 0.851643125 - core[0].svIdle(17), plen 0: [] -EVENT[7357]: 0.851747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7358]: 0.851757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7359]: 0.851770775 - core[1].svIdle(17), plen 0: [] -EVENT[7360]: 0.852617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7361]: 0.852629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7362]: 0.852643125 - core[0].svIdle(17), plen 0: [] -EVENT[7363]: 0.852747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7364]: 0.852756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7365]: 0.852770600 - core[1].svIdle(17), plen 0: [] -EVENT[7366]: 0.853617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7367]: 0.853629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7368]: 0.853643250 - core[0].svIdle(17), plen 0: [] -EVENT[7369]: 0.853747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7370]: 0.853756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7371]: 0.853770600 - core[1].svIdle(17), plen 0: [] -EVENT[7372]: 0.854617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7373]: 0.854629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7374]: 0.854643175 - core[0].svIdle(17), plen 0: [] -EVENT[7375]: 0.854747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7376]: 0.854756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7377]: 0.854770600 - core[1].svIdle(17), plen 0: [] -EVENT[7378]: 0.855617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7379]: 0.855629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7380]: 0.855643125 - core[0].svIdle(17), plen 0: [] -EVENT[7381]: 0.855747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7382]: 0.855757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7383]: 0.855770775 - core[1].svIdle(17), plen 0: [] -EVENT[7384]: 0.856617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7385]: 0.856629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7386]: 0.856643125 - core[0].svIdle(17), plen 0: [] -EVENT[7387]: 0.856747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7388]: 0.856756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7389]: 0.856770600 - core[1].svIdle(17), plen 0: [] -EVENT[7390]: 0.857617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7391]: 0.857629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7392]: 0.857643250 - core[0].svIdle(17), plen 0: [] -EVENT[7393]: 0.857747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7394]: 0.857756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7395]: 0.857770600 - core[1].svIdle(17), plen 0: [] -EVENT[7396]: 0.858617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7397]: 0.858629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7398]: 0.858643175 - core[0].svIdle(17), plen 0: [] -EVENT[7399]: 0.858747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7400]: 0.858756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7401]: 0.858770600 - core[1].svIdle(17), plen 0: [] -EVENT[7402]: 0.859617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7403]: 0.859629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7404]: 0.859643125 - core[0].svIdle(17), plen 0: [] -EVENT[7405]: 0.859747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7406]: 0.859757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7407]: 0.859770775 - core[1].svIdle(17), plen 0: [] -EVENT[7408]: 0.860617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7409]: 0.860629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7410]: 0.860643125 - core[0].svIdle(17), plen 0: [] -EVENT[7411]: 0.860747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7412]: 0.860756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7413]: 0.860770600 - core[1].svIdle(17), plen 0: [] -EVENT[7414]: 0.861617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7415]: 0.861629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7416]: 0.861643250 - core[0].svIdle(17), plen 0: [] -EVENT[7417]: 0.861747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7418]: 0.861756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7419]: 0.861770600 - core[1].svIdle(17), plen 0: [] -EVENT[7420]: 0.862617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7421]: 0.862632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7422]: 0.862646225 - core[0].svIdle(17), plen 0: [] -EVENT[7423]: 0.862747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7424]: 0.862756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7425]: 0.862770600 - core[1].svIdle(17), plen 0: [] -EVENT[7426]: 0.863617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7427]: 0.863629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7428]: 0.863643125 - core[0].svIdle(17), plen 0: [] -EVENT[7429]: 0.863747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7430]: 0.863757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7431]: 0.863770775 - core[1].svIdle(17), plen 0: [] -EVENT[7432]: 0.864617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7433]: 0.864629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7434]: 0.864643125 - core[0].svIdle(17), plen 0: [] -EVENT[7435]: 0.864747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7436]: 0.864756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7437]: 0.864770600 - core[1].svIdle(17), plen 0: [] -EVENT[7438]: 0.865617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7439]: 0.865629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7440]: 0.865643250 - core[0].svIdle(17), plen 0: [] -EVENT[7441]: 0.865747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7442]: 0.865756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7443]: 0.865770600 - core[1].svIdle(17), plen 0: [] -EVENT[7444]: 0.866617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7445]: 0.866629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7446]: 0.866643175 - core[0].svIdle(17), plen 0: [] -EVENT[7447]: 0.866747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7448]: 0.866756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7449]: 0.866770600 - core[1].svIdle(17), plen 0: [] -EVENT[7450]: 0.867617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7451]: 0.867629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7452]: 0.867643125 - core[0].svIdle(17), plen 0: [] -EVENT[7453]: 0.867747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7454]: 0.867757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7455]: 0.867770775 - core[1].svIdle(17), plen 0: [] -EVENT[7456]: 0.868617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7457]: 0.868629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7458]: 0.868643125 - core[0].svIdle(17), plen 0: [] -EVENT[7459]: 0.868747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7460]: 0.868756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7461]: 0.868770600 - core[1].svIdle(17), plen 0: [] -EVENT[7462]: 0.869617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7463]: 0.869629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7464]: 0.869643250 - core[0].svIdle(17), plen 0: [] -EVENT[7465]: 0.869747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7466]: 0.869756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7467]: 0.869770600 - core[1].svIdle(17), plen 0: [] -EVENT[7468]: 0.870617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7469]: 0.870629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7470]: 0.870643175 - core[0].svIdle(17), plen 0: [] -EVENT[7471]: 0.870747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7472]: 0.870756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7473]: 0.870770600 - core[1].svIdle(17), plen 0: [] -EVENT[7474]: 0.871617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7475]: 0.871629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7476]: 0.871643125 - core[0].svIdle(17), plen 0: [] -EVENT[7477]: 0.871747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7478]: 0.871757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7479]: 0.871770775 - core[1].svIdle(17), plen 0: [] -EVENT[7480]: 0.872617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7481]: 0.872629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7482]: 0.872643125 - core[0].svIdle(17), plen 0: [] -EVENT[7483]: 0.872747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7484]: 0.872756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7485]: 0.872770600 - core[1].svIdle(17), plen 0: [] -EVENT[7486]: 0.873617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7487]: 0.873629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[7488]: 0.873638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7489]: 0.873652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[7490]: 0.873676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 60, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.873676950] HEAP: Allocated 60 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7491]: 0.873692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7492]: 0.873706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7493]: 0.873747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7494]: 0.873769175 - core[0].svPrint(26), plen 71: [msg: I (1200) example: Task[0x3ffb7f40]: allocated 60 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.873769175] LOG: I (1200) example: Task[0x3ffb7f40]: allocated 60 bytes @ 0x3ffb87e4 -EVENT[7495]: 0.873777400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7496]: 0.873785550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7497]: 0.873796350 - core[1].svIdle(17), plen 0: [] -EVENT[7498]: 0.873807225 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[7499]: 0.873820175 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7500]: 0.873828875 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[7501]: 0.873836775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7502]: 0.873845325 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[7503]: 0.873858050 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[7504]: 0.873866425 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[7505]: 0.873874725 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[7506]: 0.873883475 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7507]: 0.873892925 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7508]: 0.873902125 - core[0].svIdle(17), plen 0: [] -EVENT[7509]: 0.873916950 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7510]: 0.873966250 - core[1].svPrint(26), plen 64: [msg: I (1200) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.873966250] LOG: I (1200) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[7511]: 0.873984675 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.873984675] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7512]: 0.874003250 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[7513]: 0.874015925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7514]: 0.874024725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7515]: 0.874040300 - core[1].svIdle(17), plen 0: [] -EVENT[7516]: 0.874617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7517]: 0.874629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[7518]: 0.874638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7519]: 0.874652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[7520]: 0.874676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 120, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.874676950] HEAP: Allocated 120 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7521]: 0.874689625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7522]: 0.874703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7523]: 0.874747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7524]: 0.874769475 - core[0].svPrint(26), plen 72: [msg: I (1201) example: Task[0x3ffb82a0]: allocated 120 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.874769475] LOG: I (1201) example: Task[0x3ffb82a0]: allocated 120 bytes @ 0x3ffb87e4 -EVENT[7525]: 0.874780075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7526]: 0.874789075 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7527]: 0.874798975 - core[1].svIdle(17), plen 0: [] -EVENT[7528]: 0.874809750 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[7529]: 0.874822775 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7530]: 0.874831300 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[7531]: 0.874839275 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7532]: 0.874847850 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[7533]: 0.874860500 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[7534]: 0.874868875 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[7535]: 0.874877200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[7536]: 0.874886075 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7537]: 0.874895450 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7538]: 0.874904650 - core[0].svIdle(17), plen 0: [] -EVENT[7539]: 0.874919475 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7540]: 0.874968725 - core[1].svPrint(26), plen 64: [msg: I (1201) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.874968725] LOG: I (1201) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[7541]: 0.874984325 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.874984325] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7542]: 0.875005950 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[7543]: 0.875018650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7544]: 0.875027450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7545]: 0.875043025 - core[1].svIdle(17), plen 0: [] -EVENT[7546]: 0.875617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7547]: 0.875629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[7548]: 0.875638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7549]: 0.875652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[7550]: 0.875676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 180, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.875676975] HEAP: Allocated 180 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7551]: 0.875689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7552]: 0.875703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7553]: 0.875747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7554]: 0.875769450 - core[0].svPrint(26), plen 72: [msg: I (1202) example: Task[0x3ffb8600]: allocated 180 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.875769450] LOG: I (1202) example: Task[0x3ffb8600]: allocated 180 bytes @ 0x3ffb4b10 -EVENT[7555]: 0.875778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7556]: 0.875786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7557]: 0.875797075 - core[1].svIdle(17), plen 0: [] -EVENT[7558]: 0.875807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[7559]: 0.875820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7560]: 0.875829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[7561]: 0.875837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7562]: 0.875845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[7563]: 0.875858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[7564]: 0.875866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[7565]: 0.875878175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[7566]: 0.875886350 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7567]: 0.875894725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7568]: 0.875904975 - core[0].svIdle(17), plen 0: [] -EVENT[7569]: 0.875919925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7570]: 0.875969275 - core[1].svPrint(26), plen 64: [msg: I (1202) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.875969275] LOG: I (1202) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[7571]: 0.875984650 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.875984650] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7572]: 0.876002775 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[7573]: 0.876015600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7574]: 0.876024350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7575]: 0.876039800 - core[1].svIdle(17), plen 0: [] -EVENT[7576]: 0.876617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7577]: 0.876629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7578]: 0.876643175 - core[0].svIdle(17), plen 0: [] -EVENT[7579]: 0.876747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7580]: 0.876756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7581]: 0.876770600 - core[1].svIdle(17), plen 0: [] -EVENT[7582]: 0.877617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7583]: 0.877629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7584]: 0.877643125 - core[0].svIdle(17), plen 0: [] -EVENT[7585]: 0.877747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7586]: 0.877757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7587]: 0.877770775 - core[1].svIdle(17), plen 0: [] -EVENT[7588]: 0.878617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7589]: 0.878629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7590]: 0.878643125 - core[0].svIdle(17), plen 0: [] -EVENT[7591]: 0.878747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7592]: 0.878756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7593]: 0.878770600 - core[1].svIdle(17), plen 0: [] -EVENT[7594]: 0.879617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7595]: 0.879629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7596]: 0.879643250 - core[0].svIdle(17), plen 0: [] -EVENT[7597]: 0.879747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7598]: 0.879756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7599]: 0.879770600 - core[1].svIdle(17), plen 0: [] -EVENT[7600]: 0.880617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7601]: 0.880632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7602]: 0.880646225 - core[0].svIdle(17), plen 0: [] -EVENT[7603]: 0.880747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7604]: 0.880756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7605]: 0.880770600 - core[1].svIdle(17), plen 0: [] -EVENT[7606]: 0.881617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7607]: 0.881629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7608]: 0.881643125 - core[0].svIdle(17), plen 0: [] -EVENT[7609]: 0.881747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7610]: 0.881757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7611]: 0.881770775 - core[1].svIdle(17), plen 0: [] -EVENT[7612]: 0.882617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7613]: 0.882629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7614]: 0.882643125 - core[0].svIdle(17), plen 0: [] -EVENT[7615]: 0.882747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7616]: 0.882756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7617]: 0.882770600 - core[1].svIdle(17), plen 0: [] -EVENT[7618]: 0.883617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7619]: 0.883629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7620]: 0.883643250 - core[0].svIdle(17), plen 0: [] -EVENT[7621]: 0.883747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7622]: 0.883756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7623]: 0.883770600 - core[1].svIdle(17), plen 0: [] -EVENT[7624]: 0.884617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7625]: 0.884629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7626]: 0.884643175 - core[0].svIdle(17), plen 0: [] -EVENT[7627]: 0.884747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7628]: 0.884756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7629]: 0.884770600 - core[1].svIdle(17), plen 0: [] -EVENT[7630]: 0.885617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7631]: 0.885629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7632]: 0.885643125 - core[0].svIdle(17), plen 0: [] -EVENT[7633]: 0.885747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7634]: 0.885757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7635]: 0.885770775 - core[1].svIdle(17), plen 0: [] -EVENT[7636]: 0.886617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7637]: 0.886629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7638]: 0.886643125 - core[0].svIdle(17), plen 0: [] -EVENT[7639]: 0.886747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7640]: 0.886756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7641]: 0.886770600 - core[1].svIdle(17), plen 0: [] -EVENT[7642]: 0.887617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7643]: 0.887629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7644]: 0.887643250 - core[0].svIdle(17), plen 0: [] -EVENT[7645]: 0.887747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7646]: 0.887756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7647]: 0.887770600 - core[1].svIdle(17), plen 0: [] -EVENT[7648]: 0.888617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7649]: 0.888629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7650]: 0.888643175 - core[0].svIdle(17), plen 0: [] -EVENT[7651]: 0.888747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7652]: 0.888756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7653]: 0.888770600 - core[1].svIdle(17), plen 0: [] -EVENT[7654]: 0.889617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7655]: 0.889629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7656]: 0.889643125 - core[0].svIdle(17), plen 0: [] -EVENT[7657]: 0.889747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7658]: 0.889757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7659]: 0.889770775 - core[1].svIdle(17), plen 0: [] -EVENT[7660]: 0.890617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7661]: 0.890629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7662]: 0.890643125 - core[0].svIdle(17), plen 0: [] -EVENT[7663]: 0.890747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7664]: 0.890756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7665]: 0.890770600 - core[1].svIdle(17), plen 0: [] -EVENT[7666]: 0.891617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7667]: 0.891629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7668]: 0.891643250 - core[0].svIdle(17), plen 0: [] -EVENT[7669]: 0.891747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7670]: 0.891756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7671]: 0.891770600 - core[1].svIdle(17), plen 0: [] -EVENT[7672]: 0.892617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7673]: 0.892632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7674]: 0.892646225 - core[0].svIdle(17), plen 0: [] -EVENT[7675]: 0.892747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7676]: 0.892756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7677]: 0.892770600 - core[1].svIdle(17), plen 0: [] -EVENT[7678]: 0.893617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7679]: 0.893629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7680]: 0.893643125 - core[0].svIdle(17), plen 0: [] -EVENT[7681]: 0.893747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7682]: 0.893757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7683]: 0.893770775 - core[1].svIdle(17), plen 0: [] -EVENT[7684]: 0.894617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7685]: 0.894629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7686]: 0.894643125 - core[0].svIdle(17), plen 0: [] -EVENT[7687]: 0.894747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7688]: 0.894756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7689]: 0.894770600 - core[1].svIdle(17), plen 0: [] -EVENT[7690]: 0.895617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7691]: 0.895629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7692]: 0.895643250 - core[0].svIdle(17), plen 0: [] -EVENT[7693]: 0.895747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7694]: 0.895756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7695]: 0.895770600 - core[1].svIdle(17), plen 0: [] -EVENT[7696]: 0.896617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7697]: 0.896629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7698]: 0.896643175 - core[0].svIdle(17), plen 0: [] -EVENT[7699]: 0.896747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7700]: 0.896756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7701]: 0.896770600 - core[1].svIdle(17), plen 0: [] -EVENT[7702]: 0.897617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7703]: 0.897629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7704]: 0.897643125 - core[0].svIdle(17), plen 0: [] -EVENT[7705]: 0.897747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7706]: 0.897757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7707]: 0.897770775 - core[1].svIdle(17), plen 0: [] -EVENT[7708]: 0.898617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7709]: 0.898629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7710]: 0.898643125 - core[0].svIdle(17), plen 0: [] -EVENT[7711]: 0.898747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7712]: 0.898756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7713]: 0.898770600 - core[1].svIdle(17), plen 0: [] -EVENT[7714]: 0.899617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7715]: 0.899629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7716]: 0.899643250 - core[0].svIdle(17), plen 0: [] -EVENT[7717]: 0.899747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7718]: 0.899756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7719]: 0.899770600 - core[1].svIdle(17), plen 0: [] -EVENT[7720]: 0.900617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7721]: 0.900629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7722]: 0.900643175 - core[0].svIdle(17), plen 0: [] -EVENT[7723]: 0.900747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7724]: 0.900756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7725]: 0.900770600 - core[1].svIdle(17), plen 0: [] -EVENT[7726]: 0.901617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7727]: 0.901629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7728]: 0.901643125 - core[0].svIdle(17), plen 0: [] -EVENT[7729]: 0.901747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7730]: 0.901757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7731]: 0.901770775 - core[1].svIdle(17), plen 0: [] -EVENT[7732]: 0.902617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7733]: 0.902629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7734]: 0.902643125 - core[0].svIdle(17), plen 0: [] -EVENT[7735]: 0.902747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7736]: 0.902756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7737]: 0.902770600 - core[1].svIdle(17), plen 0: [] -EVENT[7738]: 0.903617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7739]: 0.903629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[7740]: 0.903638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7741]: 0.903652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[7742]: 0.903676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 62, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.903676950] HEAP: Allocated 62 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7743]: 0.903692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7744]: 0.903706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7745]: 0.903747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7746]: 0.903768925 - core[0].svPrint(26), plen 71: [msg: I (1230) example: Task[0x3ffb7f40]: allocated 62 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.903768925] LOG: I (1230) example: Task[0x3ffb7f40]: allocated 62 bytes @ 0x3ffb87e4 -EVENT[7747]: 0.903777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7748]: 0.903786200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7749]: 0.903796350 - core[1].svIdle(17), plen 0: [] -EVENT[7750]: 0.903807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[7751]: 0.903820150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7752]: 0.903828875 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[7753]: 0.903836775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7754]: 0.903845325 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[7755]: 0.903858025 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[7756]: 0.903866425 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[7757]: 0.903874675 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[7758]: 0.903883400 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7759]: 0.903892850 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7760]: 0.903902050 - core[0].svIdle(17), plen 0: [] -EVENT[7761]: 0.903916875 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7762]: 0.903966175 - core[1].svPrint(26), plen 64: [msg: I (1230) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.903966175] LOG: I (1230) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[7763]: 0.903984025 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.903984025] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7764]: 0.904002600 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[7765]: 0.904015275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7766]: 0.904024075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7767]: 0.904039650 - core[1].svIdle(17), plen 0: [] -EVENT[7768]: 0.904617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7769]: 0.904629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[7770]: 0.904638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7771]: 0.904652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[7772]: 0.904676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 124, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.904676950] HEAP: Allocated 124 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7773]: 0.904689625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7774]: 0.904703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7775]: 0.904747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7776]: 0.904769475 - core[0].svPrint(26), plen 72: [msg: I (1231) example: Task[0x3ffb82a0]: allocated 124 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.904769475] LOG: I (1231) example: Task[0x3ffb82a0]: allocated 124 bytes @ 0x3ffb87e4 -EVENT[7777]: 0.904781275 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7778]: 0.904789775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7779]: 0.904800150 - core[1].svIdle(17), plen 0: [] -EVENT[7780]: 0.904810925 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[7781]: 0.904823950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7782]: 0.904832475 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[7783]: 0.904840450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7784]: 0.904849025 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[7785]: 0.904861675 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[7786]: 0.904870050 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[7787]: 0.904878300 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[7788]: 0.904887175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7789]: 0.904896550 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7790]: 0.904905725 - core[0].svIdle(17), plen 0: [] -EVENT[7791]: 0.904920550 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7792]: 0.904969800 - core[1].svPrint(26), plen 64: [msg: I (1231) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.904969800] LOG: I (1231) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[7793]: 0.904985400 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.904985400] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7794]: 0.905007025 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[7795]: 0.905019725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7796]: 0.905028525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7797]: 0.905044100 - core[1].svIdle(17), plen 0: [] -EVENT[7798]: 0.905617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7799]: 0.905629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[7800]: 0.905638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7801]: 0.905652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[7802]: 0.905676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 186, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.905676975] HEAP: Allocated 186 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7803]: 0.905689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7804]: 0.905703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7805]: 0.905747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7806]: 0.905769450 - core[0].svPrint(26), plen 72: [msg: I (1232) example: Task[0x3ffb8600]: allocated 186 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.905769450] LOG: I (1232) example: Task[0x3ffb8600]: allocated 186 bytes @ 0x3ffb4b10 -EVENT[7807]: 0.905778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7808]: 0.905786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7809]: 0.905797075 - core[1].svIdle(17), plen 0: [] -EVENT[7810]: 0.905807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[7811]: 0.905820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7812]: 0.905829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[7813]: 0.905837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7814]: 0.905845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[7815]: 0.905858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[7816]: 0.905866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[7817]: 0.905879175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[7818]: 0.905887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7819]: 0.905895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7820]: 0.905905775 - core[0].svIdle(17), plen 0: [] -EVENT[7821]: 0.905920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7822]: 0.905970075 - core[1].svPrint(26), plen 64: [msg: I (1232) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.905970075] LOG: I (1232) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[7823]: 0.905985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.905985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7824]: 0.906003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[7825]: 0.906016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[7826]: 0.906025150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7827]: 0.906040600 - core[1].svIdle(17), plen 0: [] -EVENT[7828]: 0.906617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7829]: 0.906629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7830]: 0.906643175 - core[0].svIdle(17), plen 0: [] -EVENT[7831]: 0.906747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7832]: 0.906756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7833]: 0.906770600 - core[1].svIdle(17), plen 0: [] -EVENT[7834]: 0.907617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7835]: 0.907629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7836]: 0.907643125 - core[0].svIdle(17), plen 0: [] -EVENT[7837]: 0.907747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7838]: 0.907757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7839]: 0.907770775 - core[1].svIdle(17), plen 0: [] -EVENT[7840]: 0.908617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7841]: 0.908629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7842]: 0.908643125 - core[0].svIdle(17), plen 0: [] -EVENT[7843]: 0.908747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7844]: 0.908756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7845]: 0.908770600 - core[1].svIdle(17), plen 0: [] -EVENT[7846]: 0.909617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7847]: 0.909629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7848]: 0.909643250 - core[0].svIdle(17), plen 0: [] -EVENT[7849]: 0.909747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7850]: 0.909756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7851]: 0.909770600 - core[1].svIdle(17), plen 0: [] -EVENT[7852]: 0.910617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7853]: 0.910632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7854]: 0.910646225 - core[0].svIdle(17), plen 0: [] -EVENT[7855]: 0.910747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7856]: 0.910756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7857]: 0.910770600 - core[1].svIdle(17), plen 0: [] -EVENT[7858]: 0.911617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7859]: 0.911629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7860]: 0.911643125 - core[0].svIdle(17), plen 0: [] -EVENT[7861]: 0.911747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7862]: 0.911757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7863]: 0.911770775 - core[1].svIdle(17), plen 0: [] -EVENT[7864]: 0.912617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7865]: 0.912629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7866]: 0.912643125 - core[0].svIdle(17), plen 0: [] -EVENT[7867]: 0.912747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7868]: 0.912756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7869]: 0.912770600 - core[1].svIdle(17), plen 0: [] -EVENT[7870]: 0.913617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7871]: 0.913629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7872]: 0.913643250 - core[0].svIdle(17), plen 0: [] -EVENT[7873]: 0.913747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7874]: 0.913756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7875]: 0.913770600 - core[1].svIdle(17), plen 0: [] -EVENT[7876]: 0.914617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7877]: 0.914629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7878]: 0.914643175 - core[0].svIdle(17), plen 0: [] -EVENT[7879]: 0.914747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7880]: 0.914756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7881]: 0.914770600 - core[1].svIdle(17), plen 0: [] -EVENT[7882]: 0.915617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7883]: 0.915629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7884]: 0.915643125 - core[0].svIdle(17), plen 0: [] -EVENT[7885]: 0.915747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7886]: 0.915757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7887]: 0.915770775 - core[1].svIdle(17), plen 0: [] -EVENT[7888]: 0.916617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7889]: 0.916629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7890]: 0.916643125 - core[0].svIdle(17), plen 0: [] -EVENT[7891]: 0.916747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7892]: 0.916756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7893]: 0.916770600 - core[1].svIdle(17), plen 0: [] -EVENT[7894]: 0.917617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7895]: 0.917629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7896]: 0.917643250 - core[0].svIdle(17), plen 0: [] -EVENT[7897]: 0.917747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7898]: 0.917756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7899]: 0.917770600 - core[1].svIdle(17), plen 0: [] -EVENT[7900]: 0.918617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7901]: 0.918629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7902]: 0.918643175 - core[0].svIdle(17), plen 0: [] -EVENT[7903]: 0.918747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7904]: 0.918756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7905]: 0.918770600 - core[1].svIdle(17), plen 0: [] -EVENT[7906]: 0.919617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7907]: 0.919629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7908]: 0.919643125 - core[0].svIdle(17), plen 0: [] -EVENT[7909]: 0.919747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7910]: 0.919757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7911]: 0.919770775 - core[1].svIdle(17), plen 0: [] -EVENT[7912]: 0.920617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7913]: 0.920629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7914]: 0.920643125 - core[0].svIdle(17), plen 0: [] -EVENT[7915]: 0.920747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7916]: 0.920756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7917]: 0.920770600 - core[1].svIdle(17), plen 0: [] -EVENT[7918]: 0.921617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7919]: 0.921629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7920]: 0.921643250 - core[0].svIdle(17), plen 0: [] -EVENT[7921]: 0.921747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7922]: 0.921756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7923]: 0.921770600 - core[1].svIdle(17), plen 0: [] -EVENT[7924]: 0.922617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7925]: 0.922631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7926]: 0.922645550 - core[0].svIdle(17), plen 0: [] -EVENT[7927]: 0.922747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7928]: 0.922756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7929]: 0.922770600 - core[1].svIdle(17), plen 0: [] -EVENT[7930]: 0.923617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7931]: 0.923629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7932]: 0.923643125 - core[0].svIdle(17), plen 0: [] -EVENT[7933]: 0.923747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7934]: 0.923757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7935]: 0.923770775 - core[1].svIdle(17), plen 0: [] -EVENT[7936]: 0.924617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7937]: 0.924629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7938]: 0.924643125 - core[0].svIdle(17), plen 0: [] -EVENT[7939]: 0.924747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7940]: 0.924756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7941]: 0.924770600 - core[1].svIdle(17), plen 0: [] -EVENT[7942]: 0.925617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7943]: 0.925629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7944]: 0.925643250 - core[0].svIdle(17), plen 0: [] -EVENT[7945]: 0.925747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7946]: 0.925756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7947]: 0.925770600 - core[1].svIdle(17), plen 0: [] -EVENT[7948]: 0.926617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7949]: 0.926629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7950]: 0.926643175 - core[0].svIdle(17), plen 0: [] -EVENT[7951]: 0.926747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7952]: 0.926756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7953]: 0.926770600 - core[1].svIdle(17), plen 0: [] -EVENT[7954]: 0.927617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7955]: 0.927629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7956]: 0.927643125 - core[0].svIdle(17), plen 0: [] -EVENT[7957]: 0.927747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7958]: 0.927757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7959]: 0.927770775 - core[1].svIdle(17), plen 0: [] -EVENT[7960]: 0.928617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7961]: 0.928629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7962]: 0.928643125 - core[0].svIdle(17), plen 0: [] -EVENT[7963]: 0.928747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7964]: 0.928756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7965]: 0.928770600 - core[1].svIdle(17), plen 0: [] -EVENT[7966]: 0.929617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7967]: 0.929629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7968]: 0.929643250 - core[0].svIdle(17), plen 0: [] -EVENT[7969]: 0.929747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7970]: 0.929756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7971]: 0.929770600 - core[1].svIdle(17), plen 0: [] -EVENT[7972]: 0.930617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7973]: 0.930629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7974]: 0.930643175 - core[0].svIdle(17), plen 0: [] -EVENT[7975]: 0.930747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7976]: 0.930756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7977]: 0.930770600 - core[1].svIdle(17), plen 0: [] -EVENT[7978]: 0.931617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7979]: 0.931629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7980]: 0.931643125 - core[0].svIdle(17), plen 0: [] -EVENT[7981]: 0.931747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7982]: 0.931757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7983]: 0.931770775 - core[1].svIdle(17), plen 0: [] -EVENT[7984]: 0.932617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7985]: 0.932629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7986]: 0.932643125 - core[0].svIdle(17), plen 0: [] -EVENT[7987]: 0.932747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7988]: 0.932756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[7989]: 0.932770600 - core[1].svIdle(17), plen 0: [] -EVENT[7990]: 0.933617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7991]: 0.933629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[7992]: 0.933638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[7993]: 0.933652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[7994]: 0.933676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 64, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.933676950] HEAP: Allocated 64 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[7995]: 0.933692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[7996]: 0.933706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[7997]: 0.933747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[7998]: 0.933768950 - core[0].svPrint(26), plen 71: [msg: I (1260) example: Task[0x3ffb7f40]: allocated 64 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.933768950] LOG: I (1260) example: Task[0x3ffb7f40]: allocated 64 bytes @ 0x3ffb87e4 -EVENT[7999]: 0.933777425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8000]: 0.933785425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8001]: 0.933796175 - core[1].svIdle(17), plen 0: [] -EVENT[8002]: 0.933807025 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[8003]: 0.933819975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8004]: 0.933828700 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[8005]: 0.933836600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8006]: 0.933845150 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[8007]: 0.933857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[8008]: 0.933866250 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[8009]: 0.933874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[8010]: 0.933883275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8011]: 0.933892725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8012]: 0.933901925 - core[0].svIdle(17), plen 0: [] -EVENT[8013]: 0.933916750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8014]: 0.933966075 - core[1].svPrint(26), plen 64: [msg: I (1260) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.933966075] LOG: I (1260) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[8015]: 0.933984500 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.933984500] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8016]: 0.934003050 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[8017]: 0.934015750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8018]: 0.934024550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8019]: 0.934040125 - core[1].svIdle(17), plen 0: [] -EVENT[8020]: 0.934617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8021]: 0.934629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[8022]: 0.934638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8023]: 0.934652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[8024]: 0.934677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073448932, size: 128, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.934677000] HEAP: Allocated 128 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8025]: 0.934689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8026]: 0.934703700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8027]: 0.934747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8028]: 0.934769475 - core[0].svPrint(26), plen 72: [msg: I (1261) example: Task[0x3ffb82a0]: allocated 128 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.934769475] LOG: I (1261) example: Task[0x3ffb82a0]: allocated 128 bytes @ 0x3ffb87e4 -EVENT[8029]: 0.934781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8030]: 0.934789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8031]: 0.934800125 - core[1].svIdle(17), plen 0: [] -EVENT[8032]: 0.934810925 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[8033]: 0.934823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8034]: 0.934832475 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[8035]: 0.934840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8036]: 0.934849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[8037]: 0.934861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[8038]: 0.934870050 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[8039]: 0.934878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[8040]: 0.934887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8041]: 0.934896625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8042]: 0.934905800 - core[0].svIdle(17), plen 0: [] -EVENT[8043]: 0.934920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8044]: 0.934969875 - core[1].svPrint(26), plen 64: [msg: I (1261) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.934969875] LOG: I (1261) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[8045]: 0.934985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.934985475] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8046]: 0.935006400 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[8047]: 0.935019100 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8048]: 0.935027900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8049]: 0.935043475 - core[1].svIdle(17), plen 0: [] -EVENT[8050]: 0.935617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8051]: 0.935629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[8052]: 0.935638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8053]: 0.935652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[8054]: 0.935676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 192, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.935676975] HEAP: Allocated 192 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8055]: 0.935689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8056]: 0.935703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8057]: 0.935747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8058]: 0.935769450 - core[0].svPrint(26), plen 72: [msg: I (1262) example: Task[0x3ffb8600]: allocated 192 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.935769450] LOG: I (1262) example: Task[0x3ffb8600]: allocated 192 bytes @ 0x3ffb4b10 -EVENT[8059]: 0.935778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8060]: 0.935786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8061]: 0.935797075 - core[1].svIdle(17), plen 0: [] -EVENT[8062]: 0.935807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[8063]: 0.935820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8064]: 0.935829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[8065]: 0.935837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8066]: 0.935845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[8067]: 0.935858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[8068]: 0.935866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[8069]: 0.935879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[8070]: 0.935887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8071]: 0.935895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8072]: 0.935905800 - core[0].svIdle(17), plen 0: [] -EVENT[8073]: 0.935920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8074]: 0.935970075 - core[1].svPrint(26), plen 64: [msg: I (1262) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.935970075] LOG: I (1262) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[8075]: 0.935985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.935985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8076]: 0.936003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[8077]: 0.936016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8078]: 0.936025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8079]: 0.936040625 - core[1].svIdle(17), plen 0: [] -EVENT[8080]: 0.936617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8081]: 0.936629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8082]: 0.936643175 - core[0].svIdle(17), plen 0: [] -EVENT[8083]: 0.936747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8084]: 0.936756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8085]: 0.936770600 - core[1].svIdle(17), plen 0: [] -EVENT[8086]: 0.937617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8087]: 0.937629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8088]: 0.937643125 - core[0].svIdle(17), plen 0: [] -EVENT[8089]: 0.937747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8090]: 0.937757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8091]: 0.937770775 - core[1].svIdle(17), plen 0: [] -EVENT[8092]: 0.938617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8093]: 0.938629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8094]: 0.938643125 - core[0].svIdle(17), plen 0: [] -EVENT[8095]: 0.938747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8096]: 0.938756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8097]: 0.938770600 - core[1].svIdle(17), plen 0: [] -EVENT[8098]: 0.939617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8099]: 0.939629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8100]: 0.939643250 - core[0].svIdle(17), plen 0: [] -EVENT[8101]: 0.939747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8102]: 0.939756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8103]: 0.939770600 - core[1].svIdle(17), plen 0: [] -EVENT[8104]: 0.940617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8105]: 0.940631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8106]: 0.940645550 - core[0].svIdle(17), plen 0: [] -EVENT[8107]: 0.940747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8108]: 0.940756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8109]: 0.940770600 - core[1].svIdle(17), plen 0: [] -EVENT[8110]: 0.941617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8111]: 0.941629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8112]: 0.941643125 - core[0].svIdle(17), plen 0: [] -EVENT[8113]: 0.941747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8114]: 0.941757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8115]: 0.941770775 - core[1].svIdle(17), plen 0: [] -EVENT[8116]: 0.942617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8117]: 0.942629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8118]: 0.942643125 - core[0].svIdle(17), plen 0: [] -EVENT[8119]: 0.942747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8120]: 0.942756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8121]: 0.942770600 - core[1].svIdle(17), plen 0: [] -EVENT[8122]: 0.943617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8123]: 0.943629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8124]: 0.943643250 - core[0].svIdle(17), plen 0: [] -EVENT[8125]: 0.943747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8126]: 0.943756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8127]: 0.943770600 - core[1].svIdle(17), plen 0: [] -EVENT[8128]: 0.944617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8129]: 0.944629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8130]: 0.944643175 - core[0].svIdle(17), plen 0: [] -EVENT[8131]: 0.944747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8132]: 0.944756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8133]: 0.944770600 - core[1].svIdle(17), plen 0: [] -EVENT[8134]: 0.945617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8135]: 0.945629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8136]: 0.945643125 - core[0].svIdle(17), plen 0: [] -EVENT[8137]: 0.945747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8138]: 0.945757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8139]: 0.945770775 - core[1].svIdle(17), plen 0: [] -EVENT[8140]: 0.946617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8141]: 0.946629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8142]: 0.946643125 - core[0].svIdle(17), plen 0: [] -EVENT[8143]: 0.946747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8144]: 0.946756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8145]: 0.946770600 - core[1].svIdle(17), plen 0: [] -EVENT[8146]: 0.947617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8147]: 0.947629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8148]: 0.947643250 - core[0].svIdle(17), plen 0: [] -EVENT[8149]: 0.947747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8150]: 0.947756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8151]: 0.947770600 - core[1].svIdle(17), plen 0: [] -EVENT[8152]: 0.948617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8153]: 0.948629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8154]: 0.948643175 - core[0].svIdle(17), plen 0: [] -EVENT[8155]: 0.948747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8156]: 0.948756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8157]: 0.948770600 - core[1].svIdle(17), plen 0: [] -EVENT[8158]: 0.949617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8159]: 0.949629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8160]: 0.949643125 - core[0].svIdle(17), plen 0: [] -EVENT[8161]: 0.949747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8162]: 0.949757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8163]: 0.949770775 - core[1].svIdle(17), plen 0: [] -EVENT[8164]: 0.950617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8165]: 0.950629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8166]: 0.950643125 - core[0].svIdle(17), plen 0: [] -EVENT[8167]: 0.950747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8168]: 0.950756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8169]: 0.950770600 - core[1].svIdle(17), plen 0: [] -EVENT[8170]: 0.951617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8171]: 0.951629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8172]: 0.951643250 - core[0].svIdle(17), plen 0: [] -EVENT[8173]: 0.951747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8174]: 0.951756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8175]: 0.951770600 - core[1].svIdle(17), plen 0: [] -EVENT[8176]: 0.952617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8177]: 0.952632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8178]: 0.952646225 - core[0].svIdle(17), plen 0: [] -EVENT[8179]: 0.952747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8180]: 0.952756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8181]: 0.952770600 - core[1].svIdle(17), plen 0: [] -EVENT[8182]: 0.953617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8183]: 0.953629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8184]: 0.953643125 - core[0].svIdle(17), plen 0: [] -EVENT[8185]: 0.953747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8186]: 0.953757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8187]: 0.953770775 - core[1].svIdle(17), plen 0: [] -EVENT[8188]: 0.954617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8189]: 0.954629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8190]: 0.954643125 - core[0].svIdle(17), plen 0: [] -EVENT[8191]: 0.954747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8192]: 0.954756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8193]: 0.954770600 - core[1].svIdle(17), plen 0: [] -EVENT[8194]: 0.955617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8195]: 0.955629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8196]: 0.955643250 - core[0].svIdle(17), plen 0: [] -EVENT[8197]: 0.955747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8198]: 0.955756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8199]: 0.955770600 - core[1].svIdle(17), plen 0: [] -EVENT[8200]: 0.956617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8201]: 0.956629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8202]: 0.956643175 - core[0].svIdle(17), plen 0: [] -EVENT[8203]: 0.956747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8204]: 0.956756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8205]: 0.956770600 - core[1].svIdle(17), plen 0: [] -EVENT[8206]: 0.957617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8207]: 0.957629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8208]: 0.957643125 - core[0].svIdle(17), plen 0: [] -EVENT[8209]: 0.957747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8210]: 0.957757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8211]: 0.957770775 - core[1].svIdle(17), plen 0: [] -EVENT[8212]: 0.958617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8213]: 0.958629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8214]: 0.958643125 - core[0].svIdle(17), plen 0: [] -EVENT[8215]: 0.958747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8216]: 0.958756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8217]: 0.958770600 - core[1].svIdle(17), plen 0: [] -EVENT[8218]: 0.959617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8219]: 0.959629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8220]: 0.959643250 - core[0].svIdle(17), plen 0: [] -EVENT[8221]: 0.959747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8222]: 0.959756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8223]: 0.959770600 - core[1].svIdle(17), plen 0: [] -EVENT[8224]: 0.960617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8225]: 0.960629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8226]: 0.960643175 - core[0].svIdle(17), plen 0: [] -EVENT[8227]: 0.960747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8228]: 0.960756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8229]: 0.960770600 - core[1].svIdle(17), plen 0: [] -EVENT[8230]: 0.961617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8231]: 0.961629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8232]: 0.961643125 - core[0].svIdle(17), plen 0: [] -EVENT[8233]: 0.961747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8234]: 0.961757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8235]: 0.961770775 - core[1].svIdle(17), plen 0: [] -EVENT[8236]: 0.962617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8237]: 0.962629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8238]: 0.962643125 - core[0].svIdle(17), plen 0: [] -EVENT[8239]: 0.962747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8240]: 0.962756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8241]: 0.962770600 - core[1].svIdle(17), plen 0: [] -EVENT[8242]: 0.963617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8243]: 0.963629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[8244]: 0.963638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8245]: 0.963652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[8246]: 0.963676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 66, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.963676950] HEAP: Allocated 66 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8247]: 0.963692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8248]: 0.963706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8249]: 0.963747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8250]: 0.963768225 - core[0].svPrint(26), plen 71: [msg: I (1290) example: Task[0x3ffb7f40]: allocated 66 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.963768225] LOG: I (1290) example: Task[0x3ffb7f40]: allocated 66 bytes @ 0x3ffb87e4 -EVENT[8251]: 0.963776475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8252]: 0.963784700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8253]: 0.963795300 - core[1].svIdle(17), plen 0: [] -EVENT[8254]: 0.963806175 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[8255]: 0.963819125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8256]: 0.963827825 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[8257]: 0.963835725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8258]: 0.963844275 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[8259]: 0.963857000 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[8260]: 0.963865375 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[8261]: 0.963873675 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[8262]: 0.963882425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8263]: 0.963891875 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8264]: 0.963901075 - core[0].svIdle(17), plen 0: [] -EVENT[8265]: 0.963915900 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8266]: 0.963965200 - core[1].svPrint(26), plen 64: [msg: I (1290) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.963965200] LOG: I (1290) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[8267]: 0.963983625 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.963983625] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8268]: 0.964002200 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[8269]: 0.964014875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8270]: 0.964023675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8271]: 0.964039250 - core[1].svIdle(17), plen 0: [] -EVENT[8272]: 0.964617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8273]: 0.964629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[8274]: 0.964638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8275]: 0.964652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[8276]: 0.964676825 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073448932, size: 132, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.964676825] HEAP: Allocated 132 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8277]: 0.964689525 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8278]: 0.964703500 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8279]: 0.964747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8280]: 0.964769175 - core[0].svPrint(26), plen 72: [msg: I (1291) example: Task[0x3ffb82a0]: allocated 132 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.964769175] LOG: I (1291) example: Task[0x3ffb82a0]: allocated 132 bytes @ 0x3ffb87e4 -EVENT[8281]: 0.964779950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8282]: 0.964788675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8283]: 0.964798800 - core[1].svIdle(17), plen 0: [] -EVENT[8284]: 0.964809575 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[8285]: 0.964822600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8286]: 0.964831125 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[8287]: 0.964839100 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8288]: 0.964847675 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[8289]: 0.964860325 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[8290]: 0.964868700 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[8291]: 0.964877025 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[8292]: 0.964885900 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8293]: 0.964895275 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8294]: 0.964904475 - core[0].svIdle(17), plen 0: [] -EVENT[8295]: 0.964919300 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8296]: 0.964968550 - core[1].svPrint(26), plen 64: [msg: I (1291) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.964968550] LOG: I (1291) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[8297]: 0.964984150 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.964984150] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8298]: 0.965005200 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[8299]: 0.965017875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8300]: 0.965026675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8301]: 0.965042250 - core[1].svIdle(17), plen 0: [] -EVENT[8302]: 0.965617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8303]: 0.965629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[8304]: 0.965638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8305]: 0.965652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[8306]: 0.965676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 198, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.965676975] HEAP: Allocated 198 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8307]: 0.965689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8308]: 0.965703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8309]: 0.965747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8310]: 0.965769450 - core[0].svPrint(26), plen 72: [msg: I (1292) example: Task[0x3ffb8600]: allocated 198 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.965769450] LOG: I (1292) example: Task[0x3ffb8600]: allocated 198 bytes @ 0x3ffb4b10 -EVENT[8311]: 0.965778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8312]: 0.965786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8313]: 0.965797075 - core[1].svIdle(17), plen 0: [] -EVENT[8314]: 0.965807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[8315]: 0.965820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8316]: 0.965829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[8317]: 0.965837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8318]: 0.965845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[8319]: 0.965858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[8320]: 0.965866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[8321]: 0.965879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[8322]: 0.965887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8323]: 0.965895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8324]: 0.965905825 - core[0].svIdle(17), plen 0: [] -EVENT[8325]: 0.965920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8326]: 0.965970100 - core[1].svPrint(26), plen 64: [msg: I (1292) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.965970100] LOG: I (1292) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[8327]: 0.965985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.965985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8328]: 0.966003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[8329]: 0.966016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8330]: 0.966025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8331]: 0.966040650 - core[1].svIdle(17), plen 0: [] -EVENT[8332]: 0.966617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8333]: 0.966629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8334]: 0.966643175 - core[0].svIdle(17), plen 0: [] -EVENT[8335]: 0.966747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8336]: 0.966756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8337]: 0.966770600 - core[1].svIdle(17), plen 0: [] -EVENT[8338]: 0.967617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8339]: 0.967629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8340]: 0.967643125 - core[0].svIdle(17), plen 0: [] -EVENT[8341]: 0.967747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8342]: 0.967757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8343]: 0.967770775 - core[1].svIdle(17), plen 0: [] -EVENT[8344]: 0.968617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8345]: 0.968629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8346]: 0.968643125 - core[0].svIdle(17), plen 0: [] -EVENT[8347]: 0.968747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8348]: 0.968756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8349]: 0.968770600 - core[1].svIdle(17), plen 0: [] -EVENT[8350]: 0.969617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8351]: 0.969629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8352]: 0.969643250 - core[0].svIdle(17), plen 0: [] -EVENT[8353]: 0.969747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8354]: 0.969756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8355]: 0.969770600 - core[1].svIdle(17), plen 0: [] -EVENT[8356]: 0.970617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8357]: 0.970632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8358]: 0.970646225 - core[0].svIdle(17), plen 0: [] -EVENT[8359]: 0.970747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8360]: 0.970756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8361]: 0.970770600 - core[1].svIdle(17), plen 0: [] -EVENT[8362]: 0.971617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8363]: 0.971629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8364]: 0.971643125 - core[0].svIdle(17), plen 0: [] -EVENT[8365]: 0.971747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8366]: 0.971757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8367]: 0.971770775 - core[1].svIdle(17), plen 0: [] -EVENT[8368]: 0.972617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8369]: 0.972629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8370]: 0.972643125 - core[0].svIdle(17), plen 0: [] -EVENT[8371]: 0.972747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8372]: 0.972756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8373]: 0.972770600 - core[1].svIdle(17), plen 0: [] -EVENT[8374]: 0.973617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8375]: 0.973629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8376]: 0.973643250 - core[0].svIdle(17), plen 0: [] -EVENT[8377]: 0.973747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8378]: 0.973756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8379]: 0.973770600 - core[1].svIdle(17), plen 0: [] -EVENT[8380]: 0.974617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8381]: 0.974629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8382]: 0.974643175 - core[0].svIdle(17), plen 0: [] -EVENT[8383]: 0.974747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8384]: 0.974756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8385]: 0.974770600 - core[1].svIdle(17), plen 0: [] -EVENT[8386]: 0.975617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8387]: 0.975629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8388]: 0.975643125 - core[0].svIdle(17), plen 0: [] -EVENT[8389]: 0.975747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8390]: 0.975757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8391]: 0.975770775 - core[1].svIdle(17), plen 0: [] -EVENT[8392]: 0.976617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8393]: 0.976629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8394]: 0.976643125 - core[0].svIdle(17), plen 0: [] -EVENT[8395]: 0.976747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8396]: 0.976756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8397]: 0.976770600 - core[1].svIdle(17), plen 0: [] -EVENT[8398]: 0.977617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8399]: 0.977629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8400]: 0.977643250 - core[0].svIdle(17), plen 0: [] -EVENT[8401]: 0.977747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8402]: 0.977756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8403]: 0.977770600 - core[1].svIdle(17), plen 0: [] -EVENT[8404]: 0.978617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8405]: 0.978629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8406]: 0.978643175 - core[0].svIdle(17), plen 0: [] -EVENT[8407]: 0.978747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8408]: 0.978756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8409]: 0.978770600 - core[1].svIdle(17), plen 0: [] -EVENT[8410]: 0.979617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8411]: 0.979629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8412]: 0.979643125 - core[0].svIdle(17), plen 0: [] -EVENT[8413]: 0.979747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8414]: 0.979757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8415]: 0.979770775 - core[1].svIdle(17), plen 0: [] -EVENT[8416]: 0.980617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8417]: 0.980629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8418]: 0.980643125 - core[0].svIdle(17), plen 0: [] -EVENT[8419]: 0.980747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8420]: 0.980756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8421]: 0.980770600 - core[1].svIdle(17), plen 0: [] -EVENT[8422]: 0.981617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8423]: 0.981629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8424]: 0.981643250 - core[0].svIdle(17), plen 0: [] -EVENT[8425]: 0.981747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8426]: 0.981756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8427]: 0.981770600 - core[1].svIdle(17), plen 0: [] -EVENT[8428]: 0.982617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8429]: 0.982631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8430]: 0.982645550 - core[0].svIdle(17), plen 0: [] -EVENT[8431]: 0.982747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8432]: 0.982756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8433]: 0.982770600 - core[1].svIdle(17), plen 0: [] -EVENT[8434]: 0.983617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8435]: 0.983629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8436]: 0.983643125 - core[0].svIdle(17), plen 0: [] -EVENT[8437]: 0.983747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8438]: 0.983757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8439]: 0.983770775 - core[1].svIdle(17), plen 0: [] -EVENT[8440]: 0.984617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8441]: 0.984629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8442]: 0.984643125 - core[0].svIdle(17), plen 0: [] -EVENT[8443]: 0.984747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8444]: 0.984756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8445]: 0.984770600 - core[1].svIdle(17), plen 0: [] -EVENT[8446]: 0.985617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8447]: 0.985629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8448]: 0.985643250 - core[0].svIdle(17), plen 0: [] -EVENT[8449]: 0.985747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8450]: 0.985756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8451]: 0.985770600 - core[1].svIdle(17), plen 0: [] -EVENT[8452]: 0.986617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8453]: 0.986629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8454]: 0.986643175 - core[0].svIdle(17), plen 0: [] -EVENT[8455]: 0.986747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8456]: 0.986756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8457]: 0.986770600 - core[1].svIdle(17), plen 0: [] -EVENT[8458]: 0.987617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8459]: 0.987629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8460]: 0.987643125 - core[0].svIdle(17), plen 0: [] -EVENT[8461]: 0.987747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8462]: 0.987757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8463]: 0.987770775 - core[1].svIdle(17), plen 0: [] -EVENT[8464]: 0.988617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8465]: 0.988629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8466]: 0.988643125 - core[0].svIdle(17), plen 0: [] -EVENT[8467]: 0.988747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8468]: 0.988756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8469]: 0.988770600 - core[1].svIdle(17), plen 0: [] -EVENT[8470]: 0.989617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8471]: 0.989629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8472]: 0.989643250 - core[0].svIdle(17), plen 0: [] -EVENT[8473]: 0.989747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8474]: 0.989756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8475]: 0.989770600 - core[1].svIdle(17), plen 0: [] -EVENT[8476]: 0.990617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8477]: 0.990629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8478]: 0.990643175 - core[0].svIdle(17), plen 0: [] -EVENT[8479]: 0.990747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8480]: 0.990756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8481]: 0.990770600 - core[1].svIdle(17), plen 0: [] -EVENT[8482]: 0.991617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8483]: 0.991629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8484]: 0.991643125 - core[0].svIdle(17), plen 0: [] -EVENT[8485]: 0.991747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8486]: 0.991757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8487]: 0.991770775 - core[1].svIdle(17), plen 0: [] -EVENT[8488]: 0.992617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8489]: 0.992629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8490]: 0.992643125 - core[0].svIdle(17), plen 0: [] -EVENT[8491]: 0.992747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8492]: 0.992756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8493]: 0.992770600 - core[1].svIdle(17), plen 0: [] -EVENT[8494]: 0.993617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8495]: 0.993629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[8496]: 0.993638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8497]: 0.993652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[8498]: 0.993676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 68, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.993676950] HEAP: Allocated 68 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8499]: 0.993692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8500]: 0.993706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8501]: 0.993747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8502]: 0.993768950 - core[0].svPrint(26), plen 71: [msg: I (1320) example: Task[0x3ffb7f40]: allocated 68 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.993768950] LOG: I (1320) example: Task[0x3ffb7f40]: allocated 68 bytes @ 0x3ffb87e4 -EVENT[8503]: 0.993777425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8504]: 0.993785425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8505]: 0.993796175 - core[1].svIdle(17), plen 0: [] -EVENT[8506]: 0.993807025 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[8507]: 0.993819975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8508]: 0.993828700 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[8509]: 0.993836600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8510]: 0.993845150 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[8511]: 0.993857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[8512]: 0.993866250 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[8513]: 0.993874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[8514]: 0.993883275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8515]: 0.993892725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8516]: 0.993901925 - core[0].svIdle(17), plen 0: [] -EVENT[8517]: 0.993916750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8518]: 0.993966075 - core[1].svPrint(26), plen 64: [msg: I (1320) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.993966075] LOG: I (1320) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[8519]: 0.993984500 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.993984500] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8520]: 0.994003050 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[8521]: 0.994015750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8522]: 0.994024550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8523]: 0.994040125 - core[1].svIdle(17), plen 0: [] -EVENT[8524]: 0.994617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8525]: 0.994629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[8526]: 0.994638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8527]: 0.994652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[8528]: 0.994676250 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073448932, size: 136, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.994676250] HEAP: Allocated 136 bytes @ 0x3ffb87e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8529]: 0.994688950 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8530]: 0.994702925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8531]: 0.994747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8532]: 0.994769625 - core[0].svPrint(26), plen 72: [msg: I (1321) example: Task[0x3ffb82a0]: allocated 136 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.994769625] LOG: I (1321) example: Task[0x3ffb82a0]: allocated 136 bytes @ 0x3ffb87e4 -EVENT[8533]: 0.994781075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8534]: 0.994789700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8535]: 0.994799850 - core[1].svIdle(17), plen 0: [] -EVENT[8536]: 0.994810650 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[8537]: 0.994823650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8538]: 0.994832200 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[8539]: 0.994840150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8540]: 0.994848725 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[8541]: 0.994861375 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[8542]: 0.994869775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[8543]: 0.994878075 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[8544]: 0.994886950 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8545]: 0.994896350 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8546]: 0.994905525 - core[0].svIdle(17), plen 0: [] -EVENT[8547]: 0.994920350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8548]: 0.994969600 - core[1].svPrint(26), plen 64: [msg: I (1321) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[0.994969600] LOG: I (1321) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 -EVENT[8549]: 0.994985200 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.994985200] HEAP: Freed bytes @ 0x3ffb87e4 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8550]: 0.995005550 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[8551]: 0.995018250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8552]: 0.995027050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8553]: 0.995042625 - core[1].svIdle(17), plen 0: [] -EVENT[8554]: 0.995617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8555]: 0.995629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[8556]: 0.995638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8557]: 0.995652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[8558]: 0.995676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 204, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.995676975] HEAP: Allocated 204 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8559]: 0.995689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8560]: 0.995703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8561]: 0.995747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8562]: 0.995769450 - core[0].svPrint(26), plen 72: [msg: I (1322) example: Task[0x3ffb8600]: allocated 204 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.995769450] LOG: I (1322) example: Task[0x3ffb8600]: allocated 204 bytes @ 0x3ffb4b10 -EVENT[8563]: 0.995778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8564]: 0.995786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8565]: 0.995797075 - core[1].svIdle(17), plen 0: [] -EVENT[8566]: 0.995807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[8567]: 0.995820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8568]: 0.995829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[8569]: 0.995837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8570]: 0.995845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[8571]: 0.995858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[8572]: 0.995866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[8573]: 0.995879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[8574]: 0.995887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8575]: 0.995895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8576]: 0.995905800 - core[0].svIdle(17), plen 0: [] -EVENT[8577]: 0.995920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8578]: 0.995970075 - core[1].svPrint(26), plen 64: [msg: I (1322) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[0.995970075] LOG: I (1322) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[8579]: 0.995985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[0.995985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8580]: 0.996003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[8581]: 0.996016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8582]: 0.996025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8583]: 0.996040625 - core[1].svIdle(17), plen 0: [] -EVENT[8584]: 0.996617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8585]: 0.996629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8586]: 0.996643175 - core[0].svIdle(17), plen 0: [] -EVENT[8587]: 0.996747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8588]: 0.996756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8589]: 0.996770600 - core[1].svIdle(17), plen 0: [] -EVENT[8590]: 0.997617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8591]: 0.997629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8592]: 0.997643125 - core[0].svIdle(17), plen 0: [] -EVENT[8593]: 0.997747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8594]: 0.997757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8595]: 0.997770775 - core[1].svIdle(17), plen 0: [] -EVENT[8596]: 0.998617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8597]: 0.998629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8598]: 0.998643125 - core[0].svIdle(17), plen 0: [] -EVENT[8599]: 0.998747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8600]: 0.998756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8601]: 0.998770600 - core[1].svIdle(17), plen 0: [] -EVENT[8602]: 0.999617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8603]: 0.999629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8604]: 0.999643250 - core[0].svIdle(17), plen 0: [] -EVENT[8605]: 0.999747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8606]: 0.999756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8607]: 0.999770600 - core[1].svIdle(17), plen 0: [] -EVENT[8608]: 1.000617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8609]: 1.000631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8610]: 1.000645550 - core[0].svIdle(17), plen 0: [] -EVENT[8611]: 1.000747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8612]: 1.000756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8613]: 1.000770600 - core[1].svIdle(17), plen 0: [] -EVENT[8614]: 1.001617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8615]: 1.001629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8616]: 1.001643125 - core[0].svIdle(17), plen 0: [] -EVENT[8617]: 1.001747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8618]: 1.001757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8619]: 1.001770775 - core[1].svIdle(17), plen 0: [] -EVENT[8620]: 1.002617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8621]: 1.002629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8622]: 1.002643125 - core[0].svIdle(17), plen 0: [] -EVENT[8623]: 1.002747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8624]: 1.002756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8625]: 1.002770600 - core[1].svIdle(17), plen 0: [] -EVENT[8626]: 1.003617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8627]: 1.003629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8628]: 1.003643250 - core[0].svIdle(17), plen 0: [] -EVENT[8629]: 1.003747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8630]: 1.003756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8631]: 1.003770600 - core[1].svIdle(17), plen 0: [] -EVENT[8632]: 1.004617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8633]: 1.004629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8634]: 1.004643175 - core[0].svIdle(17), plen 0: [] -EVENT[8635]: 1.004747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8636]: 1.004756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8637]: 1.004770600 - core[1].svIdle(17), plen 0: [] -EVENT[8638]: 1.005617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8639]: 1.005629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8640]: 1.005643125 - core[0].svIdle(17), plen 0: [] -EVENT[8641]: 1.005747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8642]: 1.005757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8643]: 1.005770775 - core[1].svIdle(17), plen 0: [] -EVENT[8644]: 1.006617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8645]: 1.006629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8646]: 1.006643125 - core[0].svIdle(17), plen 0: [] -EVENT[8647]: 1.006747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8648]: 1.006756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8649]: 1.006770600 - core[1].svIdle(17), plen 0: [] -EVENT[8650]: 1.007617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8651]: 1.007629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8652]: 1.007643250 - core[0].svIdle(17), plen 0: [] -EVENT[8653]: 1.007747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8654]: 1.007756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8655]: 1.007770600 - core[1].svIdle(17), plen 0: [] -EVENT[8656]: 1.008617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8657]: 1.008629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8658]: 1.008643175 - core[0].svIdle(17), plen 0: [] -EVENT[8659]: 1.008747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8660]: 1.008756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8661]: 1.008770600 - core[1].svIdle(17), plen 0: [] -EVENT[8662]: 1.009617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8663]: 1.009629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8664]: 1.009643125 - core[0].svIdle(17), plen 0: [] -EVENT[8665]: 1.009747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8666]: 1.009757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8667]: 1.009770775 - core[1].svIdle(17), plen 0: [] -EVENT[8668]: 1.010617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8669]: 1.010629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8670]: 1.010643125 - core[0].svIdle(17), plen 0: [] -EVENT[8671]: 1.010747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8672]: 1.010756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8673]: 1.010770600 - core[1].svIdle(17), plen 0: [] -EVENT[8674]: 1.011617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8675]: 1.011629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8676]: 1.011643250 - core[0].svIdle(17), plen 0: [] -EVENT[8677]: 1.011747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8678]: 1.011756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8679]: 1.011770600 - core[1].svIdle(17), plen 0: [] -EVENT[8680]: 1.012617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8681]: 1.012632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8682]: 1.012646225 - core[0].svIdle(17), plen 0: [] -EVENT[8683]: 1.012747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8684]: 1.012756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8685]: 1.012770600 - core[1].svIdle(17), plen 0: [] -EVENT[8686]: 1.013617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8687]: 1.013629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8688]: 1.013643125 - core[0].svIdle(17), plen 0: [] -EVENT[8689]: 1.013747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8690]: 1.013757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8691]: 1.013770775 - core[1].svIdle(17), plen 0: [] -EVENT[8692]: 1.014617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8693]: 1.014629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8694]: 1.014643125 - core[0].svIdle(17), plen 0: [] -EVENT[8695]: 1.014747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8696]: 1.014756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8697]: 1.014770600 - core[1].svIdle(17), plen 0: [] -EVENT[8698]: 1.015617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8699]: 1.015629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8700]: 1.015643250 - core[0].svIdle(17), plen 0: [] -EVENT[8701]: 1.015747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8702]: 1.015756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8703]: 1.015770600 - core[1].svIdle(17), plen 0: [] -EVENT[8704]: 1.016617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8705]: 1.016629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8706]: 1.016643175 - core[0].svIdle(17), plen 0: [] -EVENT[8707]: 1.016747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8708]: 1.016756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8709]: 1.016770600 - core[1].svIdle(17), plen 0: [] -EVENT[8710]: 1.017617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8711]: 1.017629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8712]: 1.017643125 - core[0].svIdle(17), plen 0: [] -EVENT[8713]: 1.017747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8714]: 1.017757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8715]: 1.017770775 - core[1].svIdle(17), plen 0: [] -EVENT[8716]: 1.018617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8717]: 1.018629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8718]: 1.018643125 - core[0].svIdle(17), plen 0: [] -EVENT[8719]: 1.018747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8720]: 1.018756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8721]: 1.018770600 - core[1].svIdle(17), plen 0: [] -EVENT[8722]: 1.019617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8723]: 1.019629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8724]: 1.019643250 - core[0].svIdle(17), plen 0: [] -EVENT[8725]: 1.019747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8726]: 1.019756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8727]: 1.019770600 - core[1].svIdle(17), plen 0: [] -EVENT[8728]: 1.020617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8729]: 1.020629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8730]: 1.020643175 - core[0].svIdle(17), plen 0: [] -EVENT[8731]: 1.020747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8732]: 1.020756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8733]: 1.020770600 - core[1].svIdle(17), plen 0: [] -EVENT[8734]: 1.021617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8735]: 1.021629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8736]: 1.021643125 - core[0].svIdle(17), plen 0: [] -EVENT[8737]: 1.021747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8738]: 1.021757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8739]: 1.021770775 - core[1].svIdle(17), plen 0: [] -EVENT[8740]: 1.022617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8741]: 1.022629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8742]: 1.022643125 - core[0].svIdle(17), plen 0: [] -EVENT[8743]: 1.022747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8744]: 1.022756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8745]: 1.022770600 - core[1].svIdle(17), plen 0: [] -EVENT[8746]: 1.023617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8747]: 1.023629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[8748]: 1.023638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8749]: 1.023652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[8750]: 1.023676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 70, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.023676950] HEAP: Allocated 70 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8751]: 1.023692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8752]: 1.023706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8753]: 1.023747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8754]: 1.023768225 - core[0].svPrint(26), plen 71: [msg: I (1350) example: Task[0x3ffb7f40]: allocated 70 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.023768225] LOG: I (1350) example: Task[0x3ffb7f40]: allocated 70 bytes @ 0x3ffb87e4 -EVENT[8755]: 1.023776475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8756]: 1.023784700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8757]: 1.023795300 - core[1].svIdle(17), plen 0: [] -EVENT[8758]: 1.023806175 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[8759]: 1.023819125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8760]: 1.023827825 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[8761]: 1.023835725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8762]: 1.023844275 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[8763]: 1.023857000 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[8764]: 1.023865375 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[8765]: 1.023873675 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[8766]: 1.023882425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8767]: 1.023891875 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8768]: 1.023901075 - core[0].svIdle(17), plen 0: [] -EVENT[8769]: 1.023915900 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8770]: 1.023965200 - core[1].svPrint(26), plen 64: [msg: I (1350) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.023965200] LOG: I (1350) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[8771]: 1.023983625 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.023983625] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8772]: 1.024002200 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[8773]: 1.024014875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8774]: 1.024023675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8775]: 1.024039250 - core[1].svIdle(17), plen 0: [] -EVENT[8776]: 1.024617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8777]: 1.024629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[8778]: 1.024638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8779]: 1.024652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[8780]: 1.024677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 140, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.024677000] HEAP: Allocated 140 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8781]: 1.024689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8782]: 1.024703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8783]: 1.024747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8784]: 1.024769475 - core[0].svPrint(26), plen 72: [msg: I (1351) example: Task[0x3ffb82a0]: allocated 140 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.024769475] LOG: I (1351) example: Task[0x3ffb82a0]: allocated 140 bytes @ 0x3ffb4b10 -EVENT[8785]: 1.024780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8786]: 1.024789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8787]: 1.024798950 - core[1].svIdle(17), plen 0: [] -EVENT[8788]: 1.024809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[8789]: 1.024822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8790]: 1.024831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[8791]: 1.024839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8792]: 1.024847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[8793]: 1.024860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[8794]: 1.024868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[8795]: 1.024877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[8796]: 1.024886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8797]: 1.024895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8798]: 1.024904625 - core[0].svIdle(17), plen 0: [] -EVENT[8799]: 1.024919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8800]: 1.024968700 - core[1].svPrint(26), plen 64: [msg: I (1351) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.024968700] LOG: I (1351) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[8801]: 1.024984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.024984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8802]: 1.025005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[8803]: 1.025018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8804]: 1.025026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8805]: 1.025042425 - core[1].svIdle(17), plen 0: [] -EVENT[8806]: 1.025617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8807]: 1.025629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[8808]: 1.025638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8809]: 1.025652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[8810]: 1.025676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 210, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.025676975] HEAP: Allocated 210 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8811]: 1.025689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8812]: 1.025703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8813]: 1.025747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8814]: 1.025769450 - core[0].svPrint(26), plen 72: [msg: I (1352) example: Task[0x3ffb8600]: allocated 210 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.025769450] LOG: I (1352) example: Task[0x3ffb8600]: allocated 210 bytes @ 0x3ffb4b10 -EVENT[8815]: 1.025778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8816]: 1.025786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8817]: 1.025797075 - core[1].svIdle(17), plen 0: [] -EVENT[8818]: 1.025807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[8819]: 1.025820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8820]: 1.025829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[8821]: 1.025837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8822]: 1.025845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[8823]: 1.025858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[8824]: 1.025866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[8825]: 1.025879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[8826]: 1.025887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8827]: 1.025895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[8828]: 1.025905825 - core[0].svIdle(17), plen 0: [] -EVENT[8829]: 1.025920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[8830]: 1.025970100 - core[1].svPrint(26), plen 64: [msg: I (1352) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.025970100] LOG: I (1352) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[8831]: 1.025985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.025985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[8832]: 1.026003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[8833]: 1.026016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[8834]: 1.026025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8835]: 1.026040650 - core[1].svIdle(17), plen 0: [] -EVENT[8836]: 1.026617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8837]: 1.026629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8838]: 1.026643175 - core[0].svIdle(17), plen 0: [] -EVENT[8839]: 1.026747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8840]: 1.026756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8841]: 1.026770600 - core[1].svIdle(17), plen 0: [] -EVENT[8842]: 1.027617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8843]: 1.027629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8844]: 1.027643125 - core[0].svIdle(17), plen 0: [] -EVENT[8845]: 1.027747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8846]: 1.027757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8847]: 1.027770775 - core[1].svIdle(17), plen 0: [] -EVENT[8848]: 1.028617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8849]: 1.028629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8850]: 1.028643125 - core[0].svIdle(17), plen 0: [] -EVENT[8851]: 1.028747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8852]: 1.028756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8853]: 1.028770600 - core[1].svIdle(17), plen 0: [] -EVENT[8854]: 1.029617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8855]: 1.029629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8856]: 1.029643250 - core[0].svIdle(17), plen 0: [] -EVENT[8857]: 1.029747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8858]: 1.029756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8859]: 1.029770600 - core[1].svIdle(17), plen 0: [] -EVENT[8860]: 1.030617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8861]: 1.030632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8862]: 1.030646225 - core[0].svIdle(17), plen 0: [] -EVENT[8863]: 1.030747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8864]: 1.030756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8865]: 1.030770600 - core[1].svIdle(17), plen 0: [] -EVENT[8866]: 1.031617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8867]: 1.031629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8868]: 1.031643125 - core[0].svIdle(17), plen 0: [] -EVENT[8869]: 1.031747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8870]: 1.031757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8871]: 1.031770775 - core[1].svIdle(17), plen 0: [] -EVENT[8872]: 1.032617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8873]: 1.032629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8874]: 1.032643125 - core[0].svIdle(17), plen 0: [] -EVENT[8875]: 1.032747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8876]: 1.032756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8877]: 1.032770600 - core[1].svIdle(17), plen 0: [] -EVENT[8878]: 1.033617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8879]: 1.033629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8880]: 1.033643250 - core[0].svIdle(17), plen 0: [] -EVENT[8881]: 1.033747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8882]: 1.033756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8883]: 1.033770600 - core[1].svIdle(17), plen 0: [] -EVENT[8884]: 1.034617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8885]: 1.034629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8886]: 1.034643175 - core[0].svIdle(17), plen 0: [] -EVENT[8887]: 1.034747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8888]: 1.034756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8889]: 1.034770600 - core[1].svIdle(17), plen 0: [] -EVENT[8890]: 1.035617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8891]: 1.035629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8892]: 1.035643125 - core[0].svIdle(17), plen 0: [] -EVENT[8893]: 1.035747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8894]: 1.035757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8895]: 1.035770775 - core[1].svIdle(17), plen 0: [] -EVENT[8896]: 1.036617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8897]: 1.036629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8898]: 1.036643125 - core[0].svIdle(17), plen 0: [] -EVENT[8899]: 1.036747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8900]: 1.036756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8901]: 1.036770600 - core[1].svIdle(17), plen 0: [] -EVENT[8902]: 1.037617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8903]: 1.037629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8904]: 1.037643250 - core[0].svIdle(17), plen 0: [] -EVENT[8905]: 1.037747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8906]: 1.037756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8907]: 1.037770600 - core[1].svIdle(17), plen 0: [] -EVENT[8908]: 1.038617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8909]: 1.038629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8910]: 1.038643175 - core[0].svIdle(17), plen 0: [] -EVENT[8911]: 1.038747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8912]: 1.038756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8913]: 1.038770600 - core[1].svIdle(17), plen 0: [] -EVENT[8914]: 1.039617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8915]: 1.039629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8916]: 1.039643125 - core[0].svIdle(17), plen 0: [] -EVENT[8917]: 1.039747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8918]: 1.039757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8919]: 1.039770775 - core[1].svIdle(17), plen 0: [] -EVENT[8920]: 1.040617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8921]: 1.040629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8922]: 1.040643125 - core[0].svIdle(17), plen 0: [] -EVENT[8923]: 1.040747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8924]: 1.040756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8925]: 1.040770600 - core[1].svIdle(17), plen 0: [] -EVENT[8926]: 1.041617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8927]: 1.041629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8928]: 1.041643250 - core[0].svIdle(17), plen 0: [] -EVENT[8929]: 1.041747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8930]: 1.041756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8931]: 1.041770600 - core[1].svIdle(17), plen 0: [] -EVENT[8932]: 1.042617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8933]: 1.042631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8934]: 1.042645550 - core[0].svIdle(17), plen 0: [] -EVENT[8935]: 1.042747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8936]: 1.042756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8937]: 1.042770600 - core[1].svIdle(17), plen 0: [] -EVENT[8938]: 1.043617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8939]: 1.043629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8940]: 1.043643125 - core[0].svIdle(17), plen 0: [] -EVENT[8941]: 1.043747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8942]: 1.043757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8943]: 1.043770775 - core[1].svIdle(17), plen 0: [] -EVENT[8944]: 1.044617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8945]: 1.044629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8946]: 1.044643125 - core[0].svIdle(17), plen 0: [] -EVENT[8947]: 1.044747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8948]: 1.044756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8949]: 1.044770600 - core[1].svIdle(17), plen 0: [] -EVENT[8950]: 1.045617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8951]: 1.045629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8952]: 1.045643250 - core[0].svIdle(17), plen 0: [] -EVENT[8953]: 1.045747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8954]: 1.045756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8955]: 1.045770600 - core[1].svIdle(17), plen 0: [] -EVENT[8956]: 1.046617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8957]: 1.046629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8958]: 1.046643175 - core[0].svIdle(17), plen 0: [] -EVENT[8959]: 1.046747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8960]: 1.046756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8961]: 1.046770600 - core[1].svIdle(17), plen 0: [] -EVENT[8962]: 1.047617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8963]: 1.047629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8964]: 1.047643125 - core[0].svIdle(17), plen 0: [] -EVENT[8965]: 1.047747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8966]: 1.047757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8967]: 1.047770775 - core[1].svIdle(17), plen 0: [] -EVENT[8968]: 1.048617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8969]: 1.048629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8970]: 1.048643125 - core[0].svIdle(17), plen 0: [] -EVENT[8971]: 1.048747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8972]: 1.048756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8973]: 1.048770600 - core[1].svIdle(17), plen 0: [] -EVENT[8974]: 1.049617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8975]: 1.049629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8976]: 1.049643250 - core[0].svIdle(17), plen 0: [] -EVENT[8977]: 1.049747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8978]: 1.049756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8979]: 1.049770600 - core[1].svIdle(17), plen 0: [] -EVENT[8980]: 1.050617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8981]: 1.050629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8982]: 1.050643175 - core[0].svIdle(17), plen 0: [] -EVENT[8983]: 1.050747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8984]: 1.050756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8985]: 1.050770600 - core[1].svIdle(17), plen 0: [] -EVENT[8986]: 1.051617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8987]: 1.051629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8988]: 1.051643125 - core[0].svIdle(17), plen 0: [] -EVENT[8989]: 1.051747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8990]: 1.051757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8991]: 1.051770775 - core[1].svIdle(17), plen 0: [] -EVENT[8992]: 1.052617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8993]: 1.052629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[8994]: 1.052643125 - core[0].svIdle(17), plen 0: [] -EVENT[8995]: 1.052747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8996]: 1.052756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[8997]: 1.052770600 - core[1].svIdle(17), plen 0: [] -EVENT[8998]: 1.053617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[8999]: 1.053629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[9000]: 1.053638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9001]: 1.053652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[9002]: 1.053676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 72, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.053676950] HEAP: Allocated 72 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9003]: 1.053692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9004]: 1.053706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9005]: 1.053747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9006]: 1.053768950 - core[0].svPrint(26), plen 71: [msg: I (1380) example: Task[0x3ffb7f40]: allocated 72 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.053768950] LOG: I (1380) example: Task[0x3ffb7f40]: allocated 72 bytes @ 0x3ffb87e4 -EVENT[9007]: 1.053777425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9008]: 1.053785425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9009]: 1.053796175 - core[1].svIdle(17), plen 0: [] -EVENT[9010]: 1.053807025 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[9011]: 1.053819975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9012]: 1.053828700 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[9013]: 1.053836600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9014]: 1.053845150 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[9015]: 1.053857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[9016]: 1.053866250 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[9017]: 1.053874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[9018]: 1.053883275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9019]: 1.053892725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9020]: 1.053901925 - core[0].svIdle(17), plen 0: [] -EVENT[9021]: 1.053916750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9022]: 1.053966075 - core[1].svPrint(26), plen 64: [msg: I (1380) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.053966075] LOG: I (1380) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[9023]: 1.053984500 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.053984500] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9024]: 1.054003050 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[9025]: 1.054015750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9026]: 1.054024550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9027]: 1.054040125 - core[1].svIdle(17), plen 0: [] -EVENT[9028]: 1.054617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9029]: 1.054629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[9030]: 1.054638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9031]: 1.054652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[9032]: 1.054677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 144, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.054677000] HEAP: Allocated 144 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9033]: 1.054689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9034]: 1.054703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9035]: 1.054747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9036]: 1.054769475 - core[0].svPrint(26), plen 72: [msg: I (1381) example: Task[0x3ffb82a0]: allocated 144 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.054769475] LOG: I (1381) example: Task[0x3ffb82a0]: allocated 144 bytes @ 0x3ffb4b10 -EVENT[9037]: 1.054781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9038]: 1.054789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9039]: 1.054800125 - core[1].svIdle(17), plen 0: [] -EVENT[9040]: 1.054810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[9041]: 1.054823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9042]: 1.054832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[9043]: 1.054840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9044]: 1.054849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[9045]: 1.054861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[9046]: 1.054870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[9047]: 1.054878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[9048]: 1.054887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9049]: 1.054896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9050]: 1.054905800 - core[0].svIdle(17), plen 0: [] -EVENT[9051]: 1.054920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9052]: 1.054969875 - core[1].svPrint(26), plen 64: [msg: I (1381) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.054969875] LOG: I (1381) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[9053]: 1.054985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.054985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9054]: 1.055005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[9055]: 1.055018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9056]: 1.055027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9057]: 1.055042900 - core[1].svIdle(17), plen 0: [] -EVENT[9058]: 1.055617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9059]: 1.055629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[9060]: 1.055638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9061]: 1.055652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[9062]: 1.055676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 216, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.055676975] HEAP: Allocated 216 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9063]: 1.055689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9064]: 1.055703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9065]: 1.055747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9066]: 1.055769450 - core[0].svPrint(26), plen 72: [msg: I (1382) example: Task[0x3ffb8600]: allocated 216 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.055769450] LOG: I (1382) example: Task[0x3ffb8600]: allocated 216 bytes @ 0x3ffb4b10 -EVENT[9067]: 1.055778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9068]: 1.055786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9069]: 1.055797075 - core[1].svIdle(17), plen 0: [] -EVENT[9070]: 1.055807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[9071]: 1.055820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9072]: 1.055829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[9073]: 1.055837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9074]: 1.055845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[9075]: 1.055858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[9076]: 1.055866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[9077]: 1.055879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[9078]: 1.055887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9079]: 1.055895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9080]: 1.055905800 - core[0].svIdle(17), plen 0: [] -EVENT[9081]: 1.055920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9082]: 1.055970075 - core[1].svPrint(26), plen 64: [msg: I (1382) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.055970075] LOG: I (1382) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[9083]: 1.055985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.055985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9084]: 1.056003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[9085]: 1.056016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9086]: 1.056025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9087]: 1.056040625 - core[1].svIdle(17), plen 0: [] -EVENT[9088]: 1.056617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9089]: 1.056629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9090]: 1.056643175 - core[0].svIdle(17), plen 0: [] -EVENT[9091]: 1.056747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9092]: 1.056756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9093]: 1.056770600 - core[1].svIdle(17), plen 0: [] -EVENT[9094]: 1.057617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9095]: 1.057629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9096]: 1.057643125 - core[0].svIdle(17), plen 0: [] -EVENT[9097]: 1.057747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9098]: 1.057757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9099]: 1.057770775 - core[1].svIdle(17), plen 0: [] -EVENT[9100]: 1.058617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9101]: 1.058629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9102]: 1.058643125 - core[0].svIdle(17), plen 0: [] -EVENT[9103]: 1.058747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9104]: 1.058756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9105]: 1.058770600 - core[1].svIdle(17), plen 0: [] -EVENT[9106]: 1.059617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9107]: 1.059629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9108]: 1.059643250 - core[0].svIdle(17), plen 0: [] -EVENT[9109]: 1.059747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9110]: 1.059756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9111]: 1.059770600 - core[1].svIdle(17), plen 0: [] -EVENT[9112]: 1.060617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9113]: 1.060631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9114]: 1.060645550 - core[0].svIdle(17), plen 0: [] -EVENT[9115]: 1.060747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9116]: 1.060756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9117]: 1.060770600 - core[1].svIdle(17), plen 0: [] -EVENT[9118]: 1.061617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9119]: 1.061629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9120]: 1.061643125 - core[0].svIdle(17), plen 0: [] -EVENT[9121]: 1.061747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9122]: 1.061757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9123]: 1.061770775 - core[1].svIdle(17), plen 0: [] -EVENT[9124]: 1.062617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9125]: 1.062629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9126]: 1.062643125 - core[0].svIdle(17), plen 0: [] -EVENT[9127]: 1.062747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9128]: 1.062756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9129]: 1.062770600 - core[1].svIdle(17), plen 0: [] -EVENT[9130]: 1.063617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9131]: 1.063629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9132]: 1.063643250 - core[0].svIdle(17), plen 0: [] -EVENT[9133]: 1.063747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9134]: 1.063756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9135]: 1.063770600 - core[1].svIdle(17), plen 0: [] -EVENT[9136]: 1.064617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9137]: 1.064629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9138]: 1.064643175 - core[0].svIdle(17), plen 0: [] -EVENT[9139]: 1.064747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9140]: 1.064756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9141]: 1.064770600 - core[1].svIdle(17), plen 0: [] -EVENT[9142]: 1.065617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9143]: 1.065629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9144]: 1.065643125 - core[0].svIdle(17), plen 0: [] -EVENT[9145]: 1.065747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9146]: 1.065757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9147]: 1.065770775 - core[1].svIdle(17), plen 0: [] -EVENT[9148]: 1.066617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9149]: 1.066629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9150]: 1.066643125 - core[0].svIdle(17), plen 0: [] -EVENT[9151]: 1.066747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9152]: 1.066756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9153]: 1.066770600 - core[1].svIdle(17), plen 0: [] -EVENT[9154]: 1.067617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9155]: 1.067629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9156]: 1.067643250 - core[0].svIdle(17), plen 0: [] -EVENT[9157]: 1.067747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9158]: 1.067756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9159]: 1.067770600 - core[1].svIdle(17), plen 0: [] -EVENT[9160]: 1.068617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9161]: 1.068629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9162]: 1.068643175 - core[0].svIdle(17), plen 0: [] -EVENT[9163]: 1.068747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9164]: 1.068756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9165]: 1.068770600 - core[1].svIdle(17), plen 0: [] -EVENT[9166]: 1.069617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9167]: 1.069629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9168]: 1.069643125 - core[0].svIdle(17), plen 0: [] -EVENT[9169]: 1.069747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9170]: 1.069757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9171]: 1.069770775 - core[1].svIdle(17), plen 0: [] -EVENT[9172]: 1.070617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9173]: 1.070629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9174]: 1.070643125 - core[0].svIdle(17), plen 0: [] -EVENT[9175]: 1.070747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9176]: 1.070756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9177]: 1.070770600 - core[1].svIdle(17), plen 0: [] -EVENT[9178]: 1.071617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9179]: 1.071629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9180]: 1.071643250 - core[0].svIdle(17), plen 0: [] -EVENT[9181]: 1.071747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9182]: 1.071756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9183]: 1.071770600 - core[1].svIdle(17), plen 0: [] -EVENT[9184]: 1.072617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9185]: 1.072632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9186]: 1.072646225 - core[0].svIdle(17), plen 0: [] -EVENT[9187]: 1.072747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9188]: 1.072756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9189]: 1.072770600 - core[1].svIdle(17), plen 0: [] -EVENT[9190]: 1.073617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9191]: 1.073629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9192]: 1.073643125 - core[0].svIdle(17), plen 0: [] -EVENT[9193]: 1.073747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9194]: 1.073757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9195]: 1.073770775 - core[1].svIdle(17), plen 0: [] -EVENT[9196]: 1.074617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9197]: 1.074629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9198]: 1.074643125 - core[0].svIdle(17), plen 0: [] -EVENT[9199]: 1.074747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9200]: 1.074756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9201]: 1.074770600 - core[1].svIdle(17), plen 0: [] -EVENT[9202]: 1.075617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9203]: 1.075629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9204]: 1.075643250 - core[0].svIdle(17), plen 0: [] -EVENT[9205]: 1.075747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9206]: 1.075756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9207]: 1.075770600 - core[1].svIdle(17), plen 0: [] -EVENT[9208]: 1.076617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9209]: 1.076629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9210]: 1.076643175 - core[0].svIdle(17), plen 0: [] -EVENT[9211]: 1.076747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9212]: 1.076756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9213]: 1.076770600 - core[1].svIdle(17), plen 0: [] -EVENT[9214]: 1.077617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9215]: 1.077629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9216]: 1.077643125 - core[0].svIdle(17), plen 0: [] -EVENT[9217]: 1.077747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9218]: 1.077757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9219]: 1.077770775 - core[1].svIdle(17), plen 0: [] -EVENT[9220]: 1.078617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9221]: 1.078629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9222]: 1.078643125 - core[0].svIdle(17), plen 0: [] -EVENT[9223]: 1.078747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9224]: 1.078756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9225]: 1.078770600 - core[1].svIdle(17), plen 0: [] -EVENT[9226]: 1.079617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9227]: 1.079629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9228]: 1.079643250 - core[0].svIdle(17), plen 0: [] -EVENT[9229]: 1.079747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9230]: 1.079756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9231]: 1.079770600 - core[1].svIdle(17), plen 0: [] -EVENT[9232]: 1.080617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9233]: 1.080629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9234]: 1.080643175 - core[0].svIdle(17), plen 0: [] -EVENT[9235]: 1.080747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9236]: 1.080756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9237]: 1.080770600 - core[1].svIdle(17), plen 0: [] -EVENT[9238]: 1.081617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9239]: 1.081629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9240]: 1.081643125 - core[0].svIdle(17), plen 0: [] -EVENT[9241]: 1.081747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9242]: 1.081757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9243]: 1.081770775 - core[1].svIdle(17), plen 0: [] -EVENT[9244]: 1.082617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9245]: 1.082629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9246]: 1.082643125 - core[0].svIdle(17), plen 0: [] -EVENT[9247]: 1.082747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9248]: 1.082756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9249]: 1.082770600 - core[1].svIdle(17), plen 0: [] -EVENT[9250]: 1.083617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9251]: 1.083629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[9252]: 1.083638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9253]: 1.083652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[9254]: 1.083676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 74, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.083676950] HEAP: Allocated 74 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9255]: 1.083692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9256]: 1.083706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9257]: 1.083747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9258]: 1.083768225 - core[0].svPrint(26), plen 71: [msg: I (1410) example: Task[0x3ffb7f40]: allocated 74 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.083768225] LOG: I (1410) example: Task[0x3ffb7f40]: allocated 74 bytes @ 0x3ffb87e4 -EVENT[9259]: 1.083776475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9260]: 1.083784700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9261]: 1.083795300 - core[1].svIdle(17), plen 0: [] -EVENT[9262]: 1.083806175 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[9263]: 1.083819125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9264]: 1.083827825 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[9265]: 1.083835725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9266]: 1.083844275 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[9267]: 1.083857000 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[9268]: 1.083865375 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[9269]: 1.083873675 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[9270]: 1.083882425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9271]: 1.083891875 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9272]: 1.083901075 - core[0].svIdle(17), plen 0: [] -EVENT[9273]: 1.083915900 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9274]: 1.083965200 - core[1].svPrint(26), plen 64: [msg: I (1410) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.083965200] LOG: I (1410) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[9275]: 1.083983625 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.083983625] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9276]: 1.084002200 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[9277]: 1.084014875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9278]: 1.084023675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9279]: 1.084039250 - core[1].svIdle(17), plen 0: [] -EVENT[9280]: 1.084617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9281]: 1.084629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[9282]: 1.084638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9283]: 1.084652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[9284]: 1.084677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 148, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.084677000] HEAP: Allocated 148 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9285]: 1.084689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9286]: 1.084703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9287]: 1.084747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9288]: 1.084769475 - core[0].svPrint(26), plen 72: [msg: I (1411) example: Task[0x3ffb82a0]: allocated 148 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.084769475] LOG: I (1411) example: Task[0x3ffb82a0]: allocated 148 bytes @ 0x3ffb4b10 -EVENT[9289]: 1.084780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9290]: 1.084789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9291]: 1.084798950 - core[1].svIdle(17), plen 0: [] -EVENT[9292]: 1.084809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[9293]: 1.084822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9294]: 1.084831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[9295]: 1.084839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9296]: 1.084847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[9297]: 1.084860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[9298]: 1.084868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[9299]: 1.084877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[9300]: 1.084886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9301]: 1.084895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9302]: 1.084904625 - core[0].svIdle(17), plen 0: [] -EVENT[9303]: 1.084919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9304]: 1.084968700 - core[1].svPrint(26), plen 64: [msg: I (1411) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.084968700] LOG: I (1411) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[9305]: 1.084984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.084984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9306]: 1.085005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[9307]: 1.085018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9308]: 1.085026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9309]: 1.085042425 - core[1].svIdle(17), plen 0: [] -EVENT[9310]: 1.085617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9311]: 1.085629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[9312]: 1.085638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9313]: 1.085652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[9314]: 1.085676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 222, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.085676975] HEAP: Allocated 222 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9315]: 1.085689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9316]: 1.085703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9317]: 1.085747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9318]: 1.085769450 - core[0].svPrint(26), plen 72: [msg: I (1412) example: Task[0x3ffb8600]: allocated 222 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.085769450] LOG: I (1412) example: Task[0x3ffb8600]: allocated 222 bytes @ 0x3ffb4b10 -EVENT[9319]: 1.085778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9320]: 1.085786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9321]: 1.085797075 - core[1].svIdle(17), plen 0: [] -EVENT[9322]: 1.085807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[9323]: 1.085820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9324]: 1.085829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[9325]: 1.085837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9326]: 1.085845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[9327]: 1.085858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[9328]: 1.085866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[9329]: 1.085879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[9330]: 1.085887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9331]: 1.085895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9332]: 1.085905825 - core[0].svIdle(17), plen 0: [] -EVENT[9333]: 1.085920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9334]: 1.085970100 - core[1].svPrint(26), plen 64: [msg: I (1412) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.085970100] LOG: I (1412) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[9335]: 1.085985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.085985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9336]: 1.086003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[9337]: 1.086016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9338]: 1.086025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9339]: 1.086040650 - core[1].svIdle(17), plen 0: [] -EVENT[9340]: 1.086617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9341]: 1.086629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9342]: 1.086643175 - core[0].svIdle(17), plen 0: [] -EVENT[9343]: 1.086747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9344]: 1.086756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9345]: 1.086770600 - core[1].svIdle(17), plen 0: [] -EVENT[9346]: 1.087617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9347]: 1.087629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9348]: 1.087643125 - core[0].svIdle(17), plen 0: [] -EVENT[9349]: 1.087747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9350]: 1.087757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9351]: 1.087770775 - core[1].svIdle(17), plen 0: [] -EVENT[9352]: 1.088617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9353]: 1.088629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9354]: 1.088643125 - core[0].svIdle(17), plen 0: [] -EVENT[9355]: 1.088747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9356]: 1.088756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9357]: 1.088770600 - core[1].svIdle(17), plen 0: [] -EVENT[9358]: 1.089617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9359]: 1.089629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9360]: 1.089643250 - core[0].svIdle(17), plen 0: [] -EVENT[9361]: 1.089747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9362]: 1.089756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9363]: 1.089770600 - core[1].svIdle(17), plen 0: [] -EVENT[9364]: 1.090617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9365]: 1.090632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9366]: 1.090646225 - core[0].svIdle(17), plen 0: [] -EVENT[9367]: 1.090747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9368]: 1.090756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9369]: 1.090770600 - core[1].svIdle(17), plen 0: [] -EVENT[9370]: 1.091617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9371]: 1.091629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9372]: 1.091643125 - core[0].svIdle(17), plen 0: [] -EVENT[9373]: 1.091747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9374]: 1.091757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9375]: 1.091770775 - core[1].svIdle(17), plen 0: [] -EVENT[9376]: 1.092617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9377]: 1.092629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9378]: 1.092643125 - core[0].svIdle(17), plen 0: [] -EVENT[9379]: 1.092747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9380]: 1.092756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9381]: 1.092770600 - core[1].svIdle(17), plen 0: [] -EVENT[9382]: 1.093617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9383]: 1.093629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9384]: 1.093643250 - core[0].svIdle(17), plen 0: [] -EVENT[9385]: 1.093747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9386]: 1.093756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9387]: 1.093770600 - core[1].svIdle(17), plen 0: [] -EVENT[9388]: 1.094617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9389]: 1.094629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9390]: 1.094643175 - core[0].svIdle(17), plen 0: [] -EVENT[9391]: 1.094747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9392]: 1.094756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9393]: 1.094770600 - core[1].svIdle(17), plen 0: [] -EVENT[9394]: 1.095617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9395]: 1.095629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9396]: 1.095643125 - core[0].svIdle(17), plen 0: [] -EVENT[9397]: 1.095747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9398]: 1.095757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9399]: 1.095770775 - core[1].svIdle(17), plen 0: [] -EVENT[9400]: 1.096617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9401]: 1.096629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9402]: 1.096643125 - core[0].svIdle(17), plen 0: [] -EVENT[9403]: 1.096747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9404]: 1.096756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9405]: 1.096770600 - core[1].svIdle(17), plen 0: [] -EVENT[9406]: 1.097617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9407]: 1.097629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9408]: 1.097643250 - core[0].svIdle(17), plen 0: [] -EVENT[9409]: 1.097747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9410]: 1.097756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9411]: 1.097770600 - core[1].svIdle(17), plen 0: [] -EVENT[9412]: 1.098617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9413]: 1.098629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9414]: 1.098643175 - core[0].svIdle(17), plen 0: [] -EVENT[9415]: 1.098747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9416]: 1.098756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9417]: 1.098770600 - core[1].svIdle(17), plen 0: [] -EVENT[9418]: 1.099617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9419]: 1.099629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9420]: 1.099643125 - core[0].svIdle(17), plen 0: [] -EVENT[9421]: 1.099747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9422]: 1.099757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9423]: 1.099770775 - core[1].svIdle(17), plen 0: [] -EVENT[9424]: 1.100617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9425]: 1.100629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9426]: 1.100643125 - core[0].svIdle(17), plen 0: [] -EVENT[9427]: 1.100747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9428]: 1.100756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9429]: 1.100770600 - core[1].svIdle(17), plen 0: [] -EVENT[9430]: 1.101617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9431]: 1.101629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9432]: 1.101643250 - core[0].svIdle(17), plen 0: [] -EVENT[9433]: 1.101747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9434]: 1.101756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9435]: 1.101770600 - core[1].svIdle(17), plen 0: [] -EVENT[9436]: 1.102617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9437]: 1.102633975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9438]: 1.102647600 - core[0].svIdle(17), plen 0: [] -EVENT[9439]: 1.102747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9440]: 1.102756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9441]: 1.102770600 - core[1].svIdle(17), plen 0: [] -EVENT[9442]: 1.103617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9443]: 1.103629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9444]: 1.103643125 - core[0].svIdle(17), plen 0: [] -EVENT[9445]: 1.103747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9446]: 1.103757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9447]: 1.103770775 - core[1].svIdle(17), plen 0: [] -EVENT[9448]: 1.104617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9449]: 1.104629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9450]: 1.104643125 - core[0].svIdle(17), plen 0: [] -EVENT[9451]: 1.104747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9452]: 1.104756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9453]: 1.104770600 - core[1].svIdle(17), plen 0: [] -EVENT[9454]: 1.105617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9455]: 1.105629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9456]: 1.105643250 - core[0].svIdle(17), plen 0: [] -EVENT[9457]: 1.105747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9458]: 1.105756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9459]: 1.105770600 - core[1].svIdle(17), plen 0: [] -EVENT[9460]: 1.106617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9461]: 1.106629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9462]: 1.106643175 - core[0].svIdle(17), plen 0: [] -EVENT[9463]: 1.106747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9464]: 1.106756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9465]: 1.106770600 - core[1].svIdle(17), plen 0: [] -EVENT[9466]: 1.107617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9467]: 1.107629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9468]: 1.107643125 - core[0].svIdle(17), plen 0: [] -EVENT[9469]: 1.107747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9470]: 1.107757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9471]: 1.107770775 - core[1].svIdle(17), plen 0: [] -EVENT[9472]: 1.108617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9473]: 1.108629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9474]: 1.108643125 - core[0].svIdle(17), plen 0: [] -EVENT[9475]: 1.108747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9476]: 1.108756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9477]: 1.108770600 - core[1].svIdle(17), plen 0: [] -EVENT[9478]: 1.109617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9479]: 1.109629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9480]: 1.109643250 - core[0].svIdle(17), plen 0: [] -EVENT[9481]: 1.109747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9482]: 1.109756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9483]: 1.109770600 - core[1].svIdle(17), plen 0: [] -EVENT[9484]: 1.110617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9485]: 1.110629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9486]: 1.110643175 - core[0].svIdle(17), plen 0: [] -EVENT[9487]: 1.110747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9488]: 1.110756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9489]: 1.110770600 - core[1].svIdle(17), plen 0: [] -EVENT[9490]: 1.111617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9491]: 1.111629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9492]: 1.111643125 - core[0].svIdle(17), plen 0: [] -EVENT[9493]: 1.111747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9494]: 1.111757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9495]: 1.111770775 - core[1].svIdle(17), plen 0: [] -EVENT[9496]: 1.112617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9497]: 1.112629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9498]: 1.112643125 - core[0].svIdle(17), plen 0: [] -EVENT[9499]: 1.112747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9500]: 1.112756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9501]: 1.112770600 - core[1].svIdle(17), plen 0: [] -EVENT[9502]: 1.113617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9503]: 1.113629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[9504]: 1.113638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9505]: 1.113652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[9506]: 1.113676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 76, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.113676950] HEAP: Allocated 76 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9507]: 1.113692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9508]: 1.113706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9509]: 1.113747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9510]: 1.113768225 - core[0].svPrint(26), plen 71: [msg: I (1440) example: Task[0x3ffb7f40]: allocated 76 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.113768225] LOG: I (1440) example: Task[0x3ffb7f40]: allocated 76 bytes @ 0x3ffb87e4 -EVENT[9511]: 1.113776475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9512]: 1.113784700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9513]: 1.113795300 - core[1].svIdle(17), plen 0: [] -EVENT[9514]: 1.113806175 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[9515]: 1.113819125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9516]: 1.113827825 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[9517]: 1.113835725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9518]: 1.113844275 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[9519]: 1.113857000 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[9520]: 1.113865375 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[9521]: 1.113873675 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[9522]: 1.113882425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9523]: 1.113891875 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9524]: 1.113901075 - core[0].svIdle(17), plen 0: [] -EVENT[9525]: 1.113915900 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9526]: 1.113965200 - core[1].svPrint(26), plen 64: [msg: I (1440) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.113965200] LOG: I (1440) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[9527]: 1.113983625 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.113983625] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9528]: 1.114002200 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[9529]: 1.114014875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9530]: 1.114023675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9531]: 1.114039250 - core[1].svIdle(17), plen 0: [] -EVENT[9532]: 1.114617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9533]: 1.114629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[9534]: 1.114638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9535]: 1.114652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[9536]: 1.114677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 152, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.114677000] HEAP: Allocated 152 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9537]: 1.114689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9538]: 1.114703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9539]: 1.114747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9540]: 1.114769475 - core[0].svPrint(26), plen 72: [msg: I (1441) example: Task[0x3ffb82a0]: allocated 152 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.114769475] LOG: I (1441) example: Task[0x3ffb82a0]: allocated 152 bytes @ 0x3ffb4b10 -EVENT[9541]: 1.114780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9542]: 1.114789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9543]: 1.114798950 - core[1].svIdle(17), plen 0: [] -EVENT[9544]: 1.114809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[9545]: 1.114822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9546]: 1.114831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[9547]: 1.114839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9548]: 1.114847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[9549]: 1.114860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[9550]: 1.114868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[9551]: 1.114877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[9552]: 1.114886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9553]: 1.114895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9554]: 1.114904625 - core[0].svIdle(17), plen 0: [] -EVENT[9555]: 1.114919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9556]: 1.114968700 - core[1].svPrint(26), plen 64: [msg: I (1441) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.114968700] LOG: I (1441) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[9557]: 1.114984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.114984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9558]: 1.115005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[9559]: 1.115018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9560]: 1.115026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9561]: 1.115042425 - core[1].svIdle(17), plen 0: [] -EVENT[9562]: 1.115617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9563]: 1.115629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[9564]: 1.115638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9565]: 1.115652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[9566]: 1.115676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 228, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.115676975] HEAP: Allocated 228 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9567]: 1.115689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9568]: 1.115703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9569]: 1.115747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9570]: 1.115769450 - core[0].svPrint(26), plen 72: [msg: I (1442) example: Task[0x3ffb8600]: allocated 228 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.115769450] LOG: I (1442) example: Task[0x3ffb8600]: allocated 228 bytes @ 0x3ffb4b10 -EVENT[9571]: 1.115778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9572]: 1.115786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9573]: 1.115797075 - core[1].svIdle(17), plen 0: [] -EVENT[9574]: 1.115807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[9575]: 1.115820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9576]: 1.115829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[9577]: 1.115837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9578]: 1.115845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[9579]: 1.115858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[9580]: 1.115866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[9581]: 1.115879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[9582]: 1.115887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9583]: 1.115895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9584]: 1.115905825 - core[0].svIdle(17), plen 0: [] -EVENT[9585]: 1.115920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9586]: 1.115970100 - core[1].svPrint(26), plen 64: [msg: I (1442) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.115970100] LOG: I (1442) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[9587]: 1.115985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.115985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9588]: 1.116003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[9589]: 1.116016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9590]: 1.116025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9591]: 1.116040650 - core[1].svIdle(17), plen 0: [] -EVENT[9592]: 1.116617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9593]: 1.116629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9594]: 1.116643175 - core[0].svIdle(17), plen 0: [] -EVENT[9595]: 1.116747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9596]: 1.116756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9597]: 1.116770600 - core[1].svIdle(17), plen 0: [] -EVENT[9598]: 1.117617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9599]: 1.117629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9600]: 1.117643125 - core[0].svIdle(17), plen 0: [] -EVENT[9601]: 1.117747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9602]: 1.117757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9603]: 1.117770775 - core[1].svIdle(17), plen 0: [] -EVENT[9604]: 1.118617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9605]: 1.118629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9606]: 1.118643125 - core[0].svIdle(17), plen 0: [] -EVENT[9607]: 1.118747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9608]: 1.118756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9609]: 1.118770600 - core[1].svIdle(17), plen 0: [] -EVENT[9610]: 1.119617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9611]: 1.119629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9612]: 1.119643250 - core[0].svIdle(17), plen 0: [] -EVENT[9613]: 1.119747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9614]: 1.119756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9615]: 1.119770600 - core[1].svIdle(17), plen 0: [] -EVENT[9616]: 1.120617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9617]: 1.120632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9618]: 1.120646225 - core[0].svIdle(17), plen 0: [] -EVENT[9619]: 1.120747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9620]: 1.120756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9621]: 1.120770600 - core[1].svIdle(17), plen 0: [] -EVENT[9622]: 1.121617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9623]: 1.121629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9624]: 1.121643125 - core[0].svIdle(17), plen 0: [] -EVENT[9625]: 1.121747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9626]: 1.121757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9627]: 1.121770775 - core[1].svIdle(17), plen 0: [] -EVENT[9628]: 1.122617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9629]: 1.122629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9630]: 1.122643125 - core[0].svIdle(17), plen 0: [] -EVENT[9631]: 1.122747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9632]: 1.122756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9633]: 1.122770600 - core[1].svIdle(17), plen 0: [] -EVENT[9634]: 1.123617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9635]: 1.123629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9636]: 1.123643250 - core[0].svIdle(17), plen 0: [] -EVENT[9637]: 1.123747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9638]: 1.123756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9639]: 1.123770600 - core[1].svIdle(17), plen 0: [] -EVENT[9640]: 1.124617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9641]: 1.124629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9642]: 1.124643175 - core[0].svIdle(17), plen 0: [] -EVENT[9643]: 1.124747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9644]: 1.124756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9645]: 1.124770600 - core[1].svIdle(17), plen 0: [] -EVENT[9646]: 1.125617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9647]: 1.125629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9648]: 1.125643125 - core[0].svIdle(17), plen 0: [] -EVENT[9649]: 1.125747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9650]: 1.125757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9651]: 1.125770775 - core[1].svIdle(17), plen 0: [] -EVENT[9652]: 1.126617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9653]: 1.126629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9654]: 1.126643125 - core[0].svIdle(17), plen 0: [] -EVENT[9655]: 1.126747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9656]: 1.126756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9657]: 1.126770600 - core[1].svIdle(17), plen 0: [] -EVENT[9658]: 1.127617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9659]: 1.127629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9660]: 1.127643250 - core[0].svIdle(17), plen 0: [] -EVENT[9661]: 1.127747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9662]: 1.127756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9663]: 1.127770600 - core[1].svIdle(17), plen 0: [] -EVENT[9664]: 1.128617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9665]: 1.128629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9666]: 1.128643175 - core[0].svIdle(17), plen 0: [] -EVENT[9667]: 1.128747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9668]: 1.128756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9669]: 1.128770600 - core[1].svIdle(17), plen 0: [] -EVENT[9670]: 1.129617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9671]: 1.129629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9672]: 1.129643125 - core[0].svIdle(17), plen 0: [] -EVENT[9673]: 1.129747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9674]: 1.129757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9675]: 1.129770775 - core[1].svIdle(17), plen 0: [] -EVENT[9676]: 1.130617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9677]: 1.130629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9678]: 1.130643125 - core[0].svIdle(17), plen 0: [] -EVENT[9679]: 1.130747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9680]: 1.130756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9681]: 1.130770600 - core[1].svIdle(17), plen 0: [] -EVENT[9682]: 1.131617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9683]: 1.131629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9684]: 1.131643250 - core[0].svIdle(17), plen 0: [] -EVENT[9685]: 1.131747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9686]: 1.131756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9687]: 1.131770600 - core[1].svIdle(17), plen 0: [] -EVENT[9688]: 1.132617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9689]: 1.132631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9690]: 1.132645550 - core[0].svIdle(17), plen 0: [] -EVENT[9691]: 1.132747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9692]: 1.132756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9693]: 1.132770600 - core[1].svIdle(17), plen 0: [] -EVENT[9694]: 1.133617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9695]: 1.133629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9696]: 1.133643125 - core[0].svIdle(17), plen 0: [] -EVENT[9697]: 1.133747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9698]: 1.133757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9699]: 1.133770775 - core[1].svIdle(17), plen 0: [] -EVENT[9700]: 1.134617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9701]: 1.134629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9702]: 1.134643125 - core[0].svIdle(17), plen 0: [] -EVENT[9703]: 1.134747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9704]: 1.134756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9705]: 1.134770600 - core[1].svIdle(17), plen 0: [] -EVENT[9706]: 1.135617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9707]: 1.135629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9708]: 1.135643250 - core[0].svIdle(17), plen 0: [] -EVENT[9709]: 1.135747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9710]: 1.135756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9711]: 1.135770600 - core[1].svIdle(17), plen 0: [] -EVENT[9712]: 1.136617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9713]: 1.136629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9714]: 1.136643175 - core[0].svIdle(17), plen 0: [] -EVENT[9715]: 1.136747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9716]: 1.136756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9717]: 1.136770600 - core[1].svIdle(17), plen 0: [] -EVENT[9718]: 1.137617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9719]: 1.137629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9720]: 1.137643125 - core[0].svIdle(17), plen 0: [] -EVENT[9721]: 1.137747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9722]: 1.137757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9723]: 1.137770775 - core[1].svIdle(17), plen 0: [] -EVENT[9724]: 1.138617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9725]: 1.138629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9726]: 1.138643125 - core[0].svIdle(17), plen 0: [] -EVENT[9727]: 1.138747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9728]: 1.138756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9729]: 1.138770600 - core[1].svIdle(17), plen 0: [] -EVENT[9730]: 1.139617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9731]: 1.139629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9732]: 1.139643250 - core[0].svIdle(17), plen 0: [] -EVENT[9733]: 1.139747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9734]: 1.139756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9735]: 1.139770600 - core[1].svIdle(17), plen 0: [] -EVENT[9736]: 1.140617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9737]: 1.140629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9738]: 1.140643175 - core[0].svIdle(17), plen 0: [] -EVENT[9739]: 1.140747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9740]: 1.140756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9741]: 1.140770600 - core[1].svIdle(17), plen 0: [] -EVENT[9742]: 1.141617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9743]: 1.141629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9744]: 1.141643125 - core[0].svIdle(17), plen 0: [] -EVENT[9745]: 1.141747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9746]: 1.141757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9747]: 1.141770775 - core[1].svIdle(17), plen 0: [] -EVENT[9748]: 1.142617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9749]: 1.142629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9750]: 1.142643125 - core[0].svIdle(17), plen 0: [] -EVENT[9751]: 1.142747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9752]: 1.142756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9753]: 1.142770600 - core[1].svIdle(17), plen 0: [] -EVENT[9754]: 1.143617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9755]: 1.143629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[9756]: 1.143638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9757]: 1.143652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[9758]: 1.143676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 78, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.143676950] HEAP: Allocated 78 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9759]: 1.143692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9760]: 1.143706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9761]: 1.143747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9762]: 1.143768950 - core[0].svPrint(26), plen 71: [msg: I (1470) example: Task[0x3ffb7f40]: allocated 78 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.143768950] LOG: I (1470) example: Task[0x3ffb7f40]: allocated 78 bytes @ 0x3ffb87e4 -EVENT[9763]: 1.143777425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9764]: 1.143785425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9765]: 1.143796175 - core[1].svIdle(17), plen 0: [] -EVENT[9766]: 1.143807025 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[9767]: 1.143819975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9768]: 1.143828700 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[9769]: 1.143836600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9770]: 1.143845150 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[9771]: 1.143857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[9772]: 1.143866250 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[9773]: 1.143874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[9774]: 1.143883275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9775]: 1.143892725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9776]: 1.143901925 - core[0].svIdle(17), plen 0: [] -EVENT[9777]: 1.143916750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9778]: 1.143966075 - core[1].svPrint(26), plen 64: [msg: I (1470) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.143966075] LOG: I (1470) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[9779]: 1.143984500 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.143984500] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9780]: 1.144003050 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[9781]: 1.144015750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9782]: 1.144024550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9783]: 1.144040125 - core[1].svIdle(17), plen 0: [] -EVENT[9784]: 1.144617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9785]: 1.144629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[9786]: 1.144638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9787]: 1.144652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[9788]: 1.144677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 156, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.144677000] HEAP: Allocated 156 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9789]: 1.144689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9790]: 1.144703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9791]: 1.144747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9792]: 1.144769475 - core[0].svPrint(26), plen 72: [msg: I (1471) example: Task[0x3ffb82a0]: allocated 156 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.144769475] LOG: I (1471) example: Task[0x3ffb82a0]: allocated 156 bytes @ 0x3ffb4b10 -EVENT[9793]: 1.144781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9794]: 1.144789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9795]: 1.144800125 - core[1].svIdle(17), plen 0: [] -EVENT[9796]: 1.144810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[9797]: 1.144823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9798]: 1.144832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[9799]: 1.144840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9800]: 1.144849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[9801]: 1.144861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[9802]: 1.144870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[9803]: 1.144878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[9804]: 1.144887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9805]: 1.144896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9806]: 1.144905800 - core[0].svIdle(17), plen 0: [] -EVENT[9807]: 1.144920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9808]: 1.144969875 - core[1].svPrint(26), plen 64: [msg: I (1471) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.144969875] LOG: I (1471) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[9809]: 1.144985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.144985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9810]: 1.145005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[9811]: 1.145018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9812]: 1.145027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9813]: 1.145042900 - core[1].svIdle(17), plen 0: [] -EVENT[9814]: 1.145617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9815]: 1.145629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[9816]: 1.145638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9817]: 1.145652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[9818]: 1.145676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 234, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.145676975] HEAP: Allocated 234 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9819]: 1.145689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9820]: 1.145703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9821]: 1.145747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9822]: 1.145769450 - core[0].svPrint(26), plen 72: [msg: I (1472) example: Task[0x3ffb8600]: allocated 234 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.145769450] LOG: I (1472) example: Task[0x3ffb8600]: allocated 234 bytes @ 0x3ffb4b10 -EVENT[9823]: 1.145778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9824]: 1.145786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9825]: 1.145797075 - core[1].svIdle(17), plen 0: [] -EVENT[9826]: 1.145807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[9827]: 1.145820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9828]: 1.145829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[9829]: 1.145837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9830]: 1.145845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[9831]: 1.145858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[9832]: 1.145866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[9833]: 1.145879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[9834]: 1.145887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9835]: 1.145895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[9836]: 1.145905800 - core[0].svIdle(17), plen 0: [] -EVENT[9837]: 1.145920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[9838]: 1.145970075 - core[1].svPrint(26), plen 64: [msg: I (1472) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.145970075] LOG: I (1472) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[9839]: 1.145985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.145985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[9840]: 1.146003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[9841]: 1.146016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[9842]: 1.146025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9843]: 1.146040625 - core[1].svIdle(17), plen 0: [] -EVENT[9844]: 1.146617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9845]: 1.146629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9846]: 1.146643175 - core[0].svIdle(17), plen 0: [] -EVENT[9847]: 1.146747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9848]: 1.146756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9849]: 1.146770600 - core[1].svIdle(17), plen 0: [] -EVENT[9850]: 1.147617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9851]: 1.147629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9852]: 1.147643125 - core[0].svIdle(17), plen 0: [] -EVENT[9853]: 1.147747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9854]: 1.147757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9855]: 1.147770775 - core[1].svIdle(17), plen 0: [] -EVENT[9856]: 1.148617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9857]: 1.148629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9858]: 1.148643125 - core[0].svIdle(17), plen 0: [] -EVENT[9859]: 1.148747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9860]: 1.148756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9861]: 1.148770600 - core[1].svIdle(17), plen 0: [] -EVENT[9862]: 1.149617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9863]: 1.149629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9864]: 1.149643250 - core[0].svIdle(17), plen 0: [] -EVENT[9865]: 1.149747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9866]: 1.149756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9867]: 1.149770600 - core[1].svIdle(17), plen 0: [] -EVENT[9868]: 1.150617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9869]: 1.150631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9870]: 1.150645550 - core[0].svIdle(17), plen 0: [] -EVENT[9871]: 1.150747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9872]: 1.150756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9873]: 1.150770600 - core[1].svIdle(17), plen 0: [] -EVENT[9874]: 1.151617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9875]: 1.151629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9876]: 1.151643125 - core[0].svIdle(17), plen 0: [] -EVENT[9877]: 1.151747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9878]: 1.151757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9879]: 1.151770775 - core[1].svIdle(17), plen 0: [] -EVENT[9880]: 1.152617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9881]: 1.152629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9882]: 1.152643125 - core[0].svIdle(17), plen 0: [] -EVENT[9883]: 1.152747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9884]: 1.152756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9885]: 1.152770600 - core[1].svIdle(17), plen 0: [] -EVENT[9886]: 1.153617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9887]: 1.153629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9888]: 1.153643250 - core[0].svIdle(17), plen 0: [] -EVENT[9889]: 1.153747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9890]: 1.153756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9891]: 1.153770600 - core[1].svIdle(17), plen 0: [] -EVENT[9892]: 1.154617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9893]: 1.154629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9894]: 1.154643175 - core[0].svIdle(17), plen 0: [] -EVENT[9895]: 1.154747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9896]: 1.154756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9897]: 1.154770600 - core[1].svIdle(17), plen 0: [] -EVENT[9898]: 1.155617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9899]: 1.155629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9900]: 1.155643125 - core[0].svIdle(17), plen 0: [] -EVENT[9901]: 1.155747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9902]: 1.155757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9903]: 1.155770775 - core[1].svIdle(17), plen 0: [] -EVENT[9904]: 1.156617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9905]: 1.156629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9906]: 1.156643125 - core[0].svIdle(17), plen 0: [] -EVENT[9907]: 1.156747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9908]: 1.156756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9909]: 1.156770600 - core[1].svIdle(17), plen 0: [] -EVENT[9910]: 1.157617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9911]: 1.157629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9912]: 1.157643250 - core[0].svIdle(17), plen 0: [] -EVENT[9913]: 1.157747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9914]: 1.157756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9915]: 1.157770600 - core[1].svIdle(17), plen 0: [] -EVENT[9916]: 1.158617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9917]: 1.158629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9918]: 1.158643175 - core[0].svIdle(17), plen 0: [] -EVENT[9919]: 1.158747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9920]: 1.158756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9921]: 1.158770600 - core[1].svIdle(17), plen 0: [] -EVENT[9922]: 1.159617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9923]: 1.159629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9924]: 1.159643125 - core[0].svIdle(17), plen 0: [] -EVENT[9925]: 1.159747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9926]: 1.159757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9927]: 1.159770775 - core[1].svIdle(17), plen 0: [] -EVENT[9928]: 1.160617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9929]: 1.160629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9930]: 1.160643125 - core[0].svIdle(17), plen 0: [] -EVENT[9931]: 1.160747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9932]: 1.160756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9933]: 1.160770600 - core[1].svIdle(17), plen 0: [] -EVENT[9934]: 1.161617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9935]: 1.161629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9936]: 1.161643250 - core[0].svIdle(17), plen 0: [] -EVENT[9937]: 1.161747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9938]: 1.161756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9939]: 1.161770600 - core[1].svIdle(17), plen 0: [] -EVENT[9940]: 1.162617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9941]: 1.162632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9942]: 1.162646225 - core[0].svIdle(17), plen 0: [] -EVENT[9943]: 1.162747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9944]: 1.162756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9945]: 1.162770600 - core[1].svIdle(17), plen 0: [] -EVENT[9946]: 1.163617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9947]: 1.163629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9948]: 1.163643125 - core[0].svIdle(17), plen 0: [] -EVENT[9949]: 1.163747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9950]: 1.163757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9951]: 1.163770775 - core[1].svIdle(17), plen 0: [] -EVENT[9952]: 1.164617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9953]: 1.164629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9954]: 1.164643125 - core[0].svIdle(17), plen 0: [] -EVENT[9955]: 1.164747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9956]: 1.164756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9957]: 1.164770600 - core[1].svIdle(17), plen 0: [] -EVENT[9958]: 1.165617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9959]: 1.165629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9960]: 1.165643250 - core[0].svIdle(17), plen 0: [] -EVENT[9961]: 1.165747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9962]: 1.165756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9963]: 1.165770600 - core[1].svIdle(17), plen 0: [] -EVENT[9964]: 1.166617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9965]: 1.166629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9966]: 1.166643175 - core[0].svIdle(17), plen 0: [] -EVENT[9967]: 1.166747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9968]: 1.166756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9969]: 1.166770600 - core[1].svIdle(17), plen 0: [] -EVENT[9970]: 1.167617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9971]: 1.167629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9972]: 1.167643125 - core[0].svIdle(17), plen 0: [] -EVENT[9973]: 1.167747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9974]: 1.167757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9975]: 1.167770775 - core[1].svIdle(17), plen 0: [] -EVENT[9976]: 1.168617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9977]: 1.168629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9978]: 1.168643125 - core[0].svIdle(17), plen 0: [] -EVENT[9979]: 1.168747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9980]: 1.168756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9981]: 1.168770600 - core[1].svIdle(17), plen 0: [] -EVENT[9982]: 1.169617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9983]: 1.169629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9984]: 1.169643250 - core[0].svIdle(17), plen 0: [] -EVENT[9985]: 1.169747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9986]: 1.169756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9987]: 1.169770600 - core[1].svIdle(17), plen 0: [] -EVENT[9988]: 1.170617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9989]: 1.170629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9990]: 1.170643175 - core[0].svIdle(17), plen 0: [] -EVENT[9991]: 1.170747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9992]: 1.170756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9993]: 1.170770600 - core[1].svIdle(17), plen 0: [] -EVENT[9994]: 1.171617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9995]: 1.171629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[9996]: 1.171643125 - core[0].svIdle(17), plen 0: [] -EVENT[9997]: 1.171747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[9998]: 1.171757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[9999]: 1.171770775 - core[1].svIdle(17), plen 0: [] -EVENT[10000]: 1.172617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10001]: 1.172629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10002]: 1.172643125 - core[0].svIdle(17), plen 0: [] -EVENT[10003]: 1.172747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10004]: 1.172756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10005]: 1.172770600 - core[1].svIdle(17), plen 0: [] -EVENT[10006]: 1.173617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10007]: 1.173629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[10008]: 1.173638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10009]: 1.173652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[10010]: 1.173676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 80, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.173676950] HEAP: Allocated 80 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10011]: 1.173692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10012]: 1.173706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10013]: 1.173747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10014]: 1.173768225 - core[0].svPrint(26), plen 71: [msg: I (1500) example: Task[0x3ffb7f40]: allocated 80 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.173768225] LOG: I (1500) example: Task[0x3ffb7f40]: allocated 80 bytes @ 0x3ffb87e4 -EVENT[10015]: 1.173776475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10016]: 1.173784700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10017]: 1.173795300 - core[1].svIdle(17), plen 0: [] -EVENT[10018]: 1.173806175 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[10019]: 1.173819125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10020]: 1.173827825 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[10021]: 1.173835725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10022]: 1.173844275 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[10023]: 1.173857000 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[10024]: 1.173865375 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[10025]: 1.173873675 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[10026]: 1.173882425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10027]: 1.173891875 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10028]: 1.173901075 - core[0].svIdle(17), plen 0: [] -EVENT[10029]: 1.173915900 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10030]: 1.173965200 - core[1].svPrint(26), plen 64: [msg: I (1500) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.173965200] LOG: I (1500) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[10031]: 1.173983625 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.173983625] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10032]: 1.174002200 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[10033]: 1.174014875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10034]: 1.174023675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10035]: 1.174039250 - core[1].svIdle(17), plen 0: [] -EVENT[10036]: 1.174617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10037]: 1.174629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[10038]: 1.174638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10039]: 1.174652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[10040]: 1.174677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 160, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.174677000] HEAP: Allocated 160 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10041]: 1.174689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10042]: 1.174703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10043]: 1.174747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10044]: 1.174769475 - core[0].svPrint(26), plen 72: [msg: I (1501) example: Task[0x3ffb82a0]: allocated 160 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.174769475] LOG: I (1501) example: Task[0x3ffb82a0]: allocated 160 bytes @ 0x3ffb4b10 -EVENT[10045]: 1.174780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10046]: 1.174789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10047]: 1.174798950 - core[1].svIdle(17), plen 0: [] -EVENT[10048]: 1.174809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[10049]: 1.174822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10050]: 1.174831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[10051]: 1.174839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10052]: 1.174847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[10053]: 1.174860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[10054]: 1.174868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[10055]: 1.174877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[10056]: 1.174886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10057]: 1.174895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10058]: 1.174904625 - core[0].svIdle(17), plen 0: [] -EVENT[10059]: 1.174919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10060]: 1.174968700 - core[1].svPrint(26), plen 64: [msg: I (1501) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.174968700] LOG: I (1501) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[10061]: 1.174984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.174984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10062]: 1.175005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[10063]: 1.175018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10064]: 1.175026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10065]: 1.175042425 - core[1].svIdle(17), plen 0: [] -EVENT[10066]: 1.175617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10067]: 1.175629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[10068]: 1.175638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10069]: 1.175652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[10070]: 1.175676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 240, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.175676975] HEAP: Allocated 240 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10071]: 1.175689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10072]: 1.175703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10073]: 1.175747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10074]: 1.175769450 - core[0].svPrint(26), plen 72: [msg: I (1502) example: Task[0x3ffb8600]: allocated 240 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.175769450] LOG: I (1502) example: Task[0x3ffb8600]: allocated 240 bytes @ 0x3ffb4b10 -EVENT[10075]: 1.175778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10076]: 1.175786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10077]: 1.175797075 - core[1].svIdle(17), plen 0: [] -EVENT[10078]: 1.175807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[10079]: 1.175820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10080]: 1.175829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[10081]: 1.175837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10082]: 1.175845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[10083]: 1.175858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[10084]: 1.175866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[10085]: 1.175879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[10086]: 1.175887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10087]: 1.175895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10088]: 1.175905825 - core[0].svIdle(17), plen 0: [] -EVENT[10089]: 1.175920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10090]: 1.175970100 - core[1].svPrint(26), plen 64: [msg: I (1502) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.175970100] LOG: I (1502) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[10091]: 1.175985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.175985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10092]: 1.176003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[10093]: 1.176016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10094]: 1.176025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10095]: 1.176040650 - core[1].svIdle(17), plen 0: [] -EVENT[10096]: 1.176617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10097]: 1.176629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10098]: 1.176643175 - core[0].svIdle(17), plen 0: [] -EVENT[10099]: 1.176747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10100]: 1.176756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10101]: 1.176770600 - core[1].svIdle(17), plen 0: [] -EVENT[10102]: 1.177617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10103]: 1.177629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10104]: 1.177643125 - core[0].svIdle(17), plen 0: [] -EVENT[10105]: 1.177747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10106]: 1.177757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10107]: 1.177770775 - core[1].svIdle(17), plen 0: [] -EVENT[10108]: 1.178617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10109]: 1.178629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10110]: 1.178643125 - core[0].svIdle(17), plen 0: [] -EVENT[10111]: 1.178747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10112]: 1.178756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10113]: 1.178770600 - core[1].svIdle(17), plen 0: [] -EVENT[10114]: 1.179617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10115]: 1.179629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10116]: 1.179643250 - core[0].svIdle(17), plen 0: [] -EVENT[10117]: 1.179747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10118]: 1.179756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10119]: 1.179770600 - core[1].svIdle(17), plen 0: [] -EVENT[10120]: 1.180617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10121]: 1.180632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10122]: 1.180646225 - core[0].svIdle(17), plen 0: [] -EVENT[10123]: 1.180747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10124]: 1.180756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10125]: 1.180770600 - core[1].svIdle(17), plen 0: [] -EVENT[10126]: 1.181617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10127]: 1.181629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10128]: 1.181643125 - core[0].svIdle(17), plen 0: [] -EVENT[10129]: 1.181747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10130]: 1.181757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10131]: 1.181770775 - core[1].svIdle(17), plen 0: [] -EVENT[10132]: 1.182617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10133]: 1.182629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10134]: 1.182643125 - core[0].svIdle(17), plen 0: [] -EVENT[10135]: 1.182747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10136]: 1.182756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10137]: 1.182770600 - core[1].svIdle(17), plen 0: [] -EVENT[10138]: 1.183617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10139]: 1.183629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10140]: 1.183643250 - core[0].svIdle(17), plen 0: [] -EVENT[10141]: 1.183747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10142]: 1.183756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10143]: 1.183770600 - core[1].svIdle(17), plen 0: [] -EVENT[10144]: 1.184617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10145]: 1.184629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10146]: 1.184643175 - core[0].svIdle(17), plen 0: [] -EVENT[10147]: 1.184747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10148]: 1.184756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10149]: 1.184770600 - core[1].svIdle(17), plen 0: [] -EVENT[10150]: 1.185617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10151]: 1.185629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10152]: 1.185643125 - core[0].svIdle(17), plen 0: [] -EVENT[10153]: 1.185747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10154]: 1.185757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10155]: 1.185770775 - core[1].svIdle(17), plen 0: [] -EVENT[10156]: 1.186617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10157]: 1.186629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10158]: 1.186643125 - core[0].svIdle(17), plen 0: [] -EVENT[10159]: 1.186747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10160]: 1.186756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10161]: 1.186770600 - core[1].svIdle(17), plen 0: [] -EVENT[10162]: 1.187617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10163]: 1.187629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10164]: 1.187643250 - core[0].svIdle(17), plen 0: [] -EVENT[10165]: 1.187747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10166]: 1.187756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10167]: 1.187770600 - core[1].svIdle(17), plen 0: [] -EVENT[10168]: 1.188617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10169]: 1.188629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10170]: 1.188643175 - core[0].svIdle(17), plen 0: [] -EVENT[10171]: 1.188747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10172]: 1.188756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10173]: 1.188770600 - core[1].svIdle(17), plen 0: [] -EVENT[10174]: 1.189617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10175]: 1.189629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10176]: 1.189643125 - core[0].svIdle(17), plen 0: [] -EVENT[10177]: 1.189747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10178]: 1.189757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10179]: 1.189770775 - core[1].svIdle(17), plen 0: [] -EVENT[10180]: 1.190617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10181]: 1.190629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10182]: 1.190643125 - core[0].svIdle(17), plen 0: [] -EVENT[10183]: 1.190747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10184]: 1.190756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10185]: 1.190770600 - core[1].svIdle(17), plen 0: [] -EVENT[10186]: 1.191617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10187]: 1.191629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10188]: 1.191643250 - core[0].svIdle(17), plen 0: [] -EVENT[10189]: 1.191747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10190]: 1.191756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10191]: 1.191770600 - core[1].svIdle(17), plen 0: [] -EVENT[10192]: 1.192617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10193]: 1.192631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10194]: 1.192645550 - core[0].svIdle(17), plen 0: [] -EVENT[10195]: 1.192747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10196]: 1.192756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10197]: 1.192770600 - core[1].svIdle(17), plen 0: [] -EVENT[10198]: 1.193617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10199]: 1.193629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10200]: 1.193643125 - core[0].svIdle(17), plen 0: [] -EVENT[10201]: 1.193747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10202]: 1.193757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10203]: 1.193770775 - core[1].svIdle(17), plen 0: [] -EVENT[10204]: 1.194617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10205]: 1.194629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10206]: 1.194643125 - core[0].svIdle(17), plen 0: [] -EVENT[10207]: 1.194747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10208]: 1.194756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10209]: 1.194770600 - core[1].svIdle(17), plen 0: [] -EVENT[10210]: 1.195617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10211]: 1.195629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10212]: 1.195643250 - core[0].svIdle(17), plen 0: [] -EVENT[10213]: 1.195747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10214]: 1.195756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10215]: 1.195770600 - core[1].svIdle(17), plen 0: [] -EVENT[10216]: 1.196617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10217]: 1.196629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10218]: 1.196643175 - core[0].svIdle(17), plen 0: [] -EVENT[10219]: 1.196747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10220]: 1.196756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10221]: 1.196770600 - core[1].svIdle(17), plen 0: [] -EVENT[10222]: 1.197617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10223]: 1.197629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10224]: 1.197643125 - core[0].svIdle(17), plen 0: [] -EVENT[10225]: 1.197747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10226]: 1.197757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10227]: 1.197770775 - core[1].svIdle(17), plen 0: [] -EVENT[10228]: 1.198617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10229]: 1.198629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10230]: 1.198643125 - core[0].svIdle(17), plen 0: [] -EVENT[10231]: 1.198747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10232]: 1.198756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10233]: 1.198770600 - core[1].svIdle(17), plen 0: [] -EVENT[10234]: 1.199617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10235]: 1.199629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10236]: 1.199643250 - core[0].svIdle(17), plen 0: [] -EVENT[10237]: 1.199747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10238]: 1.199756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10239]: 1.199770600 - core[1].svIdle(17), plen 0: [] -EVENT[10240]: 1.200617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10241]: 1.200629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10242]: 1.200643175 - core[0].svIdle(17), plen 0: [] -EVENT[10243]: 1.200747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10244]: 1.200756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10245]: 1.200770600 - core[1].svIdle(17), plen 0: [] -EVENT[10246]: 1.201617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10247]: 1.201629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10248]: 1.201643125 - core[0].svIdle(17), plen 0: [] -EVENT[10249]: 1.201747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10250]: 1.201757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10251]: 1.201770775 - core[1].svIdle(17), plen 0: [] -EVENT[10252]: 1.202617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10253]: 1.202629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10254]: 1.202643125 - core[0].svIdle(17), plen 0: [] -EVENT[10255]: 1.202747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10256]: 1.202756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10257]: 1.202770600 - core[1].svIdle(17), plen 0: [] -EVENT[10258]: 1.203617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10259]: 1.203629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[10260]: 1.203638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10261]: 1.203652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[10262]: 1.203676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 82, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.203676950] HEAP: Allocated 82 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10263]: 1.203692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10264]: 1.203706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10265]: 1.203747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10266]: 1.203768950 - core[0].svPrint(26), plen 71: [msg: I (1530) example: Task[0x3ffb7f40]: allocated 82 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.203768950] LOG: I (1530) example: Task[0x3ffb7f40]: allocated 82 bytes @ 0x3ffb87e4 -EVENT[10267]: 1.203777425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10268]: 1.203785425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10269]: 1.203796175 - core[1].svIdle(17), plen 0: [] -EVENT[10270]: 1.203807025 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[10271]: 1.203819975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10272]: 1.203828700 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[10273]: 1.203836600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10274]: 1.203845150 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[10275]: 1.203857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[10276]: 1.203866250 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[10277]: 1.203874500 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[10278]: 1.203883225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10279]: 1.203892675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10280]: 1.203901875 - core[0].svIdle(17), plen 0: [] -EVENT[10281]: 1.203916700 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10282]: 1.203966000 - core[1].svPrint(26), plen 64: [msg: I (1530) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.203966000] LOG: I (1530) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[10283]: 1.203984425 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.203984425] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10284]: 1.204003000 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[10285]: 1.204015675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10286]: 1.204024475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10287]: 1.204040050 - core[1].svIdle(17), plen 0: [] -EVENT[10288]: 1.204617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10289]: 1.204629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[10290]: 1.204638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10291]: 1.204652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[10292]: 1.204677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 164, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.204677000] HEAP: Allocated 164 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10293]: 1.204689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10294]: 1.204703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10295]: 1.204747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10296]: 1.204769475 - core[0].svPrint(26), plen 72: [msg: I (1531) example: Task[0x3ffb82a0]: allocated 164 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.204769475] LOG: I (1531) example: Task[0x3ffb82a0]: allocated 164 bytes @ 0x3ffb4b10 -EVENT[10297]: 1.204781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10298]: 1.204789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10299]: 1.204800125 - core[1].svIdle(17), plen 0: [] -EVENT[10300]: 1.204810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[10301]: 1.204823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10302]: 1.204832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[10303]: 1.204840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10304]: 1.204849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[10305]: 1.204861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[10306]: 1.204870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[10307]: 1.204878275 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[10308]: 1.204887150 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10309]: 1.204896525 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10310]: 1.204905700 - core[0].svIdle(17), plen 0: [] -EVENT[10311]: 1.204920525 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10312]: 1.204969775 - core[1].svPrint(26), plen 64: [msg: I (1531) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.204969775] LOG: I (1531) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[10313]: 1.204985375 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.204985375] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10314]: 1.205005750 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[10315]: 1.205018425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10316]: 1.205027225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10317]: 1.205042800 - core[1].svIdle(17), plen 0: [] -EVENT[10318]: 1.205617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10319]: 1.205629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[10320]: 1.205638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10321]: 1.205652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[10322]: 1.205676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 246, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.205676975] HEAP: Allocated 246 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10323]: 1.205689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10324]: 1.205703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10325]: 1.205747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10326]: 1.205769450 - core[0].svPrint(26), plen 72: [msg: I (1532) example: Task[0x3ffb8600]: allocated 246 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.205769450] LOG: I (1532) example: Task[0x3ffb8600]: allocated 246 bytes @ 0x3ffb4b10 -EVENT[10327]: 1.205778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10328]: 1.205786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10329]: 1.205797075 - core[1].svIdle(17), plen 0: [] -EVENT[10330]: 1.205807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[10331]: 1.205820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10332]: 1.205829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[10333]: 1.205837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10334]: 1.205845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[10335]: 1.205858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[10336]: 1.205866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[10337]: 1.205879175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[10338]: 1.205887200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10339]: 1.205895650 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10340]: 1.205905750 - core[0].svIdle(17), plen 0: [] -EVENT[10341]: 1.205920675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10342]: 1.205970025 - core[1].svPrint(26), plen 64: [msg: I (1532) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.205970025] LOG: I (1532) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[10343]: 1.205985400 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.205985400] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10344]: 1.206003525 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[10345]: 1.206016350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10346]: 1.206025125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10347]: 1.206040575 - core[1].svIdle(17), plen 0: [] -EVENT[10348]: 1.206617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10349]: 1.206629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10350]: 1.206643175 - core[0].svIdle(17), plen 0: [] -EVENT[10351]: 1.206747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10352]: 1.206756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10353]: 1.206770600 - core[1].svIdle(17), plen 0: [] -EVENT[10354]: 1.207617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10355]: 1.207629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10356]: 1.207643125 - core[0].svIdle(17), plen 0: [] -EVENT[10357]: 1.207747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10358]: 1.207757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10359]: 1.207770775 - core[1].svIdle(17), plen 0: [] -EVENT[10360]: 1.208617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10361]: 1.208629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10362]: 1.208643125 - core[0].svIdle(17), plen 0: [] -EVENT[10363]: 1.208747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10364]: 1.208756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10365]: 1.208770600 - core[1].svIdle(17), plen 0: [] -EVENT[10366]: 1.209617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10367]: 1.209629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10368]: 1.209643250 - core[0].svIdle(17), plen 0: [] -EVENT[10369]: 1.209747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10370]: 1.209756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10371]: 1.209770600 - core[1].svIdle(17), plen 0: [] -EVENT[10372]: 1.210617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10373]: 1.210631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10374]: 1.210645550 - core[0].svIdle(17), plen 0: [] -EVENT[10375]: 1.210747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10376]: 1.210756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10377]: 1.210770600 - core[1].svIdle(17), plen 0: [] -EVENT[10378]: 1.211617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10379]: 1.211629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10380]: 1.211643125 - core[0].svIdle(17), plen 0: [] -EVENT[10381]: 1.211747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10382]: 1.211757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10383]: 1.211770775 - core[1].svIdle(17), plen 0: [] -EVENT[10384]: 1.212617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10385]: 1.212629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10386]: 1.212643125 - core[0].svIdle(17), plen 0: [] -EVENT[10387]: 1.212747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10388]: 1.212756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10389]: 1.212770600 - core[1].svIdle(17), plen 0: [] -EVENT[10390]: 1.213617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10391]: 1.213629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10392]: 1.213643250 - core[0].svIdle(17), plen 0: [] -EVENT[10393]: 1.213747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10394]: 1.213756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10395]: 1.213770600 - core[1].svIdle(17), plen 0: [] -EVENT[10396]: 1.214617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10397]: 1.214629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10398]: 1.214643175 - core[0].svIdle(17), plen 0: [] -EVENT[10399]: 1.214747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10400]: 1.214756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10401]: 1.214770600 - core[1].svIdle(17), plen 0: [] -EVENT[10402]: 1.215617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10403]: 1.215629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10404]: 1.215643125 - core[0].svIdle(17), plen 0: [] -EVENT[10405]: 1.215747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10406]: 1.215757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10407]: 1.215770775 - core[1].svIdle(17), plen 0: [] -EVENT[10408]: 1.216617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10409]: 1.216629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10410]: 1.216643125 - core[0].svIdle(17), plen 0: [] -EVENT[10411]: 1.216747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10412]: 1.216756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10413]: 1.216770600 - core[1].svIdle(17), plen 0: [] -EVENT[10414]: 1.217617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10415]: 1.217629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10416]: 1.217643250 - core[0].svIdle(17), plen 0: [] -EVENT[10417]: 1.217747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10418]: 1.217756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10419]: 1.217770600 - core[1].svIdle(17), plen 0: [] -EVENT[10420]: 1.218617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10421]: 1.218629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10422]: 1.218643175 - core[0].svIdle(17), plen 0: [] -EVENT[10423]: 1.218747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10424]: 1.218756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10425]: 1.218770600 - core[1].svIdle(17), plen 0: [] -EVENT[10426]: 1.219617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10427]: 1.219629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10428]: 1.219643125 - core[0].svIdle(17), plen 0: [] -EVENT[10429]: 1.219747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10430]: 1.219757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10431]: 1.219770775 - core[1].svIdle(17), plen 0: [] -EVENT[10432]: 1.220617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10433]: 1.220629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10434]: 1.220643125 - core[0].svIdle(17), plen 0: [] -EVENT[10435]: 1.220747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10436]: 1.220756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10437]: 1.220770600 - core[1].svIdle(17), plen 0: [] -EVENT[10438]: 1.221617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10439]: 1.221629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10440]: 1.221643250 - core[0].svIdle(17), plen 0: [] -EVENT[10441]: 1.221747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10442]: 1.221756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10443]: 1.221770600 - core[1].svIdle(17), plen 0: [] -EVENT[10444]: 1.222617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10445]: 1.222632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10446]: 1.222646225 - core[0].svIdle(17), plen 0: [] -EVENT[10447]: 1.222747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10448]: 1.222756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10449]: 1.222770600 - core[1].svIdle(17), plen 0: [] -EVENT[10450]: 1.223617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10451]: 1.223629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10452]: 1.223643125 - core[0].svIdle(17), plen 0: [] -EVENT[10453]: 1.223747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10454]: 1.223757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10455]: 1.223770775 - core[1].svIdle(17), plen 0: [] -EVENT[10456]: 1.224617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10457]: 1.224629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10458]: 1.224643125 - core[0].svIdle(17), plen 0: [] -EVENT[10459]: 1.224747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10460]: 1.224756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10461]: 1.224770600 - core[1].svIdle(17), plen 0: [] -EVENT[10462]: 1.225617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10463]: 1.225629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10464]: 1.225643250 - core[0].svIdle(17), plen 0: [] -EVENT[10465]: 1.225747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10466]: 1.225756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10467]: 1.225770600 - core[1].svIdle(17), plen 0: [] -EVENT[10468]: 1.226617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10469]: 1.226629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10470]: 1.226643175 - core[0].svIdle(17), plen 0: [] -EVENT[10471]: 1.226747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10472]: 1.226756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10473]: 1.226770600 - core[1].svIdle(17), plen 0: [] -EVENT[10474]: 1.227617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10475]: 1.227629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10476]: 1.227643125 - core[0].svIdle(17), plen 0: [] -EVENT[10477]: 1.227747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10478]: 1.227757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10479]: 1.227770775 - core[1].svIdle(17), plen 0: [] -EVENT[10480]: 1.228617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10481]: 1.228629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10482]: 1.228643125 - core[0].svIdle(17), plen 0: [] -EVENT[10483]: 1.228747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10484]: 1.228756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10485]: 1.228770600 - core[1].svIdle(17), plen 0: [] -EVENT[10486]: 1.229617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10487]: 1.229629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10488]: 1.229643250 - core[0].svIdle(17), plen 0: [] -EVENT[10489]: 1.229747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10490]: 1.229756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10491]: 1.229770600 - core[1].svIdle(17), plen 0: [] -EVENT[10492]: 1.230617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10493]: 1.230629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10494]: 1.230643175 - core[0].svIdle(17), plen 0: [] -EVENT[10495]: 1.230747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10496]: 1.230756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10497]: 1.230770600 - core[1].svIdle(17), plen 0: [] -EVENT[10498]: 1.231617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10499]: 1.231629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10500]: 1.231643125 - core[0].svIdle(17), plen 0: [] -EVENT[10501]: 1.231747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10502]: 1.231757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10503]: 1.231770775 - core[1].svIdle(17), plen 0: [] -EVENT[10504]: 1.232617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10505]: 1.232629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10506]: 1.232643125 - core[0].svIdle(17), plen 0: [] -EVENT[10507]: 1.232747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10508]: 1.232756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10509]: 1.232770600 - core[1].svIdle(17), plen 0: [] -EVENT[10510]: 1.233617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10511]: 1.233629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[10512]: 1.233638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10513]: 1.233652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[10514]: 1.233676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 84, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.233676950] HEAP: Allocated 84 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10515]: 1.233692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10516]: 1.233706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10517]: 1.233747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10518]: 1.233768225 - core[0].svPrint(26), plen 71: [msg: I (1560) example: Task[0x3ffb7f40]: allocated 84 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.233768225] LOG: I (1560) example: Task[0x3ffb7f40]: allocated 84 bytes @ 0x3ffb87e4 -EVENT[10519]: 1.233776475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10520]: 1.233784700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10521]: 1.233795300 - core[1].svIdle(17), plen 0: [] -EVENT[10522]: 1.233806175 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[10523]: 1.233819125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10524]: 1.233827825 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[10525]: 1.233835725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10526]: 1.233844275 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[10527]: 1.233857000 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[10528]: 1.233865375 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[10529]: 1.233873675 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[10530]: 1.233882425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10531]: 1.233891875 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10532]: 1.233901075 - core[0].svIdle(17), plen 0: [] -EVENT[10533]: 1.233915900 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10534]: 1.233965200 - core[1].svPrint(26), plen 64: [msg: I (1560) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.233965200] LOG: I (1560) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[10535]: 1.233983625 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.233983625] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10536]: 1.234002200 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[10537]: 1.234014875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10538]: 1.234023675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10539]: 1.234039250 - core[1].svIdle(17), plen 0: [] -EVENT[10540]: 1.234617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10541]: 1.234629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[10542]: 1.234638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10543]: 1.234652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[10544]: 1.234677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 168, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.234677000] HEAP: Allocated 168 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10545]: 1.234689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10546]: 1.234703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10547]: 1.234747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10548]: 1.234769475 - core[0].svPrint(26), plen 72: [msg: I (1561) example: Task[0x3ffb82a0]: allocated 168 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.234769475] LOG: I (1561) example: Task[0x3ffb82a0]: allocated 168 bytes @ 0x3ffb4b10 -EVENT[10549]: 1.234780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10550]: 1.234789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10551]: 1.234798950 - core[1].svIdle(17), plen 0: [] -EVENT[10552]: 1.234809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[10553]: 1.234822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10554]: 1.234831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[10555]: 1.234839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10556]: 1.234847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[10557]: 1.234860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[10558]: 1.234868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[10559]: 1.234877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[10560]: 1.234886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10561]: 1.234895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10562]: 1.234904625 - core[0].svIdle(17), plen 0: [] -EVENT[10563]: 1.234919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10564]: 1.234968700 - core[1].svPrint(26), plen 64: [msg: I (1561) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.234968700] LOG: I (1561) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[10565]: 1.234984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.234984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10566]: 1.235005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[10567]: 1.235018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10568]: 1.235026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10569]: 1.235042425 - core[1].svIdle(17), plen 0: [] -EVENT[10570]: 1.235617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10571]: 1.235629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[10572]: 1.235638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10573]: 1.235652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[10574]: 1.235676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 252, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.235676975] HEAP: Allocated 252 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10575]: 1.235689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10576]: 1.235703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10577]: 1.235747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10578]: 1.235769450 - core[0].svPrint(26), plen 72: [msg: I (1562) example: Task[0x3ffb8600]: allocated 252 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.235769450] LOG: I (1562) example: Task[0x3ffb8600]: allocated 252 bytes @ 0x3ffb4b10 -EVENT[10579]: 1.235778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10580]: 1.235786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10581]: 1.235797075 - core[1].svIdle(17), plen 0: [] -EVENT[10582]: 1.235807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[10583]: 1.235820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10584]: 1.235829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[10585]: 1.235837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10586]: 1.235845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[10587]: 1.235858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[10588]: 1.235866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[10589]: 1.235879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[10590]: 1.235887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10591]: 1.235895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10592]: 1.235905825 - core[0].svIdle(17), plen 0: [] -EVENT[10593]: 1.235920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10594]: 1.235970100 - core[1].svPrint(26), plen 64: [msg: I (1562) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.235970100] LOG: I (1562) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[10595]: 1.235985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.235985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10596]: 1.236003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[10597]: 1.236016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10598]: 1.236025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10599]: 1.236040650 - core[1].svIdle(17), plen 0: [] -EVENT[10600]: 1.236617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10601]: 1.236629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10602]: 1.236643175 - core[0].svIdle(17), plen 0: [] -EVENT[10603]: 1.236747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10604]: 1.236756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10605]: 1.236770600 - core[1].svIdle(17), plen 0: [] -EVENT[10606]: 1.237617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10607]: 1.237629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10608]: 1.237643125 - core[0].svIdle(17), plen 0: [] -EVENT[10609]: 1.237747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10610]: 1.237757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10611]: 1.237770775 - core[1].svIdle(17), plen 0: [] -EVENT[10612]: 1.238617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10613]: 1.238629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10614]: 1.238643125 - core[0].svIdle(17), plen 0: [] -EVENT[10615]: 1.238747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10616]: 1.238756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10617]: 1.238770600 - core[1].svIdle(17), plen 0: [] -EVENT[10618]: 1.239617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10619]: 1.239629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10620]: 1.239643250 - core[0].svIdle(17), plen 0: [] -EVENT[10621]: 1.239747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10622]: 1.239756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10623]: 1.239770600 - core[1].svIdle(17), plen 0: [] -EVENT[10624]: 1.240617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10625]: 1.240632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10626]: 1.240646225 - core[0].svIdle(17), plen 0: [] -EVENT[10627]: 1.240747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10628]: 1.240756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10629]: 1.240770600 - core[1].svIdle(17), plen 0: [] -EVENT[10630]: 1.241617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10631]: 1.241629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10632]: 1.241643125 - core[0].svIdle(17), plen 0: [] -EVENT[10633]: 1.241747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10634]: 1.241757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10635]: 1.241770775 - core[1].svIdle(17), plen 0: [] -EVENT[10636]: 1.242617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10637]: 1.242629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10638]: 1.242643125 - core[0].svIdle(17), plen 0: [] -EVENT[10639]: 1.242747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10640]: 1.242756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10641]: 1.242770600 - core[1].svIdle(17), plen 0: [] -EVENT[10642]: 1.243617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10643]: 1.243629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10644]: 1.243643250 - core[0].svIdle(17), plen 0: [] -EVENT[10645]: 1.243747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10646]: 1.243756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10647]: 1.243770600 - core[1].svIdle(17), plen 0: [] -EVENT[10648]: 1.244617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10649]: 1.244629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10650]: 1.244643175 - core[0].svIdle(17), plen 0: [] -EVENT[10651]: 1.244747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10652]: 1.244756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10653]: 1.244770600 - core[1].svIdle(17), plen 0: [] -EVENT[10654]: 1.245617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10655]: 1.245629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10656]: 1.245643125 - core[0].svIdle(17), plen 0: [] -EVENT[10657]: 1.245747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10658]: 1.245757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10659]: 1.245770775 - core[1].svIdle(17), plen 0: [] -EVENT[10660]: 1.246617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10661]: 1.246629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10662]: 1.246643125 - core[0].svIdle(17), plen 0: [] -EVENT[10663]: 1.246747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10664]: 1.246756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10665]: 1.246770600 - core[1].svIdle(17), plen 0: [] -EVENT[10666]: 1.247617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10667]: 1.247629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10668]: 1.247643250 - core[0].svIdle(17), plen 0: [] -EVENT[10669]: 1.247747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10670]: 1.247756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10671]: 1.247770600 - core[1].svIdle(17), plen 0: [] -EVENT[10672]: 1.248617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10673]: 1.248629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10674]: 1.248643175 - core[0].svIdle(17), plen 0: [] -EVENT[10675]: 1.248747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10676]: 1.248756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10677]: 1.248770600 - core[1].svIdle(17), plen 0: [] -EVENT[10678]: 1.249617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10679]: 1.249629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10680]: 1.249643125 - core[0].svIdle(17), plen 0: [] -EVENT[10681]: 1.249747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10682]: 1.249757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10683]: 1.249770775 - core[1].svIdle(17), plen 0: [] -EVENT[10684]: 1.250617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10685]: 1.250629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10686]: 1.250643125 - core[0].svIdle(17), plen 0: [] -EVENT[10687]: 1.250747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10688]: 1.250756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10689]: 1.250770600 - core[1].svIdle(17), plen 0: [] -EVENT[10690]: 1.251617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10691]: 1.251629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10692]: 1.251643250 - core[0].svIdle(17), plen 0: [] -EVENT[10693]: 1.251747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10694]: 1.251756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10695]: 1.251770600 - core[1].svIdle(17), plen 0: [] -EVENT[10696]: 1.252617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10697]: 1.252631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10698]: 1.252645550 - core[0].svIdle(17), plen 0: [] -EVENT[10699]: 1.252747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10700]: 1.252756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10701]: 1.252770600 - core[1].svIdle(17), plen 0: [] -EVENT[10702]: 1.253617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10703]: 1.253629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10704]: 1.253643125 - core[0].svIdle(17), plen 0: [] -EVENT[10705]: 1.253747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10706]: 1.253757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10707]: 1.253770775 - core[1].svIdle(17), plen 0: [] -EVENT[10708]: 1.254617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10709]: 1.254629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10710]: 1.254643125 - core[0].svIdle(17), plen 0: [] -EVENT[10711]: 1.254747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10712]: 1.254756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10713]: 1.254770600 - core[1].svIdle(17), plen 0: [] -EVENT[10714]: 1.255617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10715]: 1.255629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10716]: 1.255643250 - core[0].svIdle(17), plen 0: [] -EVENT[10717]: 1.255747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10718]: 1.255756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10719]: 1.255770600 - core[1].svIdle(17), plen 0: [] -EVENT[10720]: 1.256617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10721]: 1.256629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10722]: 1.256643175 - core[0].svIdle(17), plen 0: [] -EVENT[10723]: 1.256747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10724]: 1.256756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10725]: 1.256770600 - core[1].svIdle(17), plen 0: [] -EVENT[10726]: 1.257617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10727]: 1.257629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10728]: 1.257643125 - core[0].svIdle(17), plen 0: [] -EVENT[10729]: 1.257747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10730]: 1.257757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10731]: 1.257770775 - core[1].svIdle(17), plen 0: [] -EVENT[10732]: 1.258617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10733]: 1.258629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10734]: 1.258643125 - core[0].svIdle(17), plen 0: [] -EVENT[10735]: 1.258747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10736]: 1.258756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10737]: 1.258770600 - core[1].svIdle(17), plen 0: [] -EVENT[10738]: 1.259617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10739]: 1.259629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10740]: 1.259643250 - core[0].svIdle(17), plen 0: [] -EVENT[10741]: 1.259747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10742]: 1.259756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10743]: 1.259770600 - core[1].svIdle(17), plen 0: [] -EVENT[10744]: 1.260617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10745]: 1.260629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10746]: 1.260643175 - core[0].svIdle(17), plen 0: [] -EVENT[10747]: 1.260747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10748]: 1.260756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10749]: 1.260770600 - core[1].svIdle(17), plen 0: [] -EVENT[10750]: 1.261617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10751]: 1.261629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10752]: 1.261643125 - core[0].svIdle(17), plen 0: [] -EVENT[10753]: 1.261747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10754]: 1.261757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10755]: 1.261770775 - core[1].svIdle(17), plen 0: [] -EVENT[10756]: 1.262617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10757]: 1.262629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10758]: 1.262643125 - core[0].svIdle(17), plen 0: [] -EVENT[10759]: 1.262747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10760]: 1.262756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10761]: 1.262770600 - core[1].svIdle(17), plen 0: [] -EVENT[10762]: 1.263617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10763]: 1.263629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[10764]: 1.263638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10765]: 1.263652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[10766]: 1.263676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 86, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.263676950] HEAP: Allocated 86 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10767]: 1.263692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10768]: 1.263706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10769]: 1.263747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10770]: 1.263768950 - core[0].svPrint(26), plen 71: [msg: I (1590) example: Task[0x3ffb7f40]: allocated 86 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.263768950] LOG: I (1590) example: Task[0x3ffb7f40]: allocated 86 bytes @ 0x3ffb87e4 -EVENT[10771]: 1.263777425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10772]: 1.263785425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10773]: 1.263796175 - core[1].svIdle(17), plen 0: [] -EVENT[10774]: 1.263807025 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[10775]: 1.263819975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10776]: 1.263828700 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[10777]: 1.263836600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10778]: 1.263845150 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[10779]: 1.263857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[10780]: 1.263866250 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[10781]: 1.263874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[10782]: 1.263883275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10783]: 1.263892725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10784]: 1.263901925 - core[0].svIdle(17), plen 0: [] -EVENT[10785]: 1.263916750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10786]: 1.263966075 - core[1].svPrint(26), plen 64: [msg: I (1590) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.263966075] LOG: I (1590) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[10787]: 1.263984500 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.263984500] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10788]: 1.264003050 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[10789]: 1.264015750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10790]: 1.264024550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10791]: 1.264040125 - core[1].svIdle(17), plen 0: [] -EVENT[10792]: 1.264617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10793]: 1.264629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[10794]: 1.264638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10795]: 1.264652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[10796]: 1.264677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 172, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.264677000] HEAP: Allocated 172 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10797]: 1.264689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10798]: 1.264703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10799]: 1.264747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10800]: 1.264769475 - core[0].svPrint(26), plen 72: [msg: I (1591) example: Task[0x3ffb82a0]: allocated 172 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.264769475] LOG: I (1591) example: Task[0x3ffb82a0]: allocated 172 bytes @ 0x3ffb4b10 -EVENT[10801]: 1.264781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10802]: 1.264789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10803]: 1.264800125 - core[1].svIdle(17), plen 0: [] -EVENT[10804]: 1.264810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[10805]: 1.264823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10806]: 1.264832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[10807]: 1.264840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10808]: 1.264849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[10809]: 1.264861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[10810]: 1.264870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[10811]: 1.264878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[10812]: 1.264887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10813]: 1.264896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10814]: 1.264905800 - core[0].svIdle(17), plen 0: [] -EVENT[10815]: 1.264920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10816]: 1.264969875 - core[1].svPrint(26), plen 64: [msg: I (1591) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.264969875] LOG: I (1591) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[10817]: 1.264985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.264985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10818]: 1.265005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[10819]: 1.265018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10820]: 1.265027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10821]: 1.265042900 - core[1].svIdle(17), plen 0: [] -EVENT[10822]: 1.265617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10823]: 1.265629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[10824]: 1.265638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10825]: 1.265652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[10826]: 1.265676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 258, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.265676975] HEAP: Allocated 258 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10827]: 1.265689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10828]: 1.265703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10829]: 1.265747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10830]: 1.265769450 - core[0].svPrint(26), plen 72: [msg: I (1592) example: Task[0x3ffb8600]: allocated 258 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.265769450] LOG: I (1592) example: Task[0x3ffb8600]: allocated 258 bytes @ 0x3ffb4b10 -EVENT[10831]: 1.265778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10832]: 1.265786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10833]: 1.265797075 - core[1].svIdle(17), plen 0: [] -EVENT[10834]: 1.265807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[10835]: 1.265820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10836]: 1.265829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[10837]: 1.265837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10838]: 1.265845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[10839]: 1.265858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[10840]: 1.265866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[10841]: 1.265879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[10842]: 1.265887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10843]: 1.265895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[10844]: 1.265905800 - core[0].svIdle(17), plen 0: [] -EVENT[10845]: 1.265920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[10846]: 1.265970075 - core[1].svPrint(26), plen 64: [msg: I (1592) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.265970075] LOG: I (1592) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[10847]: 1.265985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.265985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[10848]: 1.266003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[10849]: 1.266016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[10850]: 1.266025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10851]: 1.266040625 - core[1].svIdle(17), plen 0: [] -EVENT[10852]: 1.266617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10853]: 1.266629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10854]: 1.266643175 - core[0].svIdle(17), plen 0: [] -EVENT[10855]: 1.266747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10856]: 1.266756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10857]: 1.266770600 - core[1].svIdle(17), plen 0: [] -EVENT[10858]: 1.267617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10859]: 1.267629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10860]: 1.267643125 - core[0].svIdle(17), plen 0: [] -EVENT[10861]: 1.267747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10862]: 1.267757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10863]: 1.267770775 - core[1].svIdle(17), plen 0: [] -EVENT[10864]: 1.268617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10865]: 1.268629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10866]: 1.268643125 - core[0].svIdle(17), plen 0: [] -EVENT[10867]: 1.268747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10868]: 1.268756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10869]: 1.268770600 - core[1].svIdle(17), plen 0: [] -EVENT[10870]: 1.269617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10871]: 1.269629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10872]: 1.269643250 - core[0].svIdle(17), plen 0: [] -EVENT[10873]: 1.269747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10874]: 1.269756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10875]: 1.269770600 - core[1].svIdle(17), plen 0: [] -EVENT[10876]: 1.270617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10877]: 1.270631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10878]: 1.270645550 - core[0].svIdle(17), plen 0: [] -EVENT[10879]: 1.270747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10880]: 1.270756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10881]: 1.270770600 - core[1].svIdle(17), plen 0: [] -EVENT[10882]: 1.271617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10883]: 1.271629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10884]: 1.271643125 - core[0].svIdle(17), plen 0: [] -EVENT[10885]: 1.271747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10886]: 1.271757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10887]: 1.271770775 - core[1].svIdle(17), plen 0: [] -EVENT[10888]: 1.272617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10889]: 1.272629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10890]: 1.272643125 - core[0].svIdle(17), plen 0: [] -EVENT[10891]: 1.272747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10892]: 1.272756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10893]: 1.272770600 - core[1].svIdle(17), plen 0: [] -EVENT[10894]: 1.273617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10895]: 1.273629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10896]: 1.273643250 - core[0].svIdle(17), plen 0: [] -EVENT[10897]: 1.273747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10898]: 1.273756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10899]: 1.273770600 - core[1].svIdle(17), plen 0: [] -EVENT[10900]: 1.274617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10901]: 1.274629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10902]: 1.274643175 - core[0].svIdle(17), plen 0: [] -EVENT[10903]: 1.274747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10904]: 1.274756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10905]: 1.274770600 - core[1].svIdle(17), plen 0: [] -EVENT[10906]: 1.275617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10907]: 1.275629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10908]: 1.275643125 - core[0].svIdle(17), plen 0: [] -EVENT[10909]: 1.275747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10910]: 1.275757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10911]: 1.275770775 - core[1].svIdle(17), plen 0: [] -EVENT[10912]: 1.276617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10913]: 1.276629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10914]: 1.276643125 - core[0].svIdle(17), plen 0: [] -EVENT[10915]: 1.276747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10916]: 1.276756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10917]: 1.276770600 - core[1].svIdle(17), plen 0: [] -EVENT[10918]: 1.277617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10919]: 1.277629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10920]: 1.277643250 - core[0].svIdle(17), plen 0: [] -EVENT[10921]: 1.277747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10922]: 1.277756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10923]: 1.277770600 - core[1].svIdle(17), plen 0: [] -EVENT[10924]: 1.278617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10925]: 1.278629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10926]: 1.278643175 - core[0].svIdle(17), plen 0: [] -EVENT[10927]: 1.278747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10928]: 1.278756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10929]: 1.278770600 - core[1].svIdle(17), plen 0: [] -EVENT[10930]: 1.279617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10931]: 1.279629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10932]: 1.279643125 - core[0].svIdle(17), plen 0: [] -EVENT[10933]: 1.279747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10934]: 1.279757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10935]: 1.279770775 - core[1].svIdle(17), plen 0: [] -EVENT[10936]: 1.280617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10937]: 1.280629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10938]: 1.280643125 - core[0].svIdle(17), plen 0: [] -EVENT[10939]: 1.280747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10940]: 1.280756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10941]: 1.280770600 - core[1].svIdle(17), plen 0: [] -EVENT[10942]: 1.281617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10943]: 1.281629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10944]: 1.281643250 - core[0].svIdle(17), plen 0: [] -EVENT[10945]: 1.281747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10946]: 1.281756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10947]: 1.281770600 - core[1].svIdle(17), plen 0: [] -EVENT[10948]: 1.282617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10949]: 1.282632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10950]: 1.282646225 - core[0].svIdle(17), plen 0: [] -EVENT[10951]: 1.282747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10952]: 1.282756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10953]: 1.282770600 - core[1].svIdle(17), plen 0: [] -EVENT[10954]: 1.283617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10955]: 1.283629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10956]: 1.283643125 - core[0].svIdle(17), plen 0: [] -EVENT[10957]: 1.283747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10958]: 1.283757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10959]: 1.283770775 - core[1].svIdle(17), plen 0: [] -EVENT[10960]: 1.284617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10961]: 1.284629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10962]: 1.284643125 - core[0].svIdle(17), plen 0: [] -EVENT[10963]: 1.284747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10964]: 1.284756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10965]: 1.284770600 - core[1].svIdle(17), plen 0: [] -EVENT[10966]: 1.285617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10967]: 1.285629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10968]: 1.285643250 - core[0].svIdle(17), plen 0: [] -EVENT[10969]: 1.285747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10970]: 1.285756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10971]: 1.285770600 - core[1].svIdle(17), plen 0: [] -EVENT[10972]: 1.286617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10973]: 1.286629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10974]: 1.286643175 - core[0].svIdle(17), plen 0: [] -EVENT[10975]: 1.286747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10976]: 1.286756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10977]: 1.286770600 - core[1].svIdle(17), plen 0: [] -EVENT[10978]: 1.287617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10979]: 1.287629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10980]: 1.287643125 - core[0].svIdle(17), plen 0: [] -EVENT[10981]: 1.287747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10982]: 1.287757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10983]: 1.287770775 - core[1].svIdle(17), plen 0: [] -EVENT[10984]: 1.288617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10985]: 1.288629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10986]: 1.288643125 - core[0].svIdle(17), plen 0: [] -EVENT[10987]: 1.288747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10988]: 1.288756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10989]: 1.288770600 - core[1].svIdle(17), plen 0: [] -EVENT[10990]: 1.289617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10991]: 1.289629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10992]: 1.289643250 - core[0].svIdle(17), plen 0: [] -EVENT[10993]: 1.289747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10994]: 1.289756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[10995]: 1.289770600 - core[1].svIdle(17), plen 0: [] -EVENT[10996]: 1.290617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[10997]: 1.290629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[10998]: 1.290643175 - core[0].svIdle(17), plen 0: [] -EVENT[10999]: 1.290747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11000]: 1.290756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11001]: 1.290770600 - core[1].svIdle(17), plen 0: [] -EVENT[11002]: 1.291617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11003]: 1.291629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11004]: 1.291643125 - core[0].svIdle(17), plen 0: [] -EVENT[11005]: 1.291747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11006]: 1.291757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11007]: 1.291770775 - core[1].svIdle(17), plen 0: [] -EVENT[11008]: 1.292617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11009]: 1.292629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11010]: 1.292643125 - core[0].svIdle(17), plen 0: [] -EVENT[11011]: 1.292747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11012]: 1.292756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11013]: 1.292770600 - core[1].svIdle(17), plen 0: [] -EVENT[11014]: 1.293617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11015]: 1.293629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[11016]: 1.293638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11017]: 1.293652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[11018]: 1.293676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 88, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.293676950] HEAP: Allocated 88 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11019]: 1.293692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11020]: 1.293706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11021]: 1.293747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11022]: 1.293768225 - core[0].svPrint(26), plen 71: [msg: I (1620) example: Task[0x3ffb7f40]: allocated 88 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.293768225] LOG: I (1620) example: Task[0x3ffb7f40]: allocated 88 bytes @ 0x3ffb87e4 -EVENT[11023]: 1.293776475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11024]: 1.293784700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11025]: 1.293795300 - core[1].svIdle(17), plen 0: [] -EVENT[11026]: 1.293806175 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[11027]: 1.293819125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11028]: 1.293827825 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[11029]: 1.293835725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11030]: 1.293844275 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[11031]: 1.293857000 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[11032]: 1.293865375 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[11033]: 1.293873675 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[11034]: 1.293882425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11035]: 1.293891875 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11036]: 1.293901075 - core[0].svIdle(17), plen 0: [] -EVENT[11037]: 1.293915900 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11038]: 1.293965200 - core[1].svPrint(26), plen 64: [msg: I (1620) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.293965200] LOG: I (1620) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[11039]: 1.293983625 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.293983625] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11040]: 1.294002200 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[11041]: 1.294014875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11042]: 1.294023675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11043]: 1.294039250 - core[1].svIdle(17), plen 0: [] -EVENT[11044]: 1.294617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11045]: 1.294629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[11046]: 1.294638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11047]: 1.294652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[11048]: 1.294677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 176, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.294677000] HEAP: Allocated 176 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11049]: 1.294689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11050]: 1.294703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11051]: 1.294747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11052]: 1.294769475 - core[0].svPrint(26), plen 72: [msg: I (1621) example: Task[0x3ffb82a0]: allocated 176 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.294769475] LOG: I (1621) example: Task[0x3ffb82a0]: allocated 176 bytes @ 0x3ffb4b10 -EVENT[11053]: 1.294780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11054]: 1.294789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11055]: 1.294798950 - core[1].svIdle(17), plen 0: [] -EVENT[11056]: 1.294809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[11057]: 1.294822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11058]: 1.294831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[11059]: 1.294839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11060]: 1.294847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[11061]: 1.294860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[11062]: 1.294868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[11063]: 1.294877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[11064]: 1.294886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11065]: 1.294895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11066]: 1.294904625 - core[0].svIdle(17), plen 0: [] -EVENT[11067]: 1.294919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11068]: 1.294968700 - core[1].svPrint(26), plen 64: [msg: I (1621) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.294968700] LOG: I (1621) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[11069]: 1.294984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.294984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11070]: 1.295005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[11071]: 1.295018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11072]: 1.295026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11073]: 1.295042425 - core[1].svIdle(17), plen 0: [] -EVENT[11074]: 1.295617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11075]: 1.295629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[11076]: 1.295638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11077]: 1.295652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[11078]: 1.295676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 264, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.295676975] HEAP: Allocated 264 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11079]: 1.295689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11080]: 1.295703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11081]: 1.295747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11082]: 1.295769450 - core[0].svPrint(26), plen 72: [msg: I (1622) example: Task[0x3ffb8600]: allocated 264 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.295769450] LOG: I (1622) example: Task[0x3ffb8600]: allocated 264 bytes @ 0x3ffb4b10 -EVENT[11083]: 1.295778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11084]: 1.295786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11085]: 1.295797075 - core[1].svIdle(17), plen 0: [] -EVENT[11086]: 1.295807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[11087]: 1.295820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11088]: 1.295829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[11089]: 1.295837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11090]: 1.295845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[11091]: 1.295858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[11092]: 1.295866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[11093]: 1.295879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[11094]: 1.295887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11095]: 1.295895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11096]: 1.295905825 - core[0].svIdle(17), plen 0: [] -EVENT[11097]: 1.295920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11098]: 1.295970100 - core[1].svPrint(26), plen 64: [msg: I (1622) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.295970100] LOG: I (1622) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[11099]: 1.295985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.295985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11100]: 1.296003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[11101]: 1.296016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11102]: 1.296025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11103]: 1.296040650 - core[1].svIdle(17), plen 0: [] -EVENT[11104]: 1.296617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11105]: 1.296629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11106]: 1.296643175 - core[0].svIdle(17), plen 0: [] -EVENT[11107]: 1.296747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11108]: 1.296756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11109]: 1.296770600 - core[1].svIdle(17), plen 0: [] -EVENT[11110]: 1.297617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11111]: 1.297629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11112]: 1.297643125 - core[0].svIdle(17), plen 0: [] -EVENT[11113]: 1.297747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11114]: 1.297757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11115]: 1.297770775 - core[1].svIdle(17), plen 0: [] -EVENT[11116]: 1.298617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11117]: 1.298629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11118]: 1.298643125 - core[0].svIdle(17), plen 0: [] -EVENT[11119]: 1.298747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11120]: 1.298756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11121]: 1.298770600 - core[1].svIdle(17), plen 0: [] -EVENT[11122]: 1.299617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11123]: 1.299629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11124]: 1.299643250 - core[0].svIdle(17), plen 0: [] -EVENT[11125]: 1.299747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11126]: 1.299756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11127]: 1.299770600 - core[1].svIdle(17), plen 0: [] -EVENT[11128]: 1.300617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11129]: 1.300632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11130]: 1.300646225 - core[0].svIdle(17), plen 0: [] -EVENT[11131]: 1.300747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11132]: 1.300756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11133]: 1.300770600 - core[1].svIdle(17), plen 0: [] -EVENT[11134]: 1.301617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11135]: 1.301629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11136]: 1.301643125 - core[0].svIdle(17), plen 0: [] -EVENT[11137]: 1.301747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11138]: 1.301757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11139]: 1.301770775 - core[1].svIdle(17), plen 0: [] -EVENT[11140]: 1.302617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11141]: 1.302629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11142]: 1.302643125 - core[0].svIdle(17), plen 0: [] -EVENT[11143]: 1.302747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11144]: 1.302756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11145]: 1.302770600 - core[1].svIdle(17), plen 0: [] -EVENT[11146]: 1.303617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11147]: 1.303629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11148]: 1.303643250 - core[0].svIdle(17), plen 0: [] -EVENT[11149]: 1.303747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11150]: 1.303756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11151]: 1.303770600 - core[1].svIdle(17), plen 0: [] -EVENT[11152]: 1.304617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11153]: 1.304629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11154]: 1.304643175 - core[0].svIdle(17), plen 0: [] -EVENT[11155]: 1.304747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11156]: 1.304756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11157]: 1.304770600 - core[1].svIdle(17), plen 0: [] -EVENT[11158]: 1.305617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11159]: 1.305629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11160]: 1.305643125 - core[0].svIdle(17), plen 0: [] -EVENT[11161]: 1.305747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11162]: 1.305757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11163]: 1.305770775 - core[1].svIdle(17), plen 0: [] -EVENT[11164]: 1.306617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11165]: 1.306629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11166]: 1.306643125 - core[0].svIdle(17), plen 0: [] -EVENT[11167]: 1.306747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11168]: 1.306756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11169]: 1.306770600 - core[1].svIdle(17), plen 0: [] -EVENT[11170]: 1.307617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11171]: 1.307629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11172]: 1.307643250 - core[0].svIdle(17), plen 0: [] -EVENT[11173]: 1.307747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11174]: 1.307756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11175]: 1.307770600 - core[1].svIdle(17), plen 0: [] -EVENT[11176]: 1.308617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11177]: 1.308629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11178]: 1.308643175 - core[0].svIdle(17), plen 0: [] -EVENT[11179]: 1.308747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11180]: 1.308756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11181]: 1.308770600 - core[1].svIdle(17), plen 0: [] -EVENT[11182]: 1.309617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11183]: 1.309629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11184]: 1.309643125 - core[0].svIdle(17), plen 0: [] -EVENT[11185]: 1.309747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11186]: 1.309757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11187]: 1.309770775 - core[1].svIdle(17), plen 0: [] -EVENT[11188]: 1.310617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11189]: 1.310629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11190]: 1.310643125 - core[0].svIdle(17), plen 0: [] -EVENT[11191]: 1.310747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11192]: 1.310756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11193]: 1.310770600 - core[1].svIdle(17), plen 0: [] -EVENT[11194]: 1.311617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11195]: 1.311629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11196]: 1.311643250 - core[0].svIdle(17), plen 0: [] -EVENT[11197]: 1.311747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11198]: 1.311756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11199]: 1.311770600 - core[1].svIdle(17), plen 0: [] -EVENT[11200]: 1.312617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11201]: 1.312631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11202]: 1.312645550 - core[0].svIdle(17), plen 0: [] -EVENT[11203]: 1.312747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11204]: 1.312756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11205]: 1.312770600 - core[1].svIdle(17), plen 0: [] -EVENT[11206]: 1.313617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11207]: 1.313629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11208]: 1.313643125 - core[0].svIdle(17), plen 0: [] -EVENT[11209]: 1.313747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11210]: 1.313757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11211]: 1.313770775 - core[1].svIdle(17), plen 0: [] -EVENT[11212]: 1.314617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11213]: 1.314629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11214]: 1.314643125 - core[0].svIdle(17), plen 0: [] -EVENT[11215]: 1.314747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11216]: 1.314756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11217]: 1.314770600 - core[1].svIdle(17), plen 0: [] -EVENT[11218]: 1.315617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11219]: 1.315629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11220]: 1.315643250 - core[0].svIdle(17), plen 0: [] -EVENT[11221]: 1.315747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11222]: 1.315756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11223]: 1.315770600 - core[1].svIdle(17), plen 0: [] -EVENT[11224]: 1.316617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11225]: 1.316629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11226]: 1.316643175 - core[0].svIdle(17), plen 0: [] -EVENT[11227]: 1.316747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11228]: 1.316756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11229]: 1.316770600 - core[1].svIdle(17), plen 0: [] -EVENT[11230]: 1.317617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11231]: 1.317629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11232]: 1.317643125 - core[0].svIdle(17), plen 0: [] -EVENT[11233]: 1.317747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11234]: 1.317757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11235]: 1.317770775 - core[1].svIdle(17), plen 0: [] -EVENT[11236]: 1.318617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11237]: 1.318629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11238]: 1.318643125 - core[0].svIdle(17), plen 0: [] -EVENT[11239]: 1.318747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11240]: 1.318756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11241]: 1.318770600 - core[1].svIdle(17), plen 0: [] -EVENT[11242]: 1.319617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11243]: 1.319629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11244]: 1.319643250 - core[0].svIdle(17), plen 0: [] -EVENT[11245]: 1.319747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11246]: 1.319756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11247]: 1.319770600 - core[1].svIdle(17), plen 0: [] -EVENT[11248]: 1.320617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11249]: 1.320629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11250]: 1.320643175 - core[0].svIdle(17), plen 0: [] -EVENT[11251]: 1.320747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11252]: 1.320756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11253]: 1.320770600 - core[1].svIdle(17), plen 0: [] -EVENT[11254]: 1.321617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11255]: 1.321629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11256]: 1.321643125 - core[0].svIdle(17), plen 0: [] -EVENT[11257]: 1.321747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11258]: 1.321757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11259]: 1.321770775 - core[1].svIdle(17), plen 0: [] -EVENT[11260]: 1.322617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11261]: 1.322629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11262]: 1.322643125 - core[0].svIdle(17), plen 0: [] -EVENT[11263]: 1.322747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11264]: 1.322756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11265]: 1.322770600 - core[1].svIdle(17), plen 0: [] -EVENT[11266]: 1.323617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11267]: 1.323629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[11268]: 1.323638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11269]: 1.323652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[11270]: 1.323676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 90, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.323676950] HEAP: Allocated 90 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11271]: 1.323692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11272]: 1.323706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11273]: 1.323747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11274]: 1.323768950 - core[0].svPrint(26), plen 71: [msg: I (1650) example: Task[0x3ffb7f40]: allocated 90 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.323768950] LOG: I (1650) example: Task[0x3ffb7f40]: allocated 90 bytes @ 0x3ffb87e4 -EVENT[11275]: 1.323777425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11276]: 1.323785425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11277]: 1.323796175 - core[1].svIdle(17), plen 0: [] -EVENT[11278]: 1.323807025 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[11279]: 1.323819975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11280]: 1.323828700 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[11281]: 1.323836600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11282]: 1.323845150 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[11283]: 1.323857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[11284]: 1.323866250 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[11285]: 1.323874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[11286]: 1.323883275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11287]: 1.323892725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11288]: 1.323901925 - core[0].svIdle(17), plen 0: [] -EVENT[11289]: 1.323916750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11290]: 1.323966075 - core[1].svPrint(26), plen 64: [msg: I (1650) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.323966075] LOG: I (1650) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[11291]: 1.323984500 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.323984500] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11292]: 1.324003050 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[11293]: 1.324015750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11294]: 1.324024550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11295]: 1.324040125 - core[1].svIdle(17), plen 0: [] -EVENT[11296]: 1.324617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11297]: 1.324629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[11298]: 1.324638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11299]: 1.324652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[11300]: 1.324677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 180, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.324677000] HEAP: Allocated 180 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11301]: 1.324689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11302]: 1.324703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11303]: 1.324747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11304]: 1.324769475 - core[0].svPrint(26), plen 72: [msg: I (1651) example: Task[0x3ffb82a0]: allocated 180 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.324769475] LOG: I (1651) example: Task[0x3ffb82a0]: allocated 180 bytes @ 0x3ffb4b10 -EVENT[11305]: 1.324781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11306]: 1.324789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11307]: 1.324800125 - core[1].svIdle(17), plen 0: [] -EVENT[11308]: 1.324810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[11309]: 1.324823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11310]: 1.324832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[11311]: 1.324840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11312]: 1.324849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[11313]: 1.324861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[11314]: 1.324870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[11315]: 1.324878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[11316]: 1.324887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11317]: 1.324896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11318]: 1.324905800 - core[0].svIdle(17), plen 0: [] -EVENT[11319]: 1.324920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11320]: 1.324969875 - core[1].svPrint(26), plen 64: [msg: I (1651) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.324969875] LOG: I (1651) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[11321]: 1.324985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.324985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11322]: 1.325005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[11323]: 1.325018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11324]: 1.325027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11325]: 1.325042900 - core[1].svIdle(17), plen 0: [] -EVENT[11326]: 1.325617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11327]: 1.325629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[11328]: 1.325638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11329]: 1.325652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[11330]: 1.325676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 270, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.325676975] HEAP: Allocated 270 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11331]: 1.325689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11332]: 1.325703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11333]: 1.325747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11334]: 1.325769450 - core[0].svPrint(26), plen 72: [msg: I (1652) example: Task[0x3ffb8600]: allocated 270 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.325769450] LOG: I (1652) example: Task[0x3ffb8600]: allocated 270 bytes @ 0x3ffb4b10 -EVENT[11335]: 1.325778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11336]: 1.325786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11337]: 1.325797075 - core[1].svIdle(17), plen 0: [] -EVENT[11338]: 1.325807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[11339]: 1.325820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11340]: 1.325829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[11341]: 1.325837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11342]: 1.325845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[11343]: 1.325858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[11344]: 1.325866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[11345]: 1.325879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[11346]: 1.325887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11347]: 1.325895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11348]: 1.325905800 - core[0].svIdle(17), plen 0: [] -EVENT[11349]: 1.325920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11350]: 1.325970075 - core[1].svPrint(26), plen 64: [msg: I (1652) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.325970075] LOG: I (1652) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[11351]: 1.325985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.325985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11352]: 1.326003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[11353]: 1.326016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11354]: 1.326025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11355]: 1.326040625 - core[1].svIdle(17), plen 0: [] -EVENT[11356]: 1.326617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11357]: 1.326629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11358]: 1.326643175 - core[0].svIdle(17), plen 0: [] -EVENT[11359]: 1.326747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11360]: 1.326756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11361]: 1.326770600 - core[1].svIdle(17), plen 0: [] -EVENT[11362]: 1.327617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11363]: 1.327629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11364]: 1.327643125 - core[0].svIdle(17), plen 0: [] -EVENT[11365]: 1.327747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11366]: 1.327757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11367]: 1.327770775 - core[1].svIdle(17), plen 0: [] -EVENT[11368]: 1.328617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11369]: 1.328629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11370]: 1.328643125 - core[0].svIdle(17), plen 0: [] -EVENT[11371]: 1.328747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11372]: 1.328756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11373]: 1.328770600 - core[1].svIdle(17), plen 0: [] -EVENT[11374]: 1.329617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11375]: 1.329629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11376]: 1.329643250 - core[0].svIdle(17), plen 0: [] -EVENT[11377]: 1.329747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11378]: 1.329756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11379]: 1.329770600 - core[1].svIdle(17), plen 0: [] -EVENT[11380]: 1.330617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11381]: 1.330631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11382]: 1.330645550 - core[0].svIdle(17), plen 0: [] -EVENT[11383]: 1.330747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11384]: 1.330756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11385]: 1.330770600 - core[1].svIdle(17), plen 0: [] -EVENT[11386]: 1.331617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11387]: 1.331629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11388]: 1.331643125 - core[0].svIdle(17), plen 0: [] -EVENT[11389]: 1.331747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11390]: 1.331757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11391]: 1.331770775 - core[1].svIdle(17), plen 0: [] -EVENT[11392]: 1.332617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11393]: 1.332629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11394]: 1.332643125 - core[0].svIdle(17), plen 0: [] -EVENT[11395]: 1.332747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11396]: 1.332756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11397]: 1.332770600 - core[1].svIdle(17), plen 0: [] -EVENT[11398]: 1.333617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11399]: 1.333629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11400]: 1.333643250 - core[0].svIdle(17), plen 0: [] -EVENT[11401]: 1.333747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11402]: 1.333756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11403]: 1.333770600 - core[1].svIdle(17), plen 0: [] -EVENT[11404]: 1.334617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11405]: 1.334629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11406]: 1.334643175 - core[0].svIdle(17), plen 0: [] -EVENT[11407]: 1.334747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11408]: 1.334756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11409]: 1.334770600 - core[1].svIdle(17), plen 0: [] -EVENT[11410]: 1.335617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11411]: 1.335629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11412]: 1.335643125 - core[0].svIdle(17), plen 0: [] -EVENT[11413]: 1.335747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11414]: 1.335757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11415]: 1.335770775 - core[1].svIdle(17), plen 0: [] -EVENT[11416]: 1.336617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11417]: 1.336629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11418]: 1.336643125 - core[0].svIdle(17), plen 0: [] -EVENT[11419]: 1.336747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11420]: 1.336756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11421]: 1.336770600 - core[1].svIdle(17), plen 0: [] -EVENT[11422]: 1.337617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11423]: 1.337629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11424]: 1.337643250 - core[0].svIdle(17), plen 0: [] -EVENT[11425]: 1.337747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11426]: 1.337756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11427]: 1.337770600 - core[1].svIdle(17), plen 0: [] -EVENT[11428]: 1.338617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11429]: 1.338629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11430]: 1.338643175 - core[0].svIdle(17), plen 0: [] -EVENT[11431]: 1.338747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11432]: 1.338756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11433]: 1.338770600 - core[1].svIdle(17), plen 0: [] -EVENT[11434]: 1.339617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11435]: 1.339629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11436]: 1.339643125 - core[0].svIdle(17), plen 0: [] -EVENT[11437]: 1.339747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11438]: 1.339757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11439]: 1.339770775 - core[1].svIdle(17), plen 0: [] -EVENT[11440]: 1.340617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11441]: 1.340629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11442]: 1.340643125 - core[0].svIdle(17), plen 0: [] -EVENT[11443]: 1.340747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11444]: 1.340756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11445]: 1.340770600 - core[1].svIdle(17), plen 0: [] -EVENT[11446]: 1.341617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11447]: 1.341629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11448]: 1.341643250 - core[0].svIdle(17), plen 0: [] -EVENT[11449]: 1.341747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11450]: 1.341756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11451]: 1.341770600 - core[1].svIdle(17), plen 0: [] -EVENT[11452]: 1.342617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11453]: 1.342632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11454]: 1.342646225 - core[0].svIdle(17), plen 0: [] -EVENT[11455]: 1.342747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11456]: 1.342756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11457]: 1.342770600 - core[1].svIdle(17), plen 0: [] -EVENT[11458]: 1.343617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11459]: 1.343629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11460]: 1.343643125 - core[0].svIdle(17), plen 0: [] -EVENT[11461]: 1.343747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11462]: 1.343757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11463]: 1.343770775 - core[1].svIdle(17), plen 0: [] -EVENT[11464]: 1.344617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11465]: 1.344629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11466]: 1.344643125 - core[0].svIdle(17), plen 0: [] -EVENT[11467]: 1.344747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11468]: 1.344756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11469]: 1.344770600 - core[1].svIdle(17), plen 0: [] -EVENT[11470]: 1.345617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11471]: 1.345629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11472]: 1.345643250 - core[0].svIdle(17), plen 0: [] -EVENT[11473]: 1.345747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11474]: 1.345756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11475]: 1.345770600 - core[1].svIdle(17), plen 0: [] -EVENT[11476]: 1.346617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11477]: 1.346629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11478]: 1.346643175 - core[0].svIdle(17), plen 0: [] -EVENT[11479]: 1.346747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11480]: 1.346756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11481]: 1.346770600 - core[1].svIdle(17), plen 0: [] -EVENT[11482]: 1.347617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11483]: 1.347629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11484]: 1.347643125 - core[0].svIdle(17), plen 0: [] -EVENT[11485]: 1.347747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11486]: 1.347757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11487]: 1.347770775 - core[1].svIdle(17), plen 0: [] -EVENT[11488]: 1.348617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11489]: 1.348629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11490]: 1.348643125 - core[0].svIdle(17), plen 0: [] -EVENT[11491]: 1.348747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11492]: 1.348756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11493]: 1.348770600 - core[1].svIdle(17), plen 0: [] -EVENT[11494]: 1.349617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11495]: 1.349629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11496]: 1.349643250 - core[0].svIdle(17), plen 0: [] -EVENT[11497]: 1.349747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11498]: 1.349756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11499]: 1.349770600 - core[1].svIdle(17), plen 0: [] -EVENT[11500]: 1.350617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11501]: 1.350629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11502]: 1.350643175 - core[0].svIdle(17), plen 0: [] -EVENT[11503]: 1.350747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11504]: 1.350756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11505]: 1.350770600 - core[1].svIdle(17), plen 0: [] -EVENT[11506]: 1.351617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11507]: 1.351629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11508]: 1.351643125 - core[0].svIdle(17), plen 0: [] -EVENT[11509]: 1.351747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11510]: 1.351757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11511]: 1.351770775 - core[1].svIdle(17), plen 0: [] -EVENT[11512]: 1.352617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11513]: 1.352629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11514]: 1.352643125 - core[0].svIdle(17), plen 0: [] -EVENT[11515]: 1.352747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11516]: 1.352756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11517]: 1.352770600 - core[1].svIdle(17), plen 0: [] -EVENT[11518]: 1.353617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11519]: 1.353629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[11520]: 1.353638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11521]: 1.353652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[11522]: 1.353676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 92, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.353676950] HEAP: Allocated 92 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11523]: 1.353692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11524]: 1.353706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11525]: 1.353747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11526]: 1.353768225 - core[0].svPrint(26), plen 71: [msg: I (1680) example: Task[0x3ffb7f40]: allocated 92 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.353768225] LOG: I (1680) example: Task[0x3ffb7f40]: allocated 92 bytes @ 0x3ffb87e4 -EVENT[11527]: 1.353776475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11528]: 1.353784700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11529]: 1.353795300 - core[1].svIdle(17), plen 0: [] -EVENT[11530]: 1.353806175 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[11531]: 1.353819125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11532]: 1.353827825 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[11533]: 1.353835725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11534]: 1.353844275 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[11535]: 1.353857000 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[11536]: 1.353865375 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[11537]: 1.353873675 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[11538]: 1.353882425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11539]: 1.353891875 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11540]: 1.353901075 - core[0].svIdle(17), plen 0: [] -EVENT[11541]: 1.353915900 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11542]: 1.353965200 - core[1].svPrint(26), plen 64: [msg: I (1680) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.353965200] LOG: I (1680) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[11543]: 1.353983625 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.353983625] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11544]: 1.354002200 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[11545]: 1.354014875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11546]: 1.354023675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11547]: 1.354039250 - core[1].svIdle(17), plen 0: [] -EVENT[11548]: 1.354617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11549]: 1.354629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[11550]: 1.354638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11551]: 1.354652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[11552]: 1.354677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 184, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.354677000] HEAP: Allocated 184 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11553]: 1.354689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11554]: 1.354703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11555]: 1.354747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11556]: 1.354769475 - core[0].svPrint(26), plen 72: [msg: I (1681) example: Task[0x3ffb82a0]: allocated 184 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.354769475] LOG: I (1681) example: Task[0x3ffb82a0]: allocated 184 bytes @ 0x3ffb4b10 -EVENT[11557]: 1.354780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11558]: 1.354789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11559]: 1.354798950 - core[1].svIdle(17), plen 0: [] -EVENT[11560]: 1.354809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[11561]: 1.354822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11562]: 1.354831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[11563]: 1.354839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11564]: 1.354847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[11565]: 1.354860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[11566]: 1.354868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[11567]: 1.354877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[11568]: 1.354886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11569]: 1.354895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11570]: 1.354904625 - core[0].svIdle(17), plen 0: [] -EVENT[11571]: 1.354919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11572]: 1.354968700 - core[1].svPrint(26), plen 64: [msg: I (1681) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.354968700] LOG: I (1681) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[11573]: 1.354984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.354984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11574]: 1.355005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[11575]: 1.355018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11576]: 1.355026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11577]: 1.355042425 - core[1].svIdle(17), plen 0: [] -EVENT[11578]: 1.355617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11579]: 1.355629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[11580]: 1.355638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11581]: 1.355652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[11582]: 1.355676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 276, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.355676975] HEAP: Allocated 276 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11583]: 1.355689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11584]: 1.355703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11585]: 1.355747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11586]: 1.355769450 - core[0].svPrint(26), plen 72: [msg: I (1682) example: Task[0x3ffb8600]: allocated 276 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.355769450] LOG: I (1682) example: Task[0x3ffb8600]: allocated 276 bytes @ 0x3ffb4b10 -EVENT[11587]: 1.355778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11588]: 1.355786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11589]: 1.355797075 - core[1].svIdle(17), plen 0: [] -EVENT[11590]: 1.355807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[11591]: 1.355820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11592]: 1.355829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[11593]: 1.355837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11594]: 1.355845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[11595]: 1.355858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[11596]: 1.355866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[11597]: 1.355879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[11598]: 1.355887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11599]: 1.355895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11600]: 1.355905825 - core[0].svIdle(17), plen 0: [] -EVENT[11601]: 1.355920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11602]: 1.355970100 - core[1].svPrint(26), plen 64: [msg: I (1682) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.355970100] LOG: I (1682) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[11603]: 1.355985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.355985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11604]: 1.356003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[11605]: 1.356016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11606]: 1.356025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11607]: 1.356040650 - core[1].svIdle(17), plen 0: [] -EVENT[11608]: 1.356617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11609]: 1.356629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11610]: 1.356643175 - core[0].svIdle(17), plen 0: [] -EVENT[11611]: 1.356747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11612]: 1.356756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11613]: 1.356770600 - core[1].svIdle(17), plen 0: [] -EVENT[11614]: 1.357617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11615]: 1.357629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11616]: 1.357643125 - core[0].svIdle(17), plen 0: [] -EVENT[11617]: 1.357747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11618]: 1.357757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11619]: 1.357770775 - core[1].svIdle(17), plen 0: [] -EVENT[11620]: 1.358617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11621]: 1.358629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11622]: 1.358643125 - core[0].svIdle(17), plen 0: [] -EVENT[11623]: 1.358747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11624]: 1.358756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11625]: 1.358770600 - core[1].svIdle(17), plen 0: [] -EVENT[11626]: 1.359617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11627]: 1.359629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11628]: 1.359643250 - core[0].svIdle(17), plen 0: [] -EVENT[11629]: 1.359747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11630]: 1.359756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11631]: 1.359770600 - core[1].svIdle(17), plen 0: [] -EVENT[11632]: 1.360617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11633]: 1.360632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11634]: 1.360646225 - core[0].svIdle(17), plen 0: [] -EVENT[11635]: 1.360747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11636]: 1.360756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11637]: 1.360770600 - core[1].svIdle(17), plen 0: [] -EVENT[11638]: 1.361617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11639]: 1.361629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11640]: 1.361643125 - core[0].svIdle(17), plen 0: [] -EVENT[11641]: 1.361747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11642]: 1.361757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11643]: 1.361770775 - core[1].svIdle(17), plen 0: [] -EVENT[11644]: 1.362617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11645]: 1.362629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11646]: 1.362643125 - core[0].svIdle(17), plen 0: [] -EVENT[11647]: 1.362747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11648]: 1.362756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11649]: 1.362770600 - core[1].svIdle(17), plen 0: [] -EVENT[11650]: 1.363617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11651]: 1.363629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11652]: 1.363643250 - core[0].svIdle(17), plen 0: [] -EVENT[11653]: 1.363747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11654]: 1.363756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11655]: 1.363770600 - core[1].svIdle(17), plen 0: [] -EVENT[11656]: 1.364617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11657]: 1.364629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11658]: 1.364643175 - core[0].svIdle(17), plen 0: [] -EVENT[11659]: 1.364747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11660]: 1.364756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11661]: 1.364770600 - core[1].svIdle(17), plen 0: [] -EVENT[11662]: 1.365617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11663]: 1.365629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11664]: 1.365643125 - core[0].svIdle(17), plen 0: [] -EVENT[11665]: 1.365747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11666]: 1.365757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11667]: 1.365770775 - core[1].svIdle(17), plen 0: [] -EVENT[11668]: 1.366617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11669]: 1.366629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11670]: 1.366643125 - core[0].svIdle(17), plen 0: [] -EVENT[11671]: 1.366747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11672]: 1.366756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11673]: 1.366770600 - core[1].svIdle(17), plen 0: [] -EVENT[11674]: 1.367617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11675]: 1.367629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11676]: 1.367643250 - core[0].svIdle(17), plen 0: [] -EVENT[11677]: 1.367747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11678]: 1.367756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11679]: 1.367770600 - core[1].svIdle(17), plen 0: [] -EVENT[11680]: 1.368617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11681]: 1.368629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11682]: 1.368643175 - core[0].svIdle(17), plen 0: [] -EVENT[11683]: 1.368747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11684]: 1.368756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11685]: 1.368770600 - core[1].svIdle(17), plen 0: [] -EVENT[11686]: 1.369617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11687]: 1.369629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11688]: 1.369643125 - core[0].svIdle(17), plen 0: [] -EVENT[11689]: 1.369747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11690]: 1.369757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11691]: 1.369770775 - core[1].svIdle(17), plen 0: [] -EVENT[11692]: 1.370617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11693]: 1.370629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11694]: 1.370643125 - core[0].svIdle(17), plen 0: [] -EVENT[11695]: 1.370747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11696]: 1.370756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11697]: 1.370770600 - core[1].svIdle(17), plen 0: [] -EVENT[11698]: 1.371617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11699]: 1.371629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11700]: 1.371643250 - core[0].svIdle(17), plen 0: [] -EVENT[11701]: 1.371747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11702]: 1.371756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11703]: 1.371770600 - core[1].svIdle(17), plen 0: [] -EVENT[11704]: 1.372617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11705]: 1.372631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11706]: 1.372645550 - core[0].svIdle(17), plen 0: [] -EVENT[11707]: 1.372747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11708]: 1.372756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11709]: 1.372770600 - core[1].svIdle(17), plen 0: [] -EVENT[11710]: 1.373617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11711]: 1.373629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11712]: 1.373643125 - core[0].svIdle(17), plen 0: [] -EVENT[11713]: 1.373747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11714]: 1.373757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11715]: 1.373770775 - core[1].svIdle(17), plen 0: [] -EVENT[11716]: 1.374617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11717]: 1.374629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11718]: 1.374643125 - core[0].svIdle(17), plen 0: [] -EVENT[11719]: 1.374747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11720]: 1.374756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11721]: 1.374770600 - core[1].svIdle(17), plen 0: [] -EVENT[11722]: 1.375617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11723]: 1.375629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11724]: 1.375643250 - core[0].svIdle(17), plen 0: [] -EVENT[11725]: 1.375747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11726]: 1.375756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11727]: 1.375770600 - core[1].svIdle(17), plen 0: [] -EVENT[11728]: 1.376617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11729]: 1.376629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11730]: 1.376643175 - core[0].svIdle(17), plen 0: [] -EVENT[11731]: 1.376747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11732]: 1.376756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11733]: 1.376770600 - core[1].svIdle(17), plen 0: [] -EVENT[11734]: 1.377617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11735]: 1.377629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11736]: 1.377643125 - core[0].svIdle(17), plen 0: [] -EVENT[11737]: 1.377747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11738]: 1.377757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11739]: 1.377770775 - core[1].svIdle(17), plen 0: [] -EVENT[11740]: 1.378617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11741]: 1.378629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11742]: 1.378643125 - core[0].svIdle(17), plen 0: [] -EVENT[11743]: 1.378747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11744]: 1.378756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11745]: 1.378770600 - core[1].svIdle(17), plen 0: [] -EVENT[11746]: 1.379617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11747]: 1.379629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11748]: 1.379643250 - core[0].svIdle(17), plen 0: [] -EVENT[11749]: 1.379747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11750]: 1.379756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11751]: 1.379770600 - core[1].svIdle(17), plen 0: [] -EVENT[11752]: 1.380617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11753]: 1.380629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11754]: 1.380643175 - core[0].svIdle(17), plen 0: [] -EVENT[11755]: 1.380747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11756]: 1.380756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11757]: 1.380770600 - core[1].svIdle(17), plen 0: [] -EVENT[11758]: 1.381617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11759]: 1.381629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11760]: 1.381643125 - core[0].svIdle(17), plen 0: [] -EVENT[11761]: 1.381747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11762]: 1.381757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11763]: 1.381770775 - core[1].svIdle(17), plen 0: [] -EVENT[11764]: 1.382617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11765]: 1.382629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11766]: 1.382643125 - core[0].svIdle(17), plen 0: [] -EVENT[11767]: 1.382747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11768]: 1.382756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11769]: 1.382770600 - core[1].svIdle(17), plen 0: [] -EVENT[11770]: 1.383617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11771]: 1.383629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[11772]: 1.383638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11773]: 1.383652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[11774]: 1.383676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 94, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.383676950] HEAP: Allocated 94 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11775]: 1.383692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11776]: 1.383706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11777]: 1.383747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11778]: 1.383768950 - core[0].svPrint(26), plen 71: [msg: I (1710) example: Task[0x3ffb7f40]: allocated 94 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.383768950] LOG: I (1710) example: Task[0x3ffb7f40]: allocated 94 bytes @ 0x3ffb87e4 -EVENT[11779]: 1.383777425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11780]: 1.383785425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11781]: 1.383796175 - core[1].svIdle(17), plen 0: [] -EVENT[11782]: 1.383807025 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[11783]: 1.383819975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11784]: 1.383828700 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[11785]: 1.383836600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11786]: 1.383845150 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[11787]: 1.383857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[11788]: 1.383866250 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[11789]: 1.383874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[11790]: 1.383883275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11791]: 1.383892725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11792]: 1.383901925 - core[0].svIdle(17), plen 0: [] -EVENT[11793]: 1.383916750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11794]: 1.383966075 - core[1].svPrint(26), plen 64: [msg: I (1710) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.383966075] LOG: I (1710) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[11795]: 1.383984500 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.383984500] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11796]: 1.384003050 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[11797]: 1.384015750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11798]: 1.384024550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11799]: 1.384040125 - core[1].svIdle(17), plen 0: [] -EVENT[11800]: 1.384617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11801]: 1.384629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[11802]: 1.384638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11803]: 1.384652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[11804]: 1.384677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 188, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.384677000] HEAP: Allocated 188 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11805]: 1.384689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11806]: 1.384703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11807]: 1.384747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11808]: 1.384769475 - core[0].svPrint(26), plen 72: [msg: I (1711) example: Task[0x3ffb82a0]: allocated 188 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.384769475] LOG: I (1711) example: Task[0x3ffb82a0]: allocated 188 bytes @ 0x3ffb4b10 -EVENT[11809]: 1.384781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11810]: 1.384789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11811]: 1.384800125 - core[1].svIdle(17), plen 0: [] -EVENT[11812]: 1.384810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[11813]: 1.384823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11814]: 1.384832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[11815]: 1.384840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11816]: 1.384849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[11817]: 1.384861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[11818]: 1.384870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[11819]: 1.384878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[11820]: 1.384887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11821]: 1.384896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11822]: 1.384905800 - core[0].svIdle(17), plen 0: [] -EVENT[11823]: 1.384920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11824]: 1.384969875 - core[1].svPrint(26), plen 64: [msg: I (1711) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.384969875] LOG: I (1711) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[11825]: 1.384985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.384985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11826]: 1.385007925 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[11827]: 1.385020600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11828]: 1.385029400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11829]: 1.385044975 - core[1].svIdle(17), plen 0: [] -EVENT[11830]: 1.385617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11831]: 1.385629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[11832]: 1.385638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11833]: 1.385652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[11834]: 1.385676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 282, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.385676975] HEAP: Allocated 282 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11835]: 1.385689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11836]: 1.385703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11837]: 1.385747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11838]: 1.385769450 - core[0].svPrint(26), plen 72: [msg: I (1712) example: Task[0x3ffb8600]: allocated 282 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.385769450] LOG: I (1712) example: Task[0x3ffb8600]: allocated 282 bytes @ 0x3ffb4b10 -EVENT[11839]: 1.385778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11840]: 1.385786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11841]: 1.385797075 - core[1].svIdle(17), plen 0: [] -EVENT[11842]: 1.385807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[11843]: 1.385820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11844]: 1.385829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[11845]: 1.385837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11846]: 1.385845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[11847]: 1.385858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[11848]: 1.385866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[11849]: 1.385879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[11850]: 1.385887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11851]: 1.385895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[11852]: 1.385905825 - core[0].svIdle(17), plen 0: [] -EVENT[11853]: 1.385920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[11854]: 1.385970100 - core[1].svPrint(26), plen 64: [msg: I (1712) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.385970100] LOG: I (1712) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[11855]: 1.385985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.385985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[11856]: 1.386003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[11857]: 1.386016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[11858]: 1.386025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11859]: 1.386040650 - core[1].svIdle(17), plen 0: [] -EVENT[11860]: 1.386617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11861]: 1.386629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11862]: 1.386643175 - core[0].svIdle(17), plen 0: [] -EVENT[11863]: 1.386747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11864]: 1.386756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11865]: 1.386770600 - core[1].svIdle(17), plen 0: [] -EVENT[11866]: 1.387617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11867]: 1.387629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11868]: 1.387643125 - core[0].svIdle(17), plen 0: [] -EVENT[11869]: 1.387747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11870]: 1.387757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11871]: 1.387770775 - core[1].svIdle(17), plen 0: [] -EVENT[11872]: 1.388617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11873]: 1.388629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11874]: 1.388643125 - core[0].svIdle(17), plen 0: [] -EVENT[11875]: 1.388747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11876]: 1.388756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11877]: 1.388770600 - core[1].svIdle(17), plen 0: [] -EVENT[11878]: 1.389617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11879]: 1.389629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11880]: 1.389643250 - core[0].svIdle(17), plen 0: [] -EVENT[11881]: 1.389747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11882]: 1.389756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11883]: 1.389770600 - core[1].svIdle(17), plen 0: [] -EVENT[11884]: 1.390617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11885]: 1.390632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11886]: 1.390646225 - core[0].svIdle(17), plen 0: [] -EVENT[11887]: 1.390747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11888]: 1.390756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11889]: 1.390770600 - core[1].svIdle(17), plen 0: [] -EVENT[11890]: 1.391617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11891]: 1.391629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11892]: 1.391643125 - core[0].svIdle(17), plen 0: [] -EVENT[11893]: 1.391747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11894]: 1.391757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11895]: 1.391770775 - core[1].svIdle(17), plen 0: [] -EVENT[11896]: 1.392617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11897]: 1.392629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11898]: 1.392643125 - core[0].svIdle(17), plen 0: [] -EVENT[11899]: 1.392747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11900]: 1.392756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11901]: 1.392770600 - core[1].svIdle(17), plen 0: [] -EVENT[11902]: 1.393617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11903]: 1.393629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11904]: 1.393643250 - core[0].svIdle(17), plen 0: [] -EVENT[11905]: 1.393747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11906]: 1.393756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11907]: 1.393770600 - core[1].svIdle(17), plen 0: [] -EVENT[11908]: 1.394617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11909]: 1.394629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11910]: 1.394643175 - core[0].svIdle(17), plen 0: [] -EVENT[11911]: 1.394747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11912]: 1.394756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11913]: 1.394770600 - core[1].svIdle(17), plen 0: [] -EVENT[11914]: 1.395617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11915]: 1.395629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11916]: 1.395643125 - core[0].svIdle(17), plen 0: [] -EVENT[11917]: 1.395747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11918]: 1.395757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11919]: 1.395770775 - core[1].svIdle(17), plen 0: [] -EVENT[11920]: 1.396617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11921]: 1.396629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11922]: 1.396643125 - core[0].svIdle(17), plen 0: [] -EVENT[11923]: 1.396747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11924]: 1.396756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11925]: 1.396770600 - core[1].svIdle(17), plen 0: [] -EVENT[11926]: 1.397617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11927]: 1.397629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11928]: 1.397643250 - core[0].svIdle(17), plen 0: [] -EVENT[11929]: 1.397747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11930]: 1.397756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11931]: 1.397770600 - core[1].svIdle(17), plen 0: [] -EVENT[11932]: 1.398617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11933]: 1.398629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11934]: 1.398643175 - core[0].svIdle(17), plen 0: [] -EVENT[11935]: 1.398747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11936]: 1.398756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11937]: 1.398770600 - core[1].svIdle(17), plen 0: [] -EVENT[11938]: 1.399617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11939]: 1.399629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11940]: 1.399643125 - core[0].svIdle(17), plen 0: [] -EVENT[11941]: 1.399747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11942]: 1.399757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11943]: 1.399770775 - core[1].svIdle(17), plen 0: [] -EVENT[11944]: 1.400617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11945]: 1.400629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11946]: 1.400643125 - core[0].svIdle(17), plen 0: [] -EVENT[11947]: 1.400747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11948]: 1.400756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11949]: 1.400770600 - core[1].svIdle(17), plen 0: [] -EVENT[11950]: 1.401617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11951]: 1.401629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11952]: 1.401643250 - core[0].svIdle(17), plen 0: [] -EVENT[11953]: 1.401747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11954]: 1.401756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11955]: 1.401770600 - core[1].svIdle(17), plen 0: [] -EVENT[11956]: 1.402617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11957]: 1.402631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11958]: 1.402645550 - core[0].svIdle(17), plen 0: [] -EVENT[11959]: 1.402747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11960]: 1.402756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11961]: 1.402770600 - core[1].svIdle(17), plen 0: [] -EVENT[11962]: 1.403617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11963]: 1.403629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11964]: 1.403643125 - core[0].svIdle(17), plen 0: [] -EVENT[11965]: 1.403747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11966]: 1.403757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11967]: 1.403770775 - core[1].svIdle(17), plen 0: [] -EVENT[11968]: 1.404617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11969]: 1.404629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11970]: 1.404643125 - core[0].svIdle(17), plen 0: [] -EVENT[11971]: 1.404747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11972]: 1.404756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11973]: 1.404770600 - core[1].svIdle(17), plen 0: [] -EVENT[11974]: 1.405617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11975]: 1.405629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11976]: 1.405643250 - core[0].svIdle(17), plen 0: [] -EVENT[11977]: 1.405747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11978]: 1.405756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11979]: 1.405770600 - core[1].svIdle(17), plen 0: [] -EVENT[11980]: 1.406617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11981]: 1.406629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11982]: 1.406643175 - core[0].svIdle(17), plen 0: [] -EVENT[11983]: 1.406747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11984]: 1.406756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11985]: 1.406770600 - core[1].svIdle(17), plen 0: [] -EVENT[11986]: 1.407617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11987]: 1.407629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11988]: 1.407643125 - core[0].svIdle(17), plen 0: [] -EVENT[11989]: 1.407747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11990]: 1.407757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11991]: 1.407770775 - core[1].svIdle(17), plen 0: [] -EVENT[11992]: 1.408617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11993]: 1.408629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[11994]: 1.408643125 - core[0].svIdle(17), plen 0: [] -EVENT[11995]: 1.408747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11996]: 1.408756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[11997]: 1.408770600 - core[1].svIdle(17), plen 0: [] -EVENT[11998]: 1.409617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[11999]: 1.409629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12000]: 1.409643250 - core[0].svIdle(17), plen 0: [] -EVENT[12001]: 1.409747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12002]: 1.409756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12003]: 1.409770600 - core[1].svIdle(17), plen 0: [] -EVENT[12004]: 1.410617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12005]: 1.410629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12006]: 1.410643175 - core[0].svIdle(17), plen 0: [] -EVENT[12007]: 1.410747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12008]: 1.410756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12009]: 1.410770600 - core[1].svIdle(17), plen 0: [] -EVENT[12010]: 1.411617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12011]: 1.411629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12012]: 1.411643125 - core[0].svIdle(17), plen 0: [] -EVENT[12013]: 1.411747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12014]: 1.411757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12015]: 1.411770775 - core[1].svIdle(17), plen 0: [] -EVENT[12016]: 1.412617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12017]: 1.412629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12018]: 1.412643125 - core[0].svIdle(17), plen 0: [] -EVENT[12019]: 1.412747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12020]: 1.412756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12021]: 1.412770600 - core[1].svIdle(17), plen 0: [] -EVENT[12022]: 1.413617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12023]: 1.413629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[12024]: 1.413638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12025]: 1.413652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[12026]: 1.413676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 96, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.413676950] HEAP: Allocated 96 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12027]: 1.413692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12028]: 1.413706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12029]: 1.413747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12030]: 1.413768950 - core[0].svPrint(26), plen 71: [msg: I (1740) example: Task[0x3ffb7f40]: allocated 96 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.413768950] LOG: I (1740) example: Task[0x3ffb7f40]: allocated 96 bytes @ 0x3ffb87e4 -EVENT[12031]: 1.413777425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12032]: 1.413785425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12033]: 1.413796175 - core[1].svIdle(17), plen 0: [] -EVENT[12034]: 1.413807025 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[12035]: 1.413819975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12036]: 1.413828700 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[12037]: 1.413836600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12038]: 1.413845150 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[12039]: 1.413857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[12040]: 1.413866250 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[12041]: 1.413874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[12042]: 1.413883275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12043]: 1.413892725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12044]: 1.413901925 - core[0].svIdle(17), plen 0: [] -EVENT[12045]: 1.413916750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12046]: 1.413966075 - core[1].svPrint(26), plen 64: [msg: I (1740) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.413966075] LOG: I (1740) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[12047]: 1.413984500 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.413984500] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12048]: 1.414003050 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[12049]: 1.414015750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12050]: 1.414024550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12051]: 1.414040125 - core[1].svIdle(17), plen 0: [] -EVENT[12052]: 1.414617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12053]: 1.414629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[12054]: 1.414638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12055]: 1.414652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[12056]: 1.414677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 192, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.414677000] HEAP: Allocated 192 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12057]: 1.414689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12058]: 1.414703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12059]: 1.414747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12060]: 1.414769475 - core[0].svPrint(26), plen 72: [msg: I (1741) example: Task[0x3ffb82a0]: allocated 192 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.414769475] LOG: I (1741) example: Task[0x3ffb82a0]: allocated 192 bytes @ 0x3ffb4b10 -EVENT[12061]: 1.414781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12062]: 1.414789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12063]: 1.414800125 - core[1].svIdle(17), plen 0: [] -EVENT[12064]: 1.414810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[12065]: 1.414823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12066]: 1.414832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[12067]: 1.414840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12068]: 1.414849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[12069]: 1.414861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[12070]: 1.414870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[12071]: 1.414878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[12072]: 1.414887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12073]: 1.414896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12074]: 1.414905800 - core[0].svIdle(17), plen 0: [] -EVENT[12075]: 1.414920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12076]: 1.414969875 - core[1].svPrint(26), plen 64: [msg: I (1741) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.414969875] LOG: I (1741) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[12077]: 1.414985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.414985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12078]: 1.415005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[12079]: 1.415018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12080]: 1.415027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12081]: 1.415042900 - core[1].svIdle(17), plen 0: [] -EVENT[12082]: 1.415617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12083]: 1.415629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[12084]: 1.415638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12085]: 1.415652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[12086]: 1.415676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 288, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.415676975] HEAP: Allocated 288 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12087]: 1.415689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12088]: 1.415703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12089]: 1.415747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12090]: 1.415769450 - core[0].svPrint(26), plen 72: [msg: I (1742) example: Task[0x3ffb8600]: allocated 288 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.415769450] LOG: I (1742) example: Task[0x3ffb8600]: allocated 288 bytes @ 0x3ffb4b10 -EVENT[12091]: 1.415778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12092]: 1.415786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12093]: 1.415797075 - core[1].svIdle(17), plen 0: [] -EVENT[12094]: 1.415807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[12095]: 1.415820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12096]: 1.415829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[12097]: 1.415837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12098]: 1.415845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[12099]: 1.415858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[12100]: 1.415866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[12101]: 1.415879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[12102]: 1.415887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12103]: 1.415895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12104]: 1.415905800 - core[0].svIdle(17), plen 0: [] -EVENT[12105]: 1.415920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12106]: 1.415970075 - core[1].svPrint(26), plen 64: [msg: I (1742) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.415970075] LOG: I (1742) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[12107]: 1.415985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.415985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12108]: 1.416003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[12109]: 1.416016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12110]: 1.416025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12111]: 1.416040625 - core[1].svIdle(17), plen 0: [] -EVENT[12112]: 1.416617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12113]: 1.416629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12114]: 1.416643175 - core[0].svIdle(17), plen 0: [] -EVENT[12115]: 1.416747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12116]: 1.416756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12117]: 1.416770600 - core[1].svIdle(17), plen 0: [] -EVENT[12118]: 1.417617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12119]: 1.417629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12120]: 1.417643125 - core[0].svIdle(17), plen 0: [] -EVENT[12121]: 1.417747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12122]: 1.417757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12123]: 1.417770775 - core[1].svIdle(17), plen 0: [] -EVENT[12124]: 1.418617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12125]: 1.418629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12126]: 1.418643125 - core[0].svIdle(17), plen 0: [] -EVENT[12127]: 1.418747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12128]: 1.418756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12129]: 1.418770600 - core[1].svIdle(17), plen 0: [] -EVENT[12130]: 1.419617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12131]: 1.419629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12132]: 1.419643250 - core[0].svIdle(17), plen 0: [] -EVENT[12133]: 1.419747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12134]: 1.419756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12135]: 1.419770600 - core[1].svIdle(17), plen 0: [] -EVENT[12136]: 1.420617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12137]: 1.420631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12138]: 1.420645550 - core[0].svIdle(17), plen 0: [] -EVENT[12139]: 1.420747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12140]: 1.420756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12141]: 1.420770600 - core[1].svIdle(17), plen 0: [] -EVENT[12142]: 1.421617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12143]: 1.421629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12144]: 1.421643125 - core[0].svIdle(17), plen 0: [] -EVENT[12145]: 1.421747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12146]: 1.421757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12147]: 1.421770775 - core[1].svIdle(17), plen 0: [] -EVENT[12148]: 1.422617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12149]: 1.422629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12150]: 1.422643125 - core[0].svIdle(17), plen 0: [] -EVENT[12151]: 1.422747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12152]: 1.422756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12153]: 1.422770600 - core[1].svIdle(17), plen 0: [] -EVENT[12154]: 1.423617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12155]: 1.423629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12156]: 1.423643250 - core[0].svIdle(17), plen 0: [] -EVENT[12157]: 1.423747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12158]: 1.423756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12159]: 1.423770600 - core[1].svIdle(17), plen 0: [] -EVENT[12160]: 1.424617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12161]: 1.424629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12162]: 1.424643175 - core[0].svIdle(17), plen 0: [] -EVENT[12163]: 1.424747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12164]: 1.424756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12165]: 1.424770600 - core[1].svIdle(17), plen 0: [] -EVENT[12166]: 1.425617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12167]: 1.425629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12168]: 1.425643125 - core[0].svIdle(17), plen 0: [] -EVENT[12169]: 1.425747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12170]: 1.425757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12171]: 1.425770775 - core[1].svIdle(17), plen 0: [] -EVENT[12172]: 1.426617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12173]: 1.426629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12174]: 1.426643125 - core[0].svIdle(17), plen 0: [] -EVENT[12175]: 1.426747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12176]: 1.426756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12177]: 1.426770600 - core[1].svIdle(17), plen 0: [] -EVENT[12178]: 1.427617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12179]: 1.427629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12180]: 1.427643250 - core[0].svIdle(17), plen 0: [] -EVENT[12181]: 1.427747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12182]: 1.427756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12183]: 1.427770600 - core[1].svIdle(17), plen 0: [] -EVENT[12184]: 1.428617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12185]: 1.428629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12186]: 1.428643175 - core[0].svIdle(17), plen 0: [] -EVENT[12187]: 1.428747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12188]: 1.428756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12189]: 1.428770600 - core[1].svIdle(17), plen 0: [] -EVENT[12190]: 1.429617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12191]: 1.429629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12192]: 1.429643125 - core[0].svIdle(17), plen 0: [] -EVENT[12193]: 1.429747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12194]: 1.429757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12195]: 1.429770775 - core[1].svIdle(17), plen 0: [] -EVENT[12196]: 1.430617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12197]: 1.430629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12198]: 1.430643125 - core[0].svIdle(17), plen 0: [] -EVENT[12199]: 1.430747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12200]: 1.430756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12201]: 1.430770600 - core[1].svIdle(17), plen 0: [] -EVENT[12202]: 1.431617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12203]: 1.431629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12204]: 1.431643250 - core[0].svIdle(17), plen 0: [] -EVENT[12205]: 1.431747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12206]: 1.431756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12207]: 1.431770600 - core[1].svIdle(17), plen 0: [] -EVENT[12208]: 1.432617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12209]: 1.432632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12210]: 1.432646225 - core[0].svIdle(17), plen 0: [] -EVENT[12211]: 1.432747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12212]: 1.432756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12213]: 1.432770600 - core[1].svIdle(17), plen 0: [] -EVENT[12214]: 1.433617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12215]: 1.433629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12216]: 1.433643125 - core[0].svIdle(17), plen 0: [] -EVENT[12217]: 1.433747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12218]: 1.433757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12219]: 1.433770775 - core[1].svIdle(17), plen 0: [] -EVENT[12220]: 1.434617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12221]: 1.434629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12222]: 1.434643125 - core[0].svIdle(17), plen 0: [] -EVENT[12223]: 1.434747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12224]: 1.434756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12225]: 1.434770600 - core[1].svIdle(17), plen 0: [] -EVENT[12226]: 1.435617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12227]: 1.435629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12228]: 1.435643250 - core[0].svIdle(17), plen 0: [] -EVENT[12229]: 1.435747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12230]: 1.435756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12231]: 1.435770600 - core[1].svIdle(17), plen 0: [] -EVENT[12232]: 1.436617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12233]: 1.436629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12234]: 1.436643175 - core[0].svIdle(17), plen 0: [] -EVENT[12235]: 1.436747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12236]: 1.436756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12237]: 1.436770600 - core[1].svIdle(17), plen 0: [] -EVENT[12238]: 1.437617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12239]: 1.437629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12240]: 1.437643125 - core[0].svIdle(17), plen 0: [] -EVENT[12241]: 1.437747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12242]: 1.437757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12243]: 1.437770775 - core[1].svIdle(17), plen 0: [] -EVENT[12244]: 1.438617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12245]: 1.438629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12246]: 1.438643125 - core[0].svIdle(17), plen 0: [] -EVENT[12247]: 1.438747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12248]: 1.438756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12249]: 1.438770600 - core[1].svIdle(17), plen 0: [] -EVENT[12250]: 1.439617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12251]: 1.439629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12252]: 1.439643250 - core[0].svIdle(17), plen 0: [] -EVENT[12253]: 1.439747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12254]: 1.439756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12255]: 1.439770600 - core[1].svIdle(17), plen 0: [] -EVENT[12256]: 1.440617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12257]: 1.440629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12258]: 1.440643175 - core[0].svIdle(17), plen 0: [] -EVENT[12259]: 1.440747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12260]: 1.440756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12261]: 1.440770600 - core[1].svIdle(17), plen 0: [] -EVENT[12262]: 1.441617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12263]: 1.441629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12264]: 1.441643125 - core[0].svIdle(17), plen 0: [] -EVENT[12265]: 1.441747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12266]: 1.441757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12267]: 1.441770775 - core[1].svIdle(17), plen 0: [] -EVENT[12268]: 1.442617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12269]: 1.442629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12270]: 1.442643125 - core[0].svIdle(17), plen 0: [] -EVENT[12271]: 1.442747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12272]: 1.442756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12273]: 1.442770600 - core[1].svIdle(17), plen 0: [] -EVENT[12274]: 1.443617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12275]: 1.443629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[12276]: 1.443638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12277]: 1.443652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[12278]: 1.443676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 98, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.443676950] HEAP: Allocated 98 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12279]: 1.443692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12280]: 1.443706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12281]: 1.443747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12282]: 1.443768225 - core[0].svPrint(26), plen 71: [msg: I (1770) example: Task[0x3ffb7f40]: allocated 98 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.443768225] LOG: I (1770) example: Task[0x3ffb7f40]: allocated 98 bytes @ 0x3ffb87e4 -EVENT[12283]: 1.443776475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12284]: 1.443784700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12285]: 1.443795300 - core[1].svIdle(17), plen 0: [] -EVENT[12286]: 1.443806175 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[12287]: 1.443819125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12288]: 1.443827825 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[12289]: 1.443835725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12290]: 1.443844275 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[12291]: 1.443857000 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[12292]: 1.443865375 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[12293]: 1.443873675 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[12294]: 1.443882425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12295]: 1.443891875 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12296]: 1.443901075 - core[0].svIdle(17), plen 0: [] -EVENT[12297]: 1.443915900 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12298]: 1.443965200 - core[1].svPrint(26), plen 64: [msg: I (1770) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.443965200] LOG: I (1770) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[12299]: 1.443983625 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.443983625] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12300]: 1.444002200 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[12301]: 1.444014875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12302]: 1.444023675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12303]: 1.444039250 - core[1].svIdle(17), plen 0: [] -EVENT[12304]: 1.444617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12305]: 1.444629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[12306]: 1.444638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12307]: 1.444652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[12308]: 1.444677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 196, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.444677000] HEAP: Allocated 196 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12309]: 1.444689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12310]: 1.444703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12311]: 1.444747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12312]: 1.444769475 - core[0].svPrint(26), plen 72: [msg: I (1771) example: Task[0x3ffb82a0]: allocated 196 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.444769475] LOG: I (1771) example: Task[0x3ffb82a0]: allocated 196 bytes @ 0x3ffb4b10 -EVENT[12313]: 1.444780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12314]: 1.444789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12315]: 1.444798950 - core[1].svIdle(17), plen 0: [] -EVENT[12316]: 1.444809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[12317]: 1.444822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12318]: 1.444831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[12319]: 1.444839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12320]: 1.444847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[12321]: 1.444860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[12322]: 1.444868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[12323]: 1.444877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[12324]: 1.444886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12325]: 1.444895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12326]: 1.444904625 - core[0].svIdle(17), plen 0: [] -EVENT[12327]: 1.444919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12328]: 1.444968700 - core[1].svPrint(26), plen 64: [msg: I (1771) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.444968700] LOG: I (1771) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[12329]: 1.444984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.444984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12330]: 1.445005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[12331]: 1.445018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12332]: 1.445026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12333]: 1.445042425 - core[1].svIdle(17), plen 0: [] -EVENT[12334]: 1.445617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12335]: 1.445629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[12336]: 1.445638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12337]: 1.445652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[12338]: 1.445676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 294, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.445676975] HEAP: Allocated 294 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12339]: 1.445689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12340]: 1.445703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12341]: 1.445747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12342]: 1.445769450 - core[0].svPrint(26), plen 72: [msg: I (1772) example: Task[0x3ffb8600]: allocated 294 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.445769450] LOG: I (1772) example: Task[0x3ffb8600]: allocated 294 bytes @ 0x3ffb4b10 -EVENT[12343]: 1.445778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12344]: 1.445786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12345]: 1.445797075 - core[1].svIdle(17), plen 0: [] -EVENT[12346]: 1.445807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[12347]: 1.445820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12348]: 1.445829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[12349]: 1.445837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12350]: 1.445845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[12351]: 1.445858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[12352]: 1.445866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[12353]: 1.445879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[12354]: 1.445887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12355]: 1.445895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12356]: 1.445905825 - core[0].svIdle(17), plen 0: [] -EVENT[12357]: 1.445920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12358]: 1.445970100 - core[1].svPrint(26), plen 64: [msg: I (1772) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.445970100] LOG: I (1772) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[12359]: 1.445985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.445985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12360]: 1.446003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[12361]: 1.446016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12362]: 1.446025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12363]: 1.446040650 - core[1].svIdle(17), plen 0: [] -EVENT[12364]: 1.446617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12365]: 1.446629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12366]: 1.446643175 - core[0].svIdle(17), plen 0: [] -EVENT[12367]: 1.446747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12368]: 1.446756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12369]: 1.446770600 - core[1].svIdle(17), plen 0: [] -EVENT[12370]: 1.447617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12371]: 1.447629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12372]: 1.447643125 - core[0].svIdle(17), plen 0: [] -EVENT[12373]: 1.447747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12374]: 1.447757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12375]: 1.447770775 - core[1].svIdle(17), plen 0: [] -EVENT[12376]: 1.448617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12377]: 1.448629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12378]: 1.448643125 - core[0].svIdle(17), plen 0: [] -EVENT[12379]: 1.448747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12380]: 1.448756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12381]: 1.448770600 - core[1].svIdle(17), plen 0: [] -EVENT[12382]: 1.449617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12383]: 1.449629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12384]: 1.449643250 - core[0].svIdle(17), plen 0: [] -EVENT[12385]: 1.449747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12386]: 1.449756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12387]: 1.449770600 - core[1].svIdle(17), plen 0: [] -EVENT[12388]: 1.450617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12389]: 1.450632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12390]: 1.450646225 - core[0].svIdle(17), plen 0: [] -EVENT[12391]: 1.450747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12392]: 1.450756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12393]: 1.450770600 - core[1].svIdle(17), plen 0: [] -EVENT[12394]: 1.451617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12395]: 1.451629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12396]: 1.451643125 - core[0].svIdle(17), plen 0: [] -EVENT[12397]: 1.451747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12398]: 1.451757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12399]: 1.451770775 - core[1].svIdle(17), plen 0: [] -EVENT[12400]: 1.452617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12401]: 1.452629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12402]: 1.452643125 - core[0].svIdle(17), plen 0: [] -EVENT[12403]: 1.452747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12404]: 1.452756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12405]: 1.452770600 - core[1].svIdle(17), plen 0: [] -EVENT[12406]: 1.453617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12407]: 1.453629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12408]: 1.453643250 - core[0].svIdle(17), plen 0: [] -EVENT[12409]: 1.453747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12410]: 1.453756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12411]: 1.453770600 - core[1].svIdle(17), plen 0: [] -EVENT[12412]: 1.454617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12413]: 1.454629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12414]: 1.454643175 - core[0].svIdle(17), plen 0: [] -EVENT[12415]: 1.454747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12416]: 1.454756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12417]: 1.454770600 - core[1].svIdle(17), plen 0: [] -EVENT[12418]: 1.455617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12419]: 1.455629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12420]: 1.455643125 - core[0].svIdle(17), plen 0: [] -EVENT[12421]: 1.455747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12422]: 1.455757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12423]: 1.455770775 - core[1].svIdle(17), plen 0: [] -EVENT[12424]: 1.456617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12425]: 1.456629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12426]: 1.456643125 - core[0].svIdle(17), plen 0: [] -EVENT[12427]: 1.456747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12428]: 1.456756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12429]: 1.456770600 - core[1].svIdle(17), plen 0: [] -EVENT[12430]: 1.457617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12431]: 1.457629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12432]: 1.457643250 - core[0].svIdle(17), plen 0: [] -EVENT[12433]: 1.457747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12434]: 1.457756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12435]: 1.457770600 - core[1].svIdle(17), plen 0: [] -EVENT[12436]: 1.458617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12437]: 1.458629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12438]: 1.458643175 - core[0].svIdle(17), plen 0: [] -EVENT[12439]: 1.458747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12440]: 1.458756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12441]: 1.458770600 - core[1].svIdle(17), plen 0: [] -EVENT[12442]: 1.459617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12443]: 1.459629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12444]: 1.459643125 - core[0].svIdle(17), plen 0: [] -EVENT[12445]: 1.459747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12446]: 1.459757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12447]: 1.459770775 - core[1].svIdle(17), plen 0: [] -EVENT[12448]: 1.460617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12449]: 1.460629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12450]: 1.460643125 - core[0].svIdle(17), plen 0: [] -EVENT[12451]: 1.460747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12452]: 1.460756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12453]: 1.460770600 - core[1].svIdle(17), plen 0: [] -EVENT[12454]: 1.461617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12455]: 1.461629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12456]: 1.461643250 - core[0].svIdle(17), plen 0: [] -EVENT[12457]: 1.461747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12458]: 1.461756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12459]: 1.461770600 - core[1].svIdle(17), plen 0: [] -EVENT[12460]: 1.462617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12461]: 1.462631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12462]: 1.462645550 - core[0].svIdle(17), plen 0: [] -EVENT[12463]: 1.462747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12464]: 1.462756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12465]: 1.462770600 - core[1].svIdle(17), plen 0: [] -EVENT[12466]: 1.463617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12467]: 1.463629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12468]: 1.463643125 - core[0].svIdle(17), plen 0: [] -EVENT[12469]: 1.463747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12470]: 1.463757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12471]: 1.463770775 - core[1].svIdle(17), plen 0: [] -EVENT[12472]: 1.464617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12473]: 1.464629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12474]: 1.464643125 - core[0].svIdle(17), plen 0: [] -EVENT[12475]: 1.464747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12476]: 1.464756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12477]: 1.464770600 - core[1].svIdle(17), plen 0: [] -EVENT[12478]: 1.465617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12479]: 1.465629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12480]: 1.465643250 - core[0].svIdle(17), plen 0: [] -EVENT[12481]: 1.465747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12482]: 1.465756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12483]: 1.465770600 - core[1].svIdle(17), plen 0: [] -EVENT[12484]: 1.466617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12485]: 1.466629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12486]: 1.466643175 - core[0].svIdle(17), plen 0: [] -EVENT[12487]: 1.466747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12488]: 1.466756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12489]: 1.466770600 - core[1].svIdle(17), plen 0: [] -EVENT[12490]: 1.467617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12491]: 1.467629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12492]: 1.467643125 - core[0].svIdle(17), plen 0: [] -EVENT[12493]: 1.467747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12494]: 1.467757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12495]: 1.467770775 - core[1].svIdle(17), plen 0: [] -EVENT[12496]: 1.468617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12497]: 1.468629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12498]: 1.468643125 - core[0].svIdle(17), plen 0: [] -EVENT[12499]: 1.468747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12500]: 1.468756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12501]: 1.468770600 - core[1].svIdle(17), plen 0: [] -EVENT[12502]: 1.469617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12503]: 1.469629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12504]: 1.469643250 - core[0].svIdle(17), plen 0: [] -EVENT[12505]: 1.469747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12506]: 1.469756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12507]: 1.469770600 - core[1].svIdle(17), plen 0: [] -EVENT[12508]: 1.470617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12509]: 1.470629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12510]: 1.470643175 - core[0].svIdle(17), plen 0: [] -EVENT[12511]: 1.470747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12512]: 1.470756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12513]: 1.470770600 - core[1].svIdle(17), plen 0: [] -EVENT[12514]: 1.471617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12515]: 1.471629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12516]: 1.471643125 - core[0].svIdle(17), plen 0: [] -EVENT[12517]: 1.471747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12518]: 1.471757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12519]: 1.471770775 - core[1].svIdle(17), plen 0: [] -EVENT[12520]: 1.472617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12521]: 1.472629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12522]: 1.472643125 - core[0].svIdle(17), plen 0: [] -EVENT[12523]: 1.472747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12524]: 1.472756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12525]: 1.472770600 - core[1].svIdle(17), plen 0: [] -EVENT[12526]: 1.473617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12527]: 1.473629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[12528]: 1.473638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12529]: 1.473652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[12530]: 1.473676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 100, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.473676950] HEAP: Allocated 100 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12531]: 1.473692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12532]: 1.473706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12533]: 1.473747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12534]: 1.473768825 - core[0].svPrint(26), plen 72: [msg: I (1800) example: Task[0x3ffb7f40]: allocated 100 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.473768825] LOG: I (1800) example: Task[0x3ffb7f40]: allocated 100 bytes @ 0x3ffb87e4 -EVENT[12535]: 1.473778075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12536]: 1.473786225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12537]: 1.473796875 - core[1].svIdle(17), plen 0: [] -EVENT[12538]: 1.473807650 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[12539]: 1.473820625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12540]: 1.473829325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[12541]: 1.473837225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12542]: 1.473845900 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[12543]: 1.473858650 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[12544]: 1.473866900 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[12545]: 1.473875200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[12546]: 1.473884225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12547]: 1.473892975 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12548]: 1.473902875 - core[0].svIdle(17), plen 0: [] -EVENT[12549]: 1.473917700 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12550]: 1.473967050 - core[1].svPrint(26), plen 64: [msg: I (1800) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.473967050] LOG: I (1800) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[12551]: 1.473985500 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.473985500] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12552]: 1.474004075 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[12553]: 1.474016750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12554]: 1.474025550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12555]: 1.474041125 - core[1].svIdle(17), plen 0: [] -EVENT[12556]: 1.474617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12557]: 1.474629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[12558]: 1.474638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12559]: 1.474652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[12560]: 1.474677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 200, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.474677000] HEAP: Allocated 200 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12561]: 1.474689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12562]: 1.474703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12563]: 1.474747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12564]: 1.474769475 - core[0].svPrint(26), plen 72: [msg: I (1801) example: Task[0x3ffb82a0]: allocated 200 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.474769475] LOG: I (1801) example: Task[0x3ffb82a0]: allocated 200 bytes @ 0x3ffb4b10 -EVENT[12565]: 1.474781225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12566]: 1.474789725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12567]: 1.474800100 - core[1].svIdle(17), plen 0: [] -EVENT[12568]: 1.474810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[12569]: 1.474823900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12570]: 1.474832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[12571]: 1.474840400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12572]: 1.474848975 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[12573]: 1.474861625 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[12574]: 1.474870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[12575]: 1.474878325 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[12576]: 1.474887200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12577]: 1.474896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12578]: 1.474905775 - core[0].svIdle(17), plen 0: [] -EVENT[12579]: 1.474920600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12580]: 1.474969850 - core[1].svPrint(26), plen 64: [msg: I (1801) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.474969850] LOG: I (1801) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[12581]: 1.474985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.474985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12582]: 1.475006525 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[12583]: 1.475019225 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12584]: 1.475028025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12585]: 1.475043600 - core[1].svIdle(17), plen 0: [] -EVENT[12586]: 1.475617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12587]: 1.475629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[12588]: 1.475638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12589]: 1.475652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[12590]: 1.475676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 300, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.475676975] HEAP: Allocated 300 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12591]: 1.475689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12592]: 1.475703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12593]: 1.475747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12594]: 1.475769450 - core[0].svPrint(26), plen 72: [msg: I (1802) example: Task[0x3ffb8600]: allocated 300 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.475769450] LOG: I (1802) example: Task[0x3ffb8600]: allocated 300 bytes @ 0x3ffb4b10 -EVENT[12595]: 1.475778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12596]: 1.475786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12597]: 1.475797075 - core[1].svIdle(17), plen 0: [] -EVENT[12598]: 1.475807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[12599]: 1.475820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12600]: 1.475829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[12601]: 1.475837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12602]: 1.475845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[12603]: 1.475858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[12604]: 1.475866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[12605]: 1.475878175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[12606]: 1.475886350 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12607]: 1.475894725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12608]: 1.475904975 - core[0].svIdle(17), plen 0: [] -EVENT[12609]: 1.475919925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12610]: 1.475969275 - core[1].svPrint(26), plen 64: [msg: I (1802) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.475969275] LOG: I (1802) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[12611]: 1.475984650 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.475984650] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12612]: 1.476002775 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[12613]: 1.476015600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12614]: 1.476024350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12615]: 1.476039800 - core[1].svIdle(17), plen 0: [] -EVENT[12616]: 1.476617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12617]: 1.476629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12618]: 1.476643175 - core[0].svIdle(17), plen 0: [] -EVENT[12619]: 1.476747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12620]: 1.476756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12621]: 1.476770600 - core[1].svIdle(17), plen 0: [] -EVENT[12622]: 1.477617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12623]: 1.477629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12624]: 1.477643125 - core[0].svIdle(17), plen 0: [] -EVENT[12625]: 1.477747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12626]: 1.477757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12627]: 1.477770775 - core[1].svIdle(17), plen 0: [] -EVENT[12628]: 1.478617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12629]: 1.478629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12630]: 1.478643125 - core[0].svIdle(17), plen 0: [] -EVENT[12631]: 1.478747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12632]: 1.478756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12633]: 1.478770600 - core[1].svIdle(17), plen 0: [] -EVENT[12634]: 1.479617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12635]: 1.479629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12636]: 1.479643250 - core[0].svIdle(17), plen 0: [] -EVENT[12637]: 1.479747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12638]: 1.479756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12639]: 1.479770600 - core[1].svIdle(17), plen 0: [] -EVENT[12640]: 1.480617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12641]: 1.480632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12642]: 1.480646225 - core[0].svIdle(17), plen 0: [] -EVENT[12643]: 1.480747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12644]: 1.480756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12645]: 1.480770600 - core[1].svIdle(17), plen 0: [] -EVENT[12646]: 1.481617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12647]: 1.481629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12648]: 1.481643125 - core[0].svIdle(17), plen 0: [] -EVENT[12649]: 1.481747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12650]: 1.481757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12651]: 1.481770775 - core[1].svIdle(17), plen 0: [] -EVENT[12652]: 1.482617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12653]: 1.482629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12654]: 1.482643125 - core[0].svIdle(17), plen 0: [] -EVENT[12655]: 1.482747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12656]: 1.482756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12657]: 1.482770600 - core[1].svIdle(17), plen 0: [] -EVENT[12658]: 1.483617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12659]: 1.483629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12660]: 1.483643250 - core[0].svIdle(17), plen 0: [] -EVENT[12661]: 1.483747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12662]: 1.483756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12663]: 1.483770600 - core[1].svIdle(17), plen 0: [] -EVENT[12664]: 1.484617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12665]: 1.484629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12666]: 1.484643175 - core[0].svIdle(17), plen 0: [] -EVENT[12667]: 1.484747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12668]: 1.484756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12669]: 1.484770600 - core[1].svIdle(17), plen 0: [] -EVENT[12670]: 1.485617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12671]: 1.485629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12672]: 1.485643125 - core[0].svIdle(17), plen 0: [] -EVENT[12673]: 1.485747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12674]: 1.485757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12675]: 1.485770775 - core[1].svIdle(17), plen 0: [] -EVENT[12676]: 1.486617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12677]: 1.486629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12678]: 1.486643125 - core[0].svIdle(17), plen 0: [] -EVENT[12679]: 1.486747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12680]: 1.486756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12681]: 1.486770600 - core[1].svIdle(17), plen 0: [] -EVENT[12682]: 1.487617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12683]: 1.487629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12684]: 1.487643250 - core[0].svIdle(17), plen 0: [] -EVENT[12685]: 1.487747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12686]: 1.487756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12687]: 1.487770600 - core[1].svIdle(17), plen 0: [] -EVENT[12688]: 1.488617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12689]: 1.488629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12690]: 1.488643175 - core[0].svIdle(17), plen 0: [] -EVENT[12691]: 1.488747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12692]: 1.488756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12693]: 1.488770600 - core[1].svIdle(17), plen 0: [] -EVENT[12694]: 1.489617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12695]: 1.489629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12696]: 1.489643125 - core[0].svIdle(17), plen 0: [] -EVENT[12697]: 1.489747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12698]: 1.489757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12699]: 1.489770775 - core[1].svIdle(17), plen 0: [] -EVENT[12700]: 1.490617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12701]: 1.490629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12702]: 1.490643125 - core[0].svIdle(17), plen 0: [] -EVENT[12703]: 1.490747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12704]: 1.490756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12705]: 1.490770600 - core[1].svIdle(17), plen 0: [] -EVENT[12706]: 1.491617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12707]: 1.491629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12708]: 1.491643250 - core[0].svIdle(17), plen 0: [] -EVENT[12709]: 1.491747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12710]: 1.491756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12711]: 1.491770600 - core[1].svIdle(17), plen 0: [] -EVENT[12712]: 1.492617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12713]: 1.492632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12714]: 1.492646225 - core[0].svIdle(17), plen 0: [] -EVENT[12715]: 1.492747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12716]: 1.492756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12717]: 1.492770600 - core[1].svIdle(17), plen 0: [] -EVENT[12718]: 1.493617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12719]: 1.493629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12720]: 1.493643125 - core[0].svIdle(17), plen 0: [] -EVENT[12721]: 1.493747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12722]: 1.493757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12723]: 1.493770775 - core[1].svIdle(17), plen 0: [] -EVENT[12724]: 1.494617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12725]: 1.494629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12726]: 1.494643125 - core[0].svIdle(17), plen 0: [] -EVENT[12727]: 1.494747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12728]: 1.494756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12729]: 1.494770600 - core[1].svIdle(17), plen 0: [] -EVENT[12730]: 1.495617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12731]: 1.495629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12732]: 1.495643250 - core[0].svIdle(17), plen 0: [] -EVENT[12733]: 1.495747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12734]: 1.495756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12735]: 1.495770600 - core[1].svIdle(17), plen 0: [] -EVENT[12736]: 1.496617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12737]: 1.496629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12738]: 1.496643175 - core[0].svIdle(17), plen 0: [] -EVENT[12739]: 1.496747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12740]: 1.496756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12741]: 1.496770600 - core[1].svIdle(17), plen 0: [] -EVENT[12742]: 1.497617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12743]: 1.497629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12744]: 1.497643125 - core[0].svIdle(17), plen 0: [] -EVENT[12745]: 1.497747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12746]: 1.497757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12747]: 1.497770775 - core[1].svIdle(17), plen 0: [] -EVENT[12748]: 1.498617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12749]: 1.498629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12750]: 1.498643125 - core[0].svIdle(17), plen 0: [] -EVENT[12751]: 1.498747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12752]: 1.498756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12753]: 1.498770600 - core[1].svIdle(17), plen 0: [] -EVENT[12754]: 1.499617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12755]: 1.499629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12756]: 1.499643250 - core[0].svIdle(17), plen 0: [] -EVENT[12757]: 1.499747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12758]: 1.499756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12759]: 1.499770600 - core[1].svIdle(17), plen 0: [] -EVENT[12760]: 1.500617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12761]: 1.500629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12762]: 1.500643175 - core[0].svIdle(17), plen 0: [] -EVENT[12763]: 1.500747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12764]: 1.500756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12765]: 1.500770600 - core[1].svIdle(17), plen 0: [] -EVENT[12766]: 1.501617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12767]: 1.501629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12768]: 1.501643125 - core[0].svIdle(17), plen 0: [] -EVENT[12769]: 1.501747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12770]: 1.501757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12771]: 1.501770775 - core[1].svIdle(17), plen 0: [] -EVENT[12772]: 1.502617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12773]: 1.502629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12774]: 1.502643125 - core[0].svIdle(17), plen 0: [] -EVENT[12775]: 1.502747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12776]: 1.502756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12777]: 1.502770600 - core[1].svIdle(17), plen 0: [] -EVENT[12778]: 1.503617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12779]: 1.503629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[12780]: 1.503638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12781]: 1.503652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[12782]: 1.503676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 102, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.503676950] HEAP: Allocated 102 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12783]: 1.503692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12784]: 1.503706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12785]: 1.503747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12786]: 1.503768825 - core[0].svPrint(26), plen 72: [msg: I (1830) example: Task[0x3ffb7f40]: allocated 102 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.503768825] LOG: I (1830) example: Task[0x3ffb7f40]: allocated 102 bytes @ 0x3ffb87e4 -EVENT[12787]: 1.503778075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12788]: 1.503786225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12789]: 1.503796875 - core[1].svIdle(17), plen 0: [] -EVENT[12790]: 1.503807675 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[12791]: 1.503820650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12792]: 1.503829350 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[12793]: 1.503837250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12794]: 1.503845925 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[12795]: 1.503858650 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[12796]: 1.503866925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[12797]: 1.503875175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[12798]: 1.503884200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12799]: 1.503892950 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12800]: 1.503902850 - core[0].svIdle(17), plen 0: [] -EVENT[12801]: 1.503917675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12802]: 1.503967025 - core[1].svPrint(26), plen 64: [msg: I (1830) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.503967025] LOG: I (1830) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[12803]: 1.503984800 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.503984800] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12804]: 1.504003350 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[12805]: 1.504016050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12806]: 1.504024850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12807]: 1.504040425 - core[1].svIdle(17), plen 0: [] -EVENT[12808]: 1.504617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12809]: 1.504629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[12810]: 1.504638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12811]: 1.504652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[12812]: 1.504677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 204, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.504677000] HEAP: Allocated 204 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12813]: 1.504689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12814]: 1.504703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12815]: 1.504747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12816]: 1.504769475 - core[0].svPrint(26), plen 72: [msg: I (1831) example: Task[0x3ffb82a0]: allocated 204 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.504769475] LOG: I (1831) example: Task[0x3ffb82a0]: allocated 204 bytes @ 0x3ffb4b10 -EVENT[12817]: 1.504781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12818]: 1.504789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12819]: 1.504800125 - core[1].svIdle(17), plen 0: [] -EVENT[12820]: 1.504810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[12821]: 1.504823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12822]: 1.504832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[12823]: 1.504840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12824]: 1.504849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[12825]: 1.504861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[12826]: 1.504870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[12827]: 1.504878275 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[12828]: 1.504887150 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12829]: 1.504896525 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12830]: 1.504905700 - core[0].svIdle(17), plen 0: [] -EVENT[12831]: 1.504920525 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12832]: 1.504969775 - core[1].svPrint(26), plen 64: [msg: I (1831) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.504969775] LOG: I (1831) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[12833]: 1.504985375 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.504985375] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12834]: 1.505005750 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[12835]: 1.505018425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12836]: 1.505027225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12837]: 1.505042800 - core[1].svIdle(17), plen 0: [] -EVENT[12838]: 1.505617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12839]: 1.505629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[12840]: 1.505638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12841]: 1.505652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[12842]: 1.505676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 306, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.505676975] HEAP: Allocated 306 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12843]: 1.505689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12844]: 1.505703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12845]: 1.505747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12846]: 1.505769450 - core[0].svPrint(26), plen 72: [msg: I (1832) example: Task[0x3ffb8600]: allocated 306 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.505769450] LOG: I (1832) example: Task[0x3ffb8600]: allocated 306 bytes @ 0x3ffb4b10 -EVENT[12847]: 1.505778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12848]: 1.505786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12849]: 1.505797075 - core[1].svIdle(17), plen 0: [] -EVENT[12850]: 1.505807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[12851]: 1.505820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12852]: 1.505829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[12853]: 1.505837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12854]: 1.505845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[12855]: 1.505858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[12856]: 1.505866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[12857]: 1.505879175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[12858]: 1.505887200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12859]: 1.505895650 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[12860]: 1.505905750 - core[0].svIdle(17), plen 0: [] -EVENT[12861]: 1.505920675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[12862]: 1.505970025 - core[1].svPrint(26), plen 64: [msg: I (1832) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.505970025] LOG: I (1832) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[12863]: 1.505985400 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.505985400] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[12864]: 1.506003525 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[12865]: 1.506016350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[12866]: 1.506025125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12867]: 1.506040575 - core[1].svIdle(17), plen 0: [] -EVENT[12868]: 1.506617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12869]: 1.506629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12870]: 1.506643175 - core[0].svIdle(17), plen 0: [] -EVENT[12871]: 1.506747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12872]: 1.506756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12873]: 1.506770600 - core[1].svIdle(17), plen 0: [] -EVENT[12874]: 1.507617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12875]: 1.507629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12876]: 1.507643125 - core[0].svIdle(17), plen 0: [] -EVENT[12877]: 1.507747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12878]: 1.507757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12879]: 1.507770775 - core[1].svIdle(17), plen 0: [] -EVENT[12880]: 1.508617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12881]: 1.508629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12882]: 1.508643125 - core[0].svIdle(17), plen 0: [] -EVENT[12883]: 1.508747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12884]: 1.508756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12885]: 1.508770600 - core[1].svIdle(17), plen 0: [] -EVENT[12886]: 1.509617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12887]: 1.509629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12888]: 1.509643250 - core[0].svIdle(17), plen 0: [] -EVENT[12889]: 1.509747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12890]: 1.509756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12891]: 1.509770600 - core[1].svIdle(17), plen 0: [] -EVENT[12892]: 1.510617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12893]: 1.510631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12894]: 1.510645550 - core[0].svIdle(17), plen 0: [] -EVENT[12895]: 1.510747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12896]: 1.510756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12897]: 1.510770600 - core[1].svIdle(17), plen 0: [] -EVENT[12898]: 1.511617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12899]: 1.511629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12900]: 1.511643125 - core[0].svIdle(17), plen 0: [] -EVENT[12901]: 1.511747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12902]: 1.511757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12903]: 1.511770775 - core[1].svIdle(17), plen 0: [] -EVENT[12904]: 1.512617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12905]: 1.512629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12906]: 1.512643125 - core[0].svIdle(17), plen 0: [] -EVENT[12907]: 1.512747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12908]: 1.512756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12909]: 1.512770600 - core[1].svIdle(17), plen 0: [] -EVENT[12910]: 1.513617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12911]: 1.513629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12912]: 1.513643250 - core[0].svIdle(17), plen 0: [] -EVENT[12913]: 1.513747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12914]: 1.513756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12915]: 1.513770600 - core[1].svIdle(17), plen 0: [] -EVENT[12916]: 1.514617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12917]: 1.514629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12918]: 1.514643175 - core[0].svIdle(17), plen 0: [] -EVENT[12919]: 1.514747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12920]: 1.514756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12921]: 1.514770600 - core[1].svIdle(17), plen 0: [] -EVENT[12922]: 1.515617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12923]: 1.515629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12924]: 1.515643125 - core[0].svIdle(17), plen 0: [] -EVENT[12925]: 1.515747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12926]: 1.515757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12927]: 1.515770775 - core[1].svIdle(17), plen 0: [] -EVENT[12928]: 1.516617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12929]: 1.516629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12930]: 1.516643125 - core[0].svIdle(17), plen 0: [] -EVENT[12931]: 1.516747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12932]: 1.516756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12933]: 1.516770600 - core[1].svIdle(17), plen 0: [] -EVENT[12934]: 1.517617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12935]: 1.517629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12936]: 1.517643250 - core[0].svIdle(17), plen 0: [] -EVENT[12937]: 1.517747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12938]: 1.517756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12939]: 1.517770600 - core[1].svIdle(17), plen 0: [] -EVENT[12940]: 1.518617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12941]: 1.518629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12942]: 1.518643175 - core[0].svIdle(17), plen 0: [] -EVENT[12943]: 1.518747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12944]: 1.518756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12945]: 1.518770600 - core[1].svIdle(17), plen 0: [] -EVENT[12946]: 1.519617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12947]: 1.519629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12948]: 1.519643125 - core[0].svIdle(17), plen 0: [] -EVENT[12949]: 1.519747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12950]: 1.519757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12951]: 1.519770775 - core[1].svIdle(17), plen 0: [] -EVENT[12952]: 1.520617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12953]: 1.520629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12954]: 1.520643125 - core[0].svIdle(17), plen 0: [] -EVENT[12955]: 1.520747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12956]: 1.520756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12957]: 1.520770600 - core[1].svIdle(17), plen 0: [] -EVENT[12958]: 1.521617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12959]: 1.521629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12960]: 1.521643250 - core[0].svIdle(17), plen 0: [] -EVENT[12961]: 1.521747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12962]: 1.521756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12963]: 1.521770600 - core[1].svIdle(17), plen 0: [] -EVENT[12964]: 1.522617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12965]: 1.522632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12966]: 1.522646225 - core[0].svIdle(17), plen 0: [] -EVENT[12967]: 1.522747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12968]: 1.522756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12969]: 1.522770600 - core[1].svIdle(17), plen 0: [] -EVENT[12970]: 1.523617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12971]: 1.523629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12972]: 1.523643125 - core[0].svIdle(17), plen 0: [] -EVENT[12973]: 1.523747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12974]: 1.523757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12975]: 1.523770775 - core[1].svIdle(17), plen 0: [] -EVENT[12976]: 1.524617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12977]: 1.524629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12978]: 1.524643125 - core[0].svIdle(17), plen 0: [] -EVENT[12979]: 1.524747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12980]: 1.524756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12981]: 1.524770600 - core[1].svIdle(17), plen 0: [] -EVENT[12982]: 1.525617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12983]: 1.525629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12984]: 1.525643250 - core[0].svIdle(17), plen 0: [] -EVENT[12985]: 1.525747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12986]: 1.525756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12987]: 1.525770600 - core[1].svIdle(17), plen 0: [] -EVENT[12988]: 1.526617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12989]: 1.526629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12990]: 1.526643175 - core[0].svIdle(17), plen 0: [] -EVENT[12991]: 1.526747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12992]: 1.526756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12993]: 1.526770600 - core[1].svIdle(17), plen 0: [] -EVENT[12994]: 1.527617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12995]: 1.527629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[12996]: 1.527643125 - core[0].svIdle(17), plen 0: [] -EVENT[12997]: 1.527747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[12998]: 1.527757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[12999]: 1.527770775 - core[1].svIdle(17), plen 0: [] -EVENT[13000]: 1.528617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13001]: 1.528629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13002]: 1.528643125 - core[0].svIdle(17), plen 0: [] -EVENT[13003]: 1.528747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13004]: 1.528756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13005]: 1.528770600 - core[1].svIdle(17), plen 0: [] -EVENT[13006]: 1.529617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13007]: 1.529629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13008]: 1.529643250 - core[0].svIdle(17), plen 0: [] -EVENT[13009]: 1.529747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13010]: 1.529756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13011]: 1.529770600 - core[1].svIdle(17), plen 0: [] -EVENT[13012]: 1.530617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13013]: 1.530629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13014]: 1.530643175 - core[0].svIdle(17), plen 0: [] -EVENT[13015]: 1.530747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13016]: 1.530756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13017]: 1.530770600 - core[1].svIdle(17), plen 0: [] -EVENT[13018]: 1.531617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13019]: 1.531629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13020]: 1.531643125 - core[0].svIdle(17), plen 0: [] -EVENT[13021]: 1.531747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13022]: 1.531757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13023]: 1.531770775 - core[1].svIdle(17), plen 0: [] -EVENT[13024]: 1.532617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13025]: 1.532629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13026]: 1.532643125 - core[0].svIdle(17), plen 0: [] -EVENT[13027]: 1.532747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13028]: 1.532756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13029]: 1.532770600 - core[1].svIdle(17), plen 0: [] -EVENT[13030]: 1.533617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13031]: 1.533629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[13032]: 1.533638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13033]: 1.533652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[13034]: 1.533676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 104, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.533676950] HEAP: Allocated 104 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13035]: 1.533692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13036]: 1.533706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13037]: 1.533747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13038]: 1.533768400 - core[0].svPrint(26), plen 72: [msg: I (1860) example: Task[0x3ffb7f40]: allocated 104 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.533768400] LOG: I (1860) example: Task[0x3ffb7f40]: allocated 104 bytes @ 0x3ffb87e4 -EVENT[13039]: 1.533777475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13040]: 1.533785875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13041]: 1.533796400 - core[1].svIdle(17), plen 0: [] -EVENT[13042]: 1.533807175 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[13043]: 1.533820150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13044]: 1.533828850 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[13045]: 1.533836750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13046]: 1.533845425 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[13047]: 1.533858175 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[13048]: 1.533866425 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[13049]: 1.533874725 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[13050]: 1.533883750 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13051]: 1.533892500 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13052]: 1.533902400 - core[0].svIdle(17), plen 0: [] -EVENT[13053]: 1.533917225 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13054]: 1.533966575 - core[1].svPrint(26), plen 64: [msg: I (1860) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.533966575] LOG: I (1860) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[13055]: 1.533985025 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.533985025] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13056]: 1.534003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[13057]: 1.534016275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13058]: 1.534025075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13059]: 1.534040650 - core[1].svIdle(17), plen 0: [] -EVENT[13060]: 1.534617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13061]: 1.534629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[13062]: 1.534638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13063]: 1.534652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[13064]: 1.534677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 208, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.534677000] HEAP: Allocated 208 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13065]: 1.534689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13066]: 1.534703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13067]: 1.534747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13068]: 1.534769475 - core[0].svPrint(26), plen 72: [msg: I (1861) example: Task[0x3ffb82a0]: allocated 208 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.534769475] LOG: I (1861) example: Task[0x3ffb82a0]: allocated 208 bytes @ 0x3ffb4b10 -EVENT[13069]: 1.534781225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13070]: 1.534789725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13071]: 1.534800100 - core[1].svIdle(17), plen 0: [] -EVENT[13072]: 1.534810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[13073]: 1.534823900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13074]: 1.534832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[13075]: 1.534840400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13076]: 1.534848975 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[13077]: 1.534861625 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[13078]: 1.534870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[13079]: 1.534878325 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[13080]: 1.534887200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13081]: 1.534896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13082]: 1.534905775 - core[0].svIdle(17), plen 0: [] -EVENT[13083]: 1.534920600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13084]: 1.534969850 - core[1].svPrint(26), plen 64: [msg: I (1861) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.534969850] LOG: I (1861) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[13085]: 1.534985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.534985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13086]: 1.535006425 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[13087]: 1.535019125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13088]: 1.535027925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13089]: 1.535043500 - core[1].svIdle(17), plen 0: [] -EVENT[13090]: 1.535617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13091]: 1.535629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[13092]: 1.535638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13093]: 1.535652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[13094]: 1.535676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 312, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.535676975] HEAP: Allocated 312 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13095]: 1.535689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13096]: 1.535703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13097]: 1.535747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13098]: 1.535769450 - core[0].svPrint(26), plen 72: [msg: I (1862) example: Task[0x3ffb8600]: allocated 312 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.535769450] LOG: I (1862) example: Task[0x3ffb8600]: allocated 312 bytes @ 0x3ffb4b10 -EVENT[13099]: 1.535778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13100]: 1.535786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13101]: 1.535797075 - core[1].svIdle(17), plen 0: [] -EVENT[13102]: 1.535807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[13103]: 1.535820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13104]: 1.535829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[13105]: 1.535837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13106]: 1.535845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[13107]: 1.535858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[13108]: 1.535866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[13109]: 1.535879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[13110]: 1.535887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13111]: 1.535895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13112]: 1.535905825 - core[0].svIdle(17), plen 0: [] -EVENT[13113]: 1.535920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13114]: 1.535970100 - core[1].svPrint(26), plen 64: [msg: I (1862) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.535970100] LOG: I (1862) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[13115]: 1.535985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.535985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13116]: 1.536003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[13117]: 1.536016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13118]: 1.536025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13119]: 1.536040650 - core[1].svIdle(17), plen 0: [] -EVENT[13120]: 1.536617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13121]: 1.536629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13122]: 1.536643175 - core[0].svIdle(17), plen 0: [] -EVENT[13123]: 1.536747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13124]: 1.536756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13125]: 1.536770600 - core[1].svIdle(17), plen 0: [] -EVENT[13126]: 1.537617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13127]: 1.537629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13128]: 1.537643125 - core[0].svIdle(17), plen 0: [] -EVENT[13129]: 1.537747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13130]: 1.537757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13131]: 1.537770775 - core[1].svIdle(17), plen 0: [] -EVENT[13132]: 1.538617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13133]: 1.538629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13134]: 1.538643125 - core[0].svIdle(17), plen 0: [] -EVENT[13135]: 1.538747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13136]: 1.538756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13137]: 1.538770600 - core[1].svIdle(17), plen 0: [] -EVENT[13138]: 1.539617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13139]: 1.539629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13140]: 1.539643250 - core[0].svIdle(17), plen 0: [] -EVENT[13141]: 1.539747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13142]: 1.539756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13143]: 1.539770600 - core[1].svIdle(17), plen 0: [] -EVENT[13144]: 1.540617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13145]: 1.540632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13146]: 1.540646225 - core[0].svIdle(17), plen 0: [] -EVENT[13147]: 1.540747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13148]: 1.540756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13149]: 1.540770600 - core[1].svIdle(17), plen 0: [] -EVENT[13150]: 1.541617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13151]: 1.541629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13152]: 1.541643125 - core[0].svIdle(17), plen 0: [] -EVENT[13153]: 1.541747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13154]: 1.541757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13155]: 1.541770775 - core[1].svIdle(17), plen 0: [] -EVENT[13156]: 1.542617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13157]: 1.542629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13158]: 1.542643125 - core[0].svIdle(17), plen 0: [] -EVENT[13159]: 1.542747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13160]: 1.542756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13161]: 1.542770600 - core[1].svIdle(17), plen 0: [] -EVENT[13162]: 1.543617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13163]: 1.543629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13164]: 1.543643250 - core[0].svIdle(17), plen 0: [] -EVENT[13165]: 1.543747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13166]: 1.543756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13167]: 1.543770600 - core[1].svIdle(17), plen 0: [] -EVENT[13168]: 1.544617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13169]: 1.544629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13170]: 1.544643175 - core[0].svIdle(17), plen 0: [] -EVENT[13171]: 1.544747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13172]: 1.544756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13173]: 1.544770600 - core[1].svIdle(17), plen 0: [] -EVENT[13174]: 1.545617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13175]: 1.545629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13176]: 1.545643125 - core[0].svIdle(17), plen 0: [] -EVENT[13177]: 1.545747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13178]: 1.545757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13179]: 1.545770775 - core[1].svIdle(17), plen 0: [] -EVENT[13180]: 1.546617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13181]: 1.546629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13182]: 1.546643125 - core[0].svIdle(17), plen 0: [] -EVENT[13183]: 1.546747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13184]: 1.546756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13185]: 1.546770600 - core[1].svIdle(17), plen 0: [] -EVENT[13186]: 1.547617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13187]: 1.547629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13188]: 1.547643250 - core[0].svIdle(17), plen 0: [] -EVENT[13189]: 1.547747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13190]: 1.547756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13191]: 1.547770600 - core[1].svIdle(17), plen 0: [] -EVENT[13192]: 1.548617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13193]: 1.548629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13194]: 1.548643175 - core[0].svIdle(17), plen 0: [] -EVENT[13195]: 1.548747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13196]: 1.548756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13197]: 1.548770600 - core[1].svIdle(17), plen 0: [] -EVENT[13198]: 1.549617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13199]: 1.549629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13200]: 1.549643125 - core[0].svIdle(17), plen 0: [] -EVENT[13201]: 1.549747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13202]: 1.549757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13203]: 1.549770775 - core[1].svIdle(17), plen 0: [] -EVENT[13204]: 1.550617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13205]: 1.550629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13206]: 1.550643125 - core[0].svIdle(17), plen 0: [] -EVENT[13207]: 1.550747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13208]: 1.550756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13209]: 1.550770600 - core[1].svIdle(17), plen 0: [] -EVENT[13210]: 1.551617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13211]: 1.551629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13212]: 1.551643250 - core[0].svIdle(17), plen 0: [] -EVENT[13213]: 1.551747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13214]: 1.551756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13215]: 1.551770600 - core[1].svIdle(17), plen 0: [] -EVENT[13216]: 1.552617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13217]: 1.552632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13218]: 1.552646225 - core[0].svIdle(17), plen 0: [] -EVENT[13219]: 1.552747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13220]: 1.552756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13221]: 1.552770600 - core[1].svIdle(17), plen 0: [] -EVENT[13222]: 1.553617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13223]: 1.553629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13224]: 1.553643125 - core[0].svIdle(17), plen 0: [] -EVENT[13225]: 1.553747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13226]: 1.553757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13227]: 1.553770775 - core[1].svIdle(17), plen 0: [] -EVENT[13228]: 1.554617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13229]: 1.554629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13230]: 1.554643125 - core[0].svIdle(17), plen 0: [] -EVENT[13231]: 1.554747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13232]: 1.554756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13233]: 1.554770600 - core[1].svIdle(17), plen 0: [] -EVENT[13234]: 1.555617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13235]: 1.555629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13236]: 1.555643250 - core[0].svIdle(17), plen 0: [] -EVENT[13237]: 1.555747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13238]: 1.555756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13239]: 1.555770600 - core[1].svIdle(17), plen 0: [] -EVENT[13240]: 1.556617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13241]: 1.556629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13242]: 1.556643175 - core[0].svIdle(17), plen 0: [] -EVENT[13243]: 1.556747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13244]: 1.556756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13245]: 1.556770600 - core[1].svIdle(17), plen 0: [] -EVENT[13246]: 1.557617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13247]: 1.557629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13248]: 1.557643125 - core[0].svIdle(17), plen 0: [] -EVENT[13249]: 1.557747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13250]: 1.557757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13251]: 1.557770775 - core[1].svIdle(17), plen 0: [] -EVENT[13252]: 1.558617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13253]: 1.558629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13254]: 1.558643125 - core[0].svIdle(17), plen 0: [] -EVENT[13255]: 1.558747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13256]: 1.558756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13257]: 1.558770600 - core[1].svIdle(17), plen 0: [] -EVENT[13258]: 1.559617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13259]: 1.559629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13260]: 1.559643250 - core[0].svIdle(17), plen 0: [] -EVENT[13261]: 1.559747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13262]: 1.559756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13263]: 1.559770600 - core[1].svIdle(17), plen 0: [] -EVENT[13264]: 1.560617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13265]: 1.560629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13266]: 1.560643175 - core[0].svIdle(17), plen 0: [] -EVENT[13267]: 1.560747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13268]: 1.560756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13269]: 1.560770600 - core[1].svIdle(17), plen 0: [] -EVENT[13270]: 1.561617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13271]: 1.561629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13272]: 1.561643125 - core[0].svIdle(17), plen 0: [] -EVENT[13273]: 1.561747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13274]: 1.561757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13275]: 1.561770775 - core[1].svIdle(17), plen 0: [] -EVENT[13276]: 1.562617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13277]: 1.562629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13278]: 1.562643125 - core[0].svIdle(17), plen 0: [] -EVENT[13279]: 1.562747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13280]: 1.562756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13281]: 1.562770600 - core[1].svIdle(17), plen 0: [] -EVENT[13282]: 1.563617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13283]: 1.563629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[13284]: 1.563638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13285]: 1.563652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[13286]: 1.563676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 106, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.563676950] HEAP: Allocated 106 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13287]: 1.563692625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13288]: 1.563706700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13289]: 1.563747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13290]: 1.563768800 - core[0].svPrint(26), plen 72: [msg: I (1890) example: Task[0x3ffb7f40]: allocated 106 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.563768800] LOG: I (1890) example: Task[0x3ffb7f40]: allocated 106 bytes @ 0x3ffb87e4 -EVENT[13291]: 1.563777050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13292]: 1.563785200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13293]: 1.563796100 - core[1].svIdle(17), plen 0: [] -EVENT[13294]: 1.563806875 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[13295]: 1.563819850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13296]: 1.563828550 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[13297]: 1.563836450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13298]: 1.563845125 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[13299]: 1.563857875 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[13300]: 1.563866125 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[13301]: 1.563874425 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[13302]: 1.563883450 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13303]: 1.563892200 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13304]: 1.563902100 - core[0].svIdle(17), plen 0: [] -EVENT[13305]: 1.563916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13306]: 1.563966275 - core[1].svPrint(26), plen 64: [msg: I (1890) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.563966275] LOG: I (1890) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[13307]: 1.563984725 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.563984725] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13308]: 1.564003275 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[13309]: 1.564015975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13310]: 1.564024775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13311]: 1.564040350 - core[1].svIdle(17), plen 0: [] -EVENT[13312]: 1.564617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13313]: 1.564629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[13314]: 1.564638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13315]: 1.564652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[13316]: 1.564677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 212, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.564677000] HEAP: Allocated 212 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13317]: 1.564689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13318]: 1.564703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13319]: 1.564747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13320]: 1.564769475 - core[0].svPrint(26), plen 72: [msg: I (1891) example: Task[0x3ffb82a0]: allocated 212 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.564769475] LOG: I (1891) example: Task[0x3ffb82a0]: allocated 212 bytes @ 0x3ffb4b10 -EVENT[13321]: 1.564780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13322]: 1.564789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13323]: 1.564798950 - core[1].svIdle(17), plen 0: [] -EVENT[13324]: 1.564809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[13325]: 1.564822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13326]: 1.564831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[13327]: 1.564839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13328]: 1.564847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[13329]: 1.564860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[13330]: 1.564868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[13331]: 1.564877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[13332]: 1.564886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13333]: 1.564895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13334]: 1.564904625 - core[0].svIdle(17), plen 0: [] -EVENT[13335]: 1.564919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13336]: 1.564968700 - core[1].svPrint(26), plen 64: [msg: I (1891) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.564968700] LOG: I (1891) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[13337]: 1.564984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.564984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13338]: 1.565005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[13339]: 1.565018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13340]: 1.565026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13341]: 1.565042425 - core[1].svIdle(17), plen 0: [] -EVENT[13342]: 1.565617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13343]: 1.565629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[13344]: 1.565638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13345]: 1.565652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[13346]: 1.565676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 318, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.565676975] HEAP: Allocated 318 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13347]: 1.565689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13348]: 1.565703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13349]: 1.565747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13350]: 1.565769450 - core[0].svPrint(26), plen 72: [msg: I (1892) example: Task[0x3ffb8600]: allocated 318 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.565769450] LOG: I (1892) example: Task[0x3ffb8600]: allocated 318 bytes @ 0x3ffb4b10 -EVENT[13351]: 1.565778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13352]: 1.565786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13353]: 1.565797075 - core[1].svIdle(17), plen 0: [] -EVENT[13354]: 1.565807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[13355]: 1.565820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13356]: 1.565829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[13357]: 1.565837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13358]: 1.565845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[13359]: 1.565858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[13360]: 1.565866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[13361]: 1.565879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[13362]: 1.565887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13363]: 1.565895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13364]: 1.565905825 - core[0].svIdle(17), plen 0: [] -EVENT[13365]: 1.565920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13366]: 1.565970100 - core[1].svPrint(26), plen 64: [msg: I (1892) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.565970100] LOG: I (1892) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[13367]: 1.565985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.565985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13368]: 1.566003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[13369]: 1.566016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13370]: 1.566025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13371]: 1.566040650 - core[1].svIdle(17), plen 0: [] -EVENT[13372]: 1.566617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13373]: 1.566629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13374]: 1.566643175 - core[0].svIdle(17), plen 0: [] -EVENT[13375]: 1.566747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13376]: 1.566756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13377]: 1.566770600 - core[1].svIdle(17), plen 0: [] -EVENT[13378]: 1.567617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13379]: 1.567629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13380]: 1.567643125 - core[0].svIdle(17), plen 0: [] -EVENT[13381]: 1.567747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13382]: 1.567757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13383]: 1.567770775 - core[1].svIdle(17), plen 0: [] -EVENT[13384]: 1.568617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13385]: 1.568629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13386]: 1.568643125 - core[0].svIdle(17), plen 0: [] -EVENT[13387]: 1.568747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13388]: 1.568756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13389]: 1.568770600 - core[1].svIdle(17), plen 0: [] -EVENT[13390]: 1.569617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13391]: 1.569629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13392]: 1.569643250 - core[0].svIdle(17), plen 0: [] -EVENT[13393]: 1.569747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13394]: 1.569756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13395]: 1.569770600 - core[1].svIdle(17), plen 0: [] -EVENT[13396]: 1.570617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13397]: 1.570632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13398]: 1.570646225 - core[0].svIdle(17), plen 0: [] -EVENT[13399]: 1.570747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13400]: 1.570756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13401]: 1.570770600 - core[1].svIdle(17), plen 0: [] -EVENT[13402]: 1.571617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13403]: 1.571629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13404]: 1.571643125 - core[0].svIdle(17), plen 0: [] -EVENT[13405]: 1.571747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13406]: 1.571757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13407]: 1.571770775 - core[1].svIdle(17), plen 0: [] -EVENT[13408]: 1.572617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13409]: 1.572629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13410]: 1.572643125 - core[0].svIdle(17), plen 0: [] -EVENT[13411]: 1.572747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13412]: 1.572756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13413]: 1.572770600 - core[1].svIdle(17), plen 0: [] -EVENT[13414]: 1.573617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13415]: 1.573629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13416]: 1.573643250 - core[0].svIdle(17), plen 0: [] -EVENT[13417]: 1.573747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13418]: 1.573756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13419]: 1.573770600 - core[1].svIdle(17), plen 0: [] -EVENT[13420]: 1.574617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13421]: 1.574629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13422]: 1.574643175 - core[0].svIdle(17), plen 0: [] -EVENT[13423]: 1.574747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13424]: 1.574756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13425]: 1.574770600 - core[1].svIdle(17), plen 0: [] -EVENT[13426]: 1.575617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13427]: 1.575629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13428]: 1.575643125 - core[0].svIdle(17), plen 0: [] -EVENT[13429]: 1.575747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13430]: 1.575757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13431]: 1.575770775 - core[1].svIdle(17), plen 0: [] -EVENT[13432]: 1.576617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13433]: 1.576629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13434]: 1.576643125 - core[0].svIdle(17), plen 0: [] -EVENT[13435]: 1.576747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13436]: 1.576756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13437]: 1.576770600 - core[1].svIdle(17), plen 0: [] -EVENT[13438]: 1.577617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13439]: 1.577629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13440]: 1.577643250 - core[0].svIdle(17), plen 0: [] -EVENT[13441]: 1.577747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13442]: 1.577756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13443]: 1.577770600 - core[1].svIdle(17), plen 0: [] -EVENT[13444]: 1.578617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13445]: 1.578629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13446]: 1.578643175 - core[0].svIdle(17), plen 0: [] -EVENT[13447]: 1.578747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13448]: 1.578756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13449]: 1.578770600 - core[1].svIdle(17), plen 0: [] -EVENT[13450]: 1.579617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13451]: 1.579629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13452]: 1.579643125 - core[0].svIdle(17), plen 0: [] -EVENT[13453]: 1.579747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13454]: 1.579757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13455]: 1.579770775 - core[1].svIdle(17), plen 0: [] -EVENT[13456]: 1.580617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13457]: 1.580629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13458]: 1.580643125 - core[0].svIdle(17), plen 0: [] -EVENT[13459]: 1.580747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13460]: 1.580756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13461]: 1.580770600 - core[1].svIdle(17), plen 0: [] -EVENT[13462]: 1.581617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13463]: 1.581629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13464]: 1.581643250 - core[0].svIdle(17), plen 0: [] -EVENT[13465]: 1.581747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13466]: 1.581756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13467]: 1.581770600 - core[1].svIdle(17), plen 0: [] -EVENT[13468]: 1.582617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13469]: 1.582631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13470]: 1.582645550 - core[0].svIdle(17), plen 0: [] -EVENT[13471]: 1.582747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13472]: 1.582756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13473]: 1.582770600 - core[1].svIdle(17), plen 0: [] -EVENT[13474]: 1.583617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13475]: 1.583629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13476]: 1.583643125 - core[0].svIdle(17), plen 0: [] -EVENT[13477]: 1.583747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13478]: 1.583757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13479]: 1.583770775 - core[1].svIdle(17), plen 0: [] -EVENT[13480]: 1.584617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13481]: 1.584629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13482]: 1.584643125 - core[0].svIdle(17), plen 0: [] -EVENT[13483]: 1.584747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13484]: 1.584756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13485]: 1.584770600 - core[1].svIdle(17), plen 0: [] -EVENT[13486]: 1.585617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13487]: 1.585629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13488]: 1.585643250 - core[0].svIdle(17), plen 0: [] -EVENT[13489]: 1.585747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13490]: 1.585756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13491]: 1.585770600 - core[1].svIdle(17), plen 0: [] -EVENT[13492]: 1.586617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13493]: 1.586629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13494]: 1.586643175 - core[0].svIdle(17), plen 0: [] -EVENT[13495]: 1.586747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13496]: 1.586756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13497]: 1.586770600 - core[1].svIdle(17), plen 0: [] -EVENT[13498]: 1.587617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13499]: 1.587629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13500]: 1.587643125 - core[0].svIdle(17), plen 0: [] -EVENT[13501]: 1.587747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13502]: 1.587757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13503]: 1.587770775 - core[1].svIdle(17), plen 0: [] -EVENT[13504]: 1.588617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13505]: 1.588629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13506]: 1.588643125 - core[0].svIdle(17), plen 0: [] -EVENT[13507]: 1.588747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13508]: 1.588756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13509]: 1.588770600 - core[1].svIdle(17), plen 0: [] -EVENT[13510]: 1.589617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13511]: 1.589629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13512]: 1.589643250 - core[0].svIdle(17), plen 0: [] -EVENT[13513]: 1.589747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13514]: 1.589756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13515]: 1.589770600 - core[1].svIdle(17), plen 0: [] -EVENT[13516]: 1.590617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13517]: 1.590629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13518]: 1.590643175 - core[0].svIdle(17), plen 0: [] -EVENT[13519]: 1.590747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13520]: 1.590756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13521]: 1.590770600 - core[1].svIdle(17), plen 0: [] -EVENT[13522]: 1.591617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13523]: 1.591629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13524]: 1.591643125 - core[0].svIdle(17), plen 0: [] -EVENT[13525]: 1.591747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13526]: 1.591757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13527]: 1.591770775 - core[1].svIdle(17), plen 0: [] -EVENT[13528]: 1.592617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13529]: 1.592629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13530]: 1.592643125 - core[0].svIdle(17), plen 0: [] -EVENT[13531]: 1.592747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13532]: 1.592756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13533]: 1.592770600 - core[1].svIdle(17), plen 0: [] -EVENT[13534]: 1.593617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13535]: 1.593629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[13536]: 1.593638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13537]: 1.593652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[13538]: 1.593676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 108, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.593676950] HEAP: Allocated 108 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13539]: 1.593692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13540]: 1.593706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13541]: 1.593747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13542]: 1.593768825 - core[0].svPrint(26), plen 72: [msg: I (1920) example: Task[0x3ffb7f40]: allocated 108 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.593768825] LOG: I (1920) example: Task[0x3ffb7f40]: allocated 108 bytes @ 0x3ffb87e4 -EVENT[13543]: 1.593778075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13544]: 1.593786225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13545]: 1.593796875 - core[1].svIdle(17), plen 0: [] -EVENT[13546]: 1.593807675 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[13547]: 1.593820650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13548]: 1.593829350 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[13549]: 1.593837250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13550]: 1.593845925 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[13551]: 1.593858650 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[13552]: 1.593866925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[13553]: 1.593875225 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[13554]: 1.593884250 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13555]: 1.593892975 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13556]: 1.593902900 - core[0].svIdle(17), plen 0: [] -EVENT[13557]: 1.593917725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13558]: 1.593967075 - core[1].svPrint(26), plen 64: [msg: I (1920) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.593967075] LOG: I (1920) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[13559]: 1.593985525 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.593985525] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13560]: 1.594004075 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[13561]: 1.594016775 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13562]: 1.594025575 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13563]: 1.594041150 - core[1].svIdle(17), plen 0: [] -EVENT[13564]: 1.594617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13565]: 1.594629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[13566]: 1.594638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13567]: 1.594652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[13568]: 1.594677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 216, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.594677000] HEAP: Allocated 216 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13569]: 1.594689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13570]: 1.594703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13571]: 1.594747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13572]: 1.594769475 - core[0].svPrint(26), plen 72: [msg: I (1921) example: Task[0x3ffb82a0]: allocated 216 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.594769475] LOG: I (1921) example: Task[0x3ffb82a0]: allocated 216 bytes @ 0x3ffb4b10 -EVENT[13573]: 1.594781225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13574]: 1.594789725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13575]: 1.594800100 - core[1].svIdle(17), plen 0: [] -EVENT[13576]: 1.594810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[13577]: 1.594823900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13578]: 1.594832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[13579]: 1.594840400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13580]: 1.594848975 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[13581]: 1.594861625 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[13582]: 1.594870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[13583]: 1.594878325 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[13584]: 1.594887200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13585]: 1.594896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13586]: 1.594905775 - core[0].svIdle(17), plen 0: [] -EVENT[13587]: 1.594920600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13588]: 1.594969850 - core[1].svPrint(26), plen 64: [msg: I (1921) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.594969850] LOG: I (1921) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[13589]: 1.594985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.594985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13590]: 1.595006525 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[13591]: 1.595019225 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13592]: 1.595028025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13593]: 1.595043600 - core[1].svIdle(17), plen 0: [] -EVENT[13594]: 1.595617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13595]: 1.595629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[13596]: 1.595638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13597]: 1.595652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[13598]: 1.595676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 324, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.595676975] HEAP: Allocated 324 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13599]: 1.595689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13600]: 1.595703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13601]: 1.595747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13602]: 1.595769450 - core[0].svPrint(26), plen 72: [msg: I (1922) example: Task[0x3ffb8600]: allocated 324 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.595769450] LOG: I (1922) example: Task[0x3ffb8600]: allocated 324 bytes @ 0x3ffb4b10 -EVENT[13603]: 1.595778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13604]: 1.595786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13605]: 1.595797075 - core[1].svIdle(17), plen 0: [] -EVENT[13606]: 1.595807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[13607]: 1.595820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13608]: 1.595829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[13609]: 1.595837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13610]: 1.595845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[13611]: 1.595858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[13612]: 1.595866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[13613]: 1.595878175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[13614]: 1.595886350 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13615]: 1.595894725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13616]: 1.595904975 - core[0].svIdle(17), plen 0: [] -EVENT[13617]: 1.595919925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13618]: 1.595969275 - core[1].svPrint(26), plen 64: [msg: I (1922) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.595969275] LOG: I (1922) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[13619]: 1.595984650 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.595984650] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13620]: 1.596002775 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[13621]: 1.596015600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13622]: 1.596024350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13623]: 1.596039800 - core[1].svIdle(17), plen 0: [] -EVENT[13624]: 1.596617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13625]: 1.596629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13626]: 1.596643175 - core[0].svIdle(17), plen 0: [] -EVENT[13627]: 1.596747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13628]: 1.596756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13629]: 1.596770600 - core[1].svIdle(17), plen 0: [] -EVENT[13630]: 1.597617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13631]: 1.597629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13632]: 1.597643125 - core[0].svIdle(17), plen 0: [] -EVENT[13633]: 1.597747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13634]: 1.597757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13635]: 1.597770775 - core[1].svIdle(17), plen 0: [] -EVENT[13636]: 1.598617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13637]: 1.598629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13638]: 1.598643125 - core[0].svIdle(17), plen 0: [] -EVENT[13639]: 1.598747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13640]: 1.598756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13641]: 1.598770600 - core[1].svIdle(17), plen 0: [] -EVENT[13642]: 1.599617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13643]: 1.599629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13644]: 1.599643250 - core[0].svIdle(17), plen 0: [] -EVENT[13645]: 1.599747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13646]: 1.599756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13647]: 1.599770600 - core[1].svIdle(17), plen 0: [] -EVENT[13648]: 1.600617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13649]: 1.600632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13650]: 1.600646225 - core[0].svIdle(17), plen 0: [] -EVENT[13651]: 1.600747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13652]: 1.600756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13653]: 1.600770600 - core[1].svIdle(17), plen 0: [] -EVENT[13654]: 1.601617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13655]: 1.601629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13656]: 1.601643125 - core[0].svIdle(17), plen 0: [] -EVENT[13657]: 1.601747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13658]: 1.601757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13659]: 1.601770775 - core[1].svIdle(17), plen 0: [] -EVENT[13660]: 1.602617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13661]: 1.602629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13662]: 1.602643125 - core[0].svIdle(17), plen 0: [] -EVENT[13663]: 1.602747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13664]: 1.602756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13665]: 1.602770600 - core[1].svIdle(17), plen 0: [] -EVENT[13666]: 1.603617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13667]: 1.603629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13668]: 1.603643250 - core[0].svIdle(17), plen 0: [] -EVENT[13669]: 1.603747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13670]: 1.603756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13671]: 1.603770600 - core[1].svIdle(17), plen 0: [] -EVENT[13672]: 1.604617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13673]: 1.604629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13674]: 1.604643175 - core[0].svIdle(17), plen 0: [] -EVENT[13675]: 1.604747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13676]: 1.604756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13677]: 1.604770600 - core[1].svIdle(17), plen 0: [] -EVENT[13678]: 1.605617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13679]: 1.605629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13680]: 1.605643125 - core[0].svIdle(17), plen 0: [] -EVENT[13681]: 1.605747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13682]: 1.605757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13683]: 1.605770775 - core[1].svIdle(17), plen 0: [] -EVENT[13684]: 1.606617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13685]: 1.606629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13686]: 1.606643125 - core[0].svIdle(17), plen 0: [] -EVENT[13687]: 1.606747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13688]: 1.606756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13689]: 1.606770600 - core[1].svIdle(17), plen 0: [] -EVENT[13690]: 1.607617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13691]: 1.607629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13692]: 1.607643250 - core[0].svIdle(17), plen 0: [] -EVENT[13693]: 1.607747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13694]: 1.607756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13695]: 1.607770600 - core[1].svIdle(17), plen 0: [] -EVENT[13696]: 1.608617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13697]: 1.608629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13698]: 1.608643175 - core[0].svIdle(17), plen 0: [] -EVENT[13699]: 1.608747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13700]: 1.608756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13701]: 1.608770600 - core[1].svIdle(17), plen 0: [] -EVENT[13702]: 1.609617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13703]: 1.609629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13704]: 1.609643125 - core[0].svIdle(17), plen 0: [] -EVENT[13705]: 1.609747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13706]: 1.609757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13707]: 1.609770775 - core[1].svIdle(17), plen 0: [] -EVENT[13708]: 1.610617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13709]: 1.610629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13710]: 1.610643125 - core[0].svIdle(17), plen 0: [] -EVENT[13711]: 1.610747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13712]: 1.610756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13713]: 1.610770600 - core[1].svIdle(17), plen 0: [] -EVENT[13714]: 1.611617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13715]: 1.611629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13716]: 1.611643250 - core[0].svIdle(17), plen 0: [] -EVENT[13717]: 1.611747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13718]: 1.611756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13719]: 1.611770600 - core[1].svIdle(17), plen 0: [] -EVENT[13720]: 1.612617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13721]: 1.612632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13722]: 1.612646225 - core[0].svIdle(17), plen 0: [] -EVENT[13723]: 1.612747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13724]: 1.612756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13725]: 1.612770600 - core[1].svIdle(17), plen 0: [] -EVENT[13726]: 1.613617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13727]: 1.613629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13728]: 1.613643125 - core[0].svIdle(17), plen 0: [] -EVENT[13729]: 1.613747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13730]: 1.613757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13731]: 1.613770775 - core[1].svIdle(17), plen 0: [] -EVENT[13732]: 1.614617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13733]: 1.614629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13734]: 1.614643125 - core[0].svIdle(17), plen 0: [] -EVENT[13735]: 1.614747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13736]: 1.614756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13737]: 1.614770600 - core[1].svIdle(17), plen 0: [] -EVENT[13738]: 1.615617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13739]: 1.615629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13740]: 1.615643250 - core[0].svIdle(17), plen 0: [] -EVENT[13741]: 1.615747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13742]: 1.615756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13743]: 1.615770600 - core[1].svIdle(17), plen 0: [] -EVENT[13744]: 1.616617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13745]: 1.616629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13746]: 1.616643175 - core[0].svIdle(17), plen 0: [] -EVENT[13747]: 1.616747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13748]: 1.616756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13749]: 1.616770600 - core[1].svIdle(17), plen 0: [] -EVENT[13750]: 1.617617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13751]: 1.617629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13752]: 1.617643125 - core[0].svIdle(17), plen 0: [] -EVENT[13753]: 1.617747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13754]: 1.617757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13755]: 1.617770775 - core[1].svIdle(17), plen 0: [] -EVENT[13756]: 1.618617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13757]: 1.618629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13758]: 1.618643125 - core[0].svIdle(17), plen 0: [] -EVENT[13759]: 1.618747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13760]: 1.618756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13761]: 1.618770600 - core[1].svIdle(17), plen 0: [] -EVENT[13762]: 1.619617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13763]: 1.619629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13764]: 1.619643250 - core[0].svIdle(17), plen 0: [] -EVENT[13765]: 1.619747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13766]: 1.619756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13767]: 1.619770600 - core[1].svIdle(17), plen 0: [] -EVENT[13768]: 1.620617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13769]: 1.620629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13770]: 1.620643175 - core[0].svIdle(17), plen 0: [] -EVENT[13771]: 1.620747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13772]: 1.620756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13773]: 1.620770600 - core[1].svIdle(17), plen 0: [] -EVENT[13774]: 1.621617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13775]: 1.621629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13776]: 1.621643125 - core[0].svIdle(17), plen 0: [] -EVENT[13777]: 1.621747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13778]: 1.621757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13779]: 1.621770775 - core[1].svIdle(17), plen 0: [] -EVENT[13780]: 1.622617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13781]: 1.622629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13782]: 1.622643125 - core[0].svIdle(17), plen 0: [] -EVENT[13783]: 1.622747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13784]: 1.622756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13785]: 1.622770600 - core[1].svIdle(17), plen 0: [] -EVENT[13786]: 1.623617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13787]: 1.623629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[13788]: 1.623638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13789]: 1.623652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[13790]: 1.623676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 110, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.623676950] HEAP: Allocated 110 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13791]: 1.623692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13792]: 1.623706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13793]: 1.623747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13794]: 1.623768825 - core[0].svPrint(26), plen 72: [msg: I (1950) example: Task[0x3ffb7f40]: allocated 110 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.623768825] LOG: I (1950) example: Task[0x3ffb7f40]: allocated 110 bytes @ 0x3ffb87e4 -EVENT[13795]: 1.623778075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13796]: 1.623786225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13797]: 1.623796875 - core[1].svIdle(17), plen 0: [] -EVENT[13798]: 1.623807675 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[13799]: 1.623820650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13800]: 1.623829350 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[13801]: 1.623837250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13802]: 1.623845925 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[13803]: 1.623858650 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[13804]: 1.623866925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[13805]: 1.623875225 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[13806]: 1.623884250 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13807]: 1.623892975 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13808]: 1.623902900 - core[0].svIdle(17), plen 0: [] -EVENT[13809]: 1.623917725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13810]: 1.623967075 - core[1].svPrint(26), plen 64: [msg: I (1950) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.623967075] LOG: I (1950) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[13811]: 1.623984850 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.623984850] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13812]: 1.624003400 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[13813]: 1.624016100 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13814]: 1.624024900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13815]: 1.624040475 - core[1].svIdle(17), plen 0: [] -EVENT[13816]: 1.624617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13817]: 1.624629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[13818]: 1.624638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13819]: 1.624652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[13820]: 1.624677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 220, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.624677000] HEAP: Allocated 220 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13821]: 1.624689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13822]: 1.624703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13823]: 1.624747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13824]: 1.624769475 - core[0].svPrint(26), plen 72: [msg: I (1951) example: Task[0x3ffb82a0]: allocated 220 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.624769475] LOG: I (1951) example: Task[0x3ffb82a0]: allocated 220 bytes @ 0x3ffb4b10 -EVENT[13825]: 1.624781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13826]: 1.624789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13827]: 1.624800125 - core[1].svIdle(17), plen 0: [] -EVENT[13828]: 1.624810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[13829]: 1.624823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13830]: 1.624832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[13831]: 1.624840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13832]: 1.624849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[13833]: 1.624861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[13834]: 1.624870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[13835]: 1.624878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[13836]: 1.624887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13837]: 1.624896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13838]: 1.624905800 - core[0].svIdle(17), plen 0: [] -EVENT[13839]: 1.624920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13840]: 1.624969875 - core[1].svPrint(26), plen 64: [msg: I (1951) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.624969875] LOG: I (1951) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[13841]: 1.624985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.624985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13842]: 1.625005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[13843]: 1.625018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13844]: 1.625027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13845]: 1.625042900 - core[1].svIdle(17), plen 0: [] -EVENT[13846]: 1.625617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13847]: 1.625629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[13848]: 1.625638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13849]: 1.625652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[13850]: 1.625676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 330, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.625676975] HEAP: Allocated 330 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13851]: 1.625689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13852]: 1.625703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13853]: 1.625747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13854]: 1.625769450 - core[0].svPrint(26), plen 72: [msg: I (1952) example: Task[0x3ffb8600]: allocated 330 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.625769450] LOG: I (1952) example: Task[0x3ffb8600]: allocated 330 bytes @ 0x3ffb4b10 -EVENT[13855]: 1.625778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13856]: 1.625786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13857]: 1.625797075 - core[1].svIdle(17), plen 0: [] -EVENT[13858]: 1.625807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[13859]: 1.625820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13860]: 1.625829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[13861]: 1.625837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13862]: 1.625845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[13863]: 1.625858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[13864]: 1.625866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[13865]: 1.625879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[13866]: 1.625887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13867]: 1.625895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[13868]: 1.625905800 - core[0].svIdle(17), plen 0: [] -EVENT[13869]: 1.625920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[13870]: 1.625970075 - core[1].svPrint(26), plen 64: [msg: I (1952) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.625970075] LOG: I (1952) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[13871]: 1.625985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.625985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[13872]: 1.626003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[13873]: 1.626016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[13874]: 1.626025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13875]: 1.626040625 - core[1].svIdle(17), plen 0: [] -EVENT[13876]: 1.626617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13877]: 1.626629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13878]: 1.626643175 - core[0].svIdle(17), plen 0: [] -EVENT[13879]: 1.626747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13880]: 1.626756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13881]: 1.626770600 - core[1].svIdle(17), plen 0: [] -EVENT[13882]: 1.627617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13883]: 1.627629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13884]: 1.627643125 - core[0].svIdle(17), plen 0: [] -EVENT[13885]: 1.627747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13886]: 1.627757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13887]: 1.627770775 - core[1].svIdle(17), plen 0: [] -EVENT[13888]: 1.628617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13889]: 1.628629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13890]: 1.628643125 - core[0].svIdle(17), plen 0: [] -EVENT[13891]: 1.628747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13892]: 1.628756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13893]: 1.628770600 - core[1].svIdle(17), plen 0: [] -EVENT[13894]: 1.629617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13895]: 1.629629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13896]: 1.629643250 - core[0].svIdle(17), plen 0: [] -EVENT[13897]: 1.629747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13898]: 1.629756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13899]: 1.629770600 - core[1].svIdle(17), plen 0: [] -EVENT[13900]: 1.630617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13901]: 1.630631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13902]: 1.630645550 - core[0].svIdle(17), plen 0: [] -EVENT[13903]: 1.630747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13904]: 1.630756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13905]: 1.630770600 - core[1].svIdle(17), plen 0: [] -EVENT[13906]: 1.631617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13907]: 1.631629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13908]: 1.631643125 - core[0].svIdle(17), plen 0: [] -EVENT[13909]: 1.631747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13910]: 1.631757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13911]: 1.631770775 - core[1].svIdle(17), plen 0: [] -EVENT[13912]: 1.632617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13913]: 1.632629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13914]: 1.632643125 - core[0].svIdle(17), plen 0: [] -EVENT[13915]: 1.632747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13916]: 1.632756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13917]: 1.632770600 - core[1].svIdle(17), plen 0: [] -EVENT[13918]: 1.633617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13919]: 1.633629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13920]: 1.633643250 - core[0].svIdle(17), plen 0: [] -EVENT[13921]: 1.633747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13922]: 1.633756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13923]: 1.633770600 - core[1].svIdle(17), plen 0: [] -EVENT[13924]: 1.634617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13925]: 1.634629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13926]: 1.634643175 - core[0].svIdle(17), plen 0: [] -EVENT[13927]: 1.634747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13928]: 1.634756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13929]: 1.634770600 - core[1].svIdle(17), plen 0: [] -EVENT[13930]: 1.635617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13931]: 1.635629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13932]: 1.635643125 - core[0].svIdle(17), plen 0: [] -EVENT[13933]: 1.635747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13934]: 1.635757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13935]: 1.635770775 - core[1].svIdle(17), plen 0: [] -EVENT[13936]: 1.636617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13937]: 1.636629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13938]: 1.636643125 - core[0].svIdle(17), plen 0: [] -EVENT[13939]: 1.636747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13940]: 1.636756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13941]: 1.636770600 - core[1].svIdle(17), plen 0: [] -EVENT[13942]: 1.637617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13943]: 1.637629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13944]: 1.637643250 - core[0].svIdle(17), plen 0: [] -EVENT[13945]: 1.637747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13946]: 1.637756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13947]: 1.637770600 - core[1].svIdle(17), plen 0: [] -EVENT[13948]: 1.638617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13949]: 1.638629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13950]: 1.638643175 - core[0].svIdle(17), plen 0: [] -EVENT[13951]: 1.638747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13952]: 1.638756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13953]: 1.638770600 - core[1].svIdle(17), plen 0: [] -EVENT[13954]: 1.639617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13955]: 1.639629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13956]: 1.639643125 - core[0].svIdle(17), plen 0: [] -EVENT[13957]: 1.639747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13958]: 1.639757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13959]: 1.639770775 - core[1].svIdle(17), plen 0: [] -EVENT[13960]: 1.640617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13961]: 1.640629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13962]: 1.640643125 - core[0].svIdle(17), plen 0: [] -EVENT[13963]: 1.640747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13964]: 1.640756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13965]: 1.640770600 - core[1].svIdle(17), plen 0: [] -EVENT[13966]: 1.641617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13967]: 1.641629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13968]: 1.641643250 - core[0].svIdle(17), plen 0: [] -EVENT[13969]: 1.641747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13970]: 1.641756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13971]: 1.641770600 - core[1].svIdle(17), plen 0: [] -EVENT[13972]: 1.642617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13973]: 1.642632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13974]: 1.642646225 - core[0].svIdle(17), plen 0: [] -EVENT[13975]: 1.642747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13976]: 1.642756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13977]: 1.642770600 - core[1].svIdle(17), plen 0: [] -EVENT[13978]: 1.643617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13979]: 1.643629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13980]: 1.643643125 - core[0].svIdle(17), plen 0: [] -EVENT[13981]: 1.643747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13982]: 1.643757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13983]: 1.643770775 - core[1].svIdle(17), plen 0: [] -EVENT[13984]: 1.644617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13985]: 1.644629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13986]: 1.644643125 - core[0].svIdle(17), plen 0: [] -EVENT[13987]: 1.644747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13988]: 1.644756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13989]: 1.644770600 - core[1].svIdle(17), plen 0: [] -EVENT[13990]: 1.645617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13991]: 1.645629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13992]: 1.645643250 - core[0].svIdle(17), plen 0: [] -EVENT[13993]: 1.645747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13994]: 1.645756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[13995]: 1.645770600 - core[1].svIdle(17), plen 0: [] -EVENT[13996]: 1.646617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[13997]: 1.646629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[13998]: 1.646643175 - core[0].svIdle(17), plen 0: [] -EVENT[13999]: 1.646747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14000]: 1.646756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14001]: 1.646770600 - core[1].svIdle(17), plen 0: [] -EVENT[14002]: 1.647617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14003]: 1.647629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14004]: 1.647643125 - core[0].svIdle(17), plen 0: [] -EVENT[14005]: 1.647747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14006]: 1.647757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14007]: 1.647770775 - core[1].svIdle(17), plen 0: [] -EVENT[14008]: 1.648617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14009]: 1.648629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14010]: 1.648643125 - core[0].svIdle(17), plen 0: [] -EVENT[14011]: 1.648747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14012]: 1.648756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14013]: 1.648770600 - core[1].svIdle(17), plen 0: [] -EVENT[14014]: 1.649617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14015]: 1.649629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14016]: 1.649643250 - core[0].svIdle(17), plen 0: [] -EVENT[14017]: 1.649747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14018]: 1.649756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14019]: 1.649770600 - core[1].svIdle(17), plen 0: [] -EVENT[14020]: 1.650617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14021]: 1.650629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14022]: 1.650643175 - core[0].svIdle(17), plen 0: [] -EVENT[14023]: 1.650747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14024]: 1.650756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14025]: 1.650770600 - core[1].svIdle(17), plen 0: [] -EVENT[14026]: 1.651617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14027]: 1.651629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14028]: 1.651643125 - core[0].svIdle(17), plen 0: [] -EVENT[14029]: 1.651747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14030]: 1.651757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14031]: 1.651770775 - core[1].svIdle(17), plen 0: [] -EVENT[14032]: 1.652617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14033]: 1.652629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14034]: 1.652643125 - core[0].svIdle(17), plen 0: [] -EVENT[14035]: 1.652747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14036]: 1.652756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14037]: 1.652770600 - core[1].svIdle(17), plen 0: [] -EVENT[14038]: 1.653617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14039]: 1.653629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[14040]: 1.653638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14041]: 1.653652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[14042]: 1.653676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 112, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.653676950] HEAP: Allocated 112 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14043]: 1.653692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14044]: 1.653706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14045]: 1.653747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14046]: 1.653768400 - core[0].svPrint(26), plen 72: [msg: I (1980) example: Task[0x3ffb7f40]: allocated 112 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.653768400] LOG: I (1980) example: Task[0x3ffb7f40]: allocated 112 bytes @ 0x3ffb87e4 -EVENT[14047]: 1.653777475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14048]: 1.653785875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14049]: 1.653796400 - core[1].svIdle(17), plen 0: [] -EVENT[14050]: 1.653807175 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[14051]: 1.653820150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14052]: 1.653828850 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[14053]: 1.653836750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14054]: 1.653845425 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[14055]: 1.653858175 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[14056]: 1.653866425 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[14057]: 1.653874725 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[14058]: 1.653883750 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14059]: 1.653892500 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14060]: 1.653902400 - core[0].svIdle(17), plen 0: [] -EVENT[14061]: 1.653917225 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14062]: 1.653966575 - core[1].svPrint(26), plen 64: [msg: I (1980) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.653966575] LOG: I (1980) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[14063]: 1.653985025 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.653985025] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14064]: 1.654003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[14065]: 1.654016275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14066]: 1.654025075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14067]: 1.654040650 - core[1].svIdle(17), plen 0: [] -EVENT[14068]: 1.654617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14069]: 1.654629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[14070]: 1.654638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14071]: 1.654652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[14072]: 1.654677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 224, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.654677000] HEAP: Allocated 224 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14073]: 1.654689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14074]: 1.654703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14075]: 1.654747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14076]: 1.654769475 - core[0].svPrint(26), plen 72: [msg: I (1981) example: Task[0x3ffb82a0]: allocated 224 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.654769475] LOG: I (1981) example: Task[0x3ffb82a0]: allocated 224 bytes @ 0x3ffb4b10 -EVENT[14077]: 1.654781225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14078]: 1.654789725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14079]: 1.654800100 - core[1].svIdle(17), plen 0: [] -EVENT[14080]: 1.654810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[14081]: 1.654823900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14082]: 1.654832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[14083]: 1.654840400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14084]: 1.654848975 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[14085]: 1.654861625 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[14086]: 1.654870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[14087]: 1.654878325 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[14088]: 1.654887200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14089]: 1.654896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14090]: 1.654905775 - core[0].svIdle(17), plen 0: [] -EVENT[14091]: 1.654920600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14092]: 1.654969850 - core[1].svPrint(26), plen 64: [msg: I (1981) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.654969850] LOG: I (1981) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[14093]: 1.654985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.654985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14094]: 1.655006425 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[14095]: 1.655019125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14096]: 1.655027925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14097]: 1.655043500 - core[1].svIdle(17), plen 0: [] -EVENT[14098]: 1.655617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14099]: 1.655629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[14100]: 1.655638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14101]: 1.655652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[14102]: 1.655676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 336, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.655676975] HEAP: Allocated 336 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14103]: 1.655689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14104]: 1.655703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14105]: 1.655747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14106]: 1.655769450 - core[0].svPrint(26), plen 72: [msg: I (1982) example: Task[0x3ffb8600]: allocated 336 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.655769450] LOG: I (1982) example: Task[0x3ffb8600]: allocated 336 bytes @ 0x3ffb4b10 -EVENT[14107]: 1.655778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14108]: 1.655786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14109]: 1.655797075 - core[1].svIdle(17), plen 0: [] -EVENT[14110]: 1.655807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[14111]: 1.655820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14112]: 1.655829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[14113]: 1.655837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14114]: 1.655845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[14115]: 1.655858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[14116]: 1.655866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[14117]: 1.655879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[14118]: 1.655887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14119]: 1.655895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14120]: 1.655905825 - core[0].svIdle(17), plen 0: [] -EVENT[14121]: 1.655920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14122]: 1.655970100 - core[1].svPrint(26), plen 64: [msg: I (1982) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.655970100] LOG: I (1982) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[14123]: 1.655985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.655985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14124]: 1.656003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[14125]: 1.656016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14126]: 1.656025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14127]: 1.656040650 - core[1].svIdle(17), plen 0: [] -EVENT[14128]: 1.656617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14129]: 1.656629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14130]: 1.656643175 - core[0].svIdle(17), plen 0: [] -EVENT[14131]: 1.656747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14132]: 1.656756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14133]: 1.656770600 - core[1].svIdle(17), plen 0: [] -EVENT[14134]: 1.657617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14135]: 1.657629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14136]: 1.657643125 - core[0].svIdle(17), plen 0: [] -EVENT[14137]: 1.657747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14138]: 1.657757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14139]: 1.657770775 - core[1].svIdle(17), plen 0: [] -EVENT[14140]: 1.658617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14141]: 1.658629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14142]: 1.658643125 - core[0].svIdle(17), plen 0: [] -EVENT[14143]: 1.658747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14144]: 1.658756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14145]: 1.658770600 - core[1].svIdle(17), plen 0: [] -EVENT[14146]: 1.659617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14147]: 1.659629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14148]: 1.659643250 - core[0].svIdle(17), plen 0: [] -EVENT[14149]: 1.659747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14150]: 1.659756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14151]: 1.659770600 - core[1].svIdle(17), plen 0: [] -EVENT[14152]: 1.660617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14153]: 1.660632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14154]: 1.660646225 - core[0].svIdle(17), plen 0: [] -EVENT[14155]: 1.660747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14156]: 1.660756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14157]: 1.660770600 - core[1].svIdle(17), plen 0: [] -EVENT[14158]: 1.661617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14159]: 1.661629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14160]: 1.661643125 - core[0].svIdle(17), plen 0: [] -EVENT[14161]: 1.661747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14162]: 1.661757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14163]: 1.661770775 - core[1].svIdle(17), plen 0: [] -EVENT[14164]: 1.662617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14165]: 1.662629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14166]: 1.662643125 - core[0].svIdle(17), plen 0: [] -EVENT[14167]: 1.662747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14168]: 1.662756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14169]: 1.662770600 - core[1].svIdle(17), plen 0: [] -EVENT[14170]: 1.663617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14171]: 1.663629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14172]: 1.663643250 - core[0].svIdle(17), plen 0: [] -EVENT[14173]: 1.663747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14174]: 1.663756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14175]: 1.663770600 - core[1].svIdle(17), plen 0: [] -EVENT[14176]: 1.664617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14177]: 1.664629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14178]: 1.664643175 - core[0].svIdle(17), plen 0: [] -EVENT[14179]: 1.664747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14180]: 1.664756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14181]: 1.664770600 - core[1].svIdle(17), plen 0: [] -EVENT[14182]: 1.665617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14183]: 1.665629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14184]: 1.665643125 - core[0].svIdle(17), plen 0: [] -EVENT[14185]: 1.665747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14186]: 1.665757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14187]: 1.665770775 - core[1].svIdle(17), plen 0: [] -EVENT[14188]: 1.666617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14189]: 1.666629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14190]: 1.666643125 - core[0].svIdle(17), plen 0: [] -EVENT[14191]: 1.666747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14192]: 1.666756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14193]: 1.666770600 - core[1].svIdle(17), plen 0: [] -EVENT[14194]: 1.667617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14195]: 1.667629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14196]: 1.667643250 - core[0].svIdle(17), plen 0: [] -EVENT[14197]: 1.667747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14198]: 1.667756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14199]: 1.667770600 - core[1].svIdle(17), plen 0: [] -EVENT[14200]: 1.668617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14201]: 1.668629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14202]: 1.668643175 - core[0].svIdle(17), plen 0: [] -EVENT[14203]: 1.668747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14204]: 1.668756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14205]: 1.668770600 - core[1].svIdle(17), plen 0: [] -EVENT[14206]: 1.669617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14207]: 1.669629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14208]: 1.669643125 - core[0].svIdle(17), plen 0: [] -EVENT[14209]: 1.669747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14210]: 1.669757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14211]: 1.669770775 - core[1].svIdle(17), plen 0: [] -EVENT[14212]: 1.670617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14213]: 1.670629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14214]: 1.670643125 - core[0].svIdle(17), plen 0: [] -EVENT[14215]: 1.670747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14216]: 1.670756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14217]: 1.670770600 - core[1].svIdle(17), plen 0: [] -EVENT[14218]: 1.671617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14219]: 1.671629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14220]: 1.671643250 - core[0].svIdle(17), plen 0: [] -EVENT[14221]: 1.671747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14222]: 1.671756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14223]: 1.671770600 - core[1].svIdle(17), plen 0: [] -EVENT[14224]: 1.672617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14225]: 1.672633975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14226]: 1.672647600 - core[0].svIdle(17), plen 0: [] -EVENT[14227]: 1.672747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14228]: 1.672756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14229]: 1.672770600 - core[1].svIdle(17), plen 0: [] -EVENT[14230]: 1.673617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14231]: 1.673629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14232]: 1.673643125 - core[0].svIdle(17), plen 0: [] -EVENT[14233]: 1.673747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14234]: 1.673757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14235]: 1.673770775 - core[1].svIdle(17), plen 0: [] -EVENT[14236]: 1.674617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14237]: 1.674629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14238]: 1.674643125 - core[0].svIdle(17), plen 0: [] -EVENT[14239]: 1.674747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14240]: 1.674756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14241]: 1.674770600 - core[1].svIdle(17), plen 0: [] -EVENT[14242]: 1.675617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14243]: 1.675629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14244]: 1.675643250 - core[0].svIdle(17), plen 0: [] -EVENT[14245]: 1.675747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14246]: 1.675756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14247]: 1.675770600 - core[1].svIdle(17), plen 0: [] -EVENT[14248]: 1.676617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14249]: 1.676629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14250]: 1.676643175 - core[0].svIdle(17), plen 0: [] -EVENT[14251]: 1.676747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14252]: 1.676756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14253]: 1.676770600 - core[1].svIdle(17), plen 0: [] -EVENT[14254]: 1.677617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14255]: 1.677629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14256]: 1.677643125 - core[0].svIdle(17), plen 0: [] -EVENT[14257]: 1.677747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14258]: 1.677757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14259]: 1.677770775 - core[1].svIdle(17), plen 0: [] -EVENT[14260]: 1.678617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14261]: 1.678629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14262]: 1.678643125 - core[0].svIdle(17), plen 0: [] -EVENT[14263]: 1.678747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14264]: 1.678756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14265]: 1.678770600 - core[1].svIdle(17), plen 0: [] -EVENT[14266]: 1.679617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14267]: 1.679629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14268]: 1.679643250 - core[0].svIdle(17), plen 0: [] -EVENT[14269]: 1.679747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14270]: 1.679756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14271]: 1.679770600 - core[1].svIdle(17), plen 0: [] -EVENT[14272]: 1.680617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14273]: 1.680629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14274]: 1.680643175 - core[0].svIdle(17), plen 0: [] -EVENT[14275]: 1.680747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14276]: 1.680756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14277]: 1.680770600 - core[1].svIdle(17), plen 0: [] -EVENT[14278]: 1.681617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14279]: 1.681629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14280]: 1.681643125 - core[0].svIdle(17), plen 0: [] -EVENT[14281]: 1.681747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14282]: 1.681757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14283]: 1.681770775 - core[1].svIdle(17), plen 0: [] -EVENT[14284]: 1.682617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14285]: 1.682629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14286]: 1.682643125 - core[0].svIdle(17), plen 0: [] -EVENT[14287]: 1.682747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14288]: 1.682756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14289]: 1.682770600 - core[1].svIdle(17), plen 0: [] -EVENT[14290]: 1.683617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14291]: 1.683629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[14292]: 1.683638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14293]: 1.683652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[14294]: 1.683676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 114, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.683676950] HEAP: Allocated 114 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14295]: 1.683692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14296]: 1.683706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14297]: 1.683747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14298]: 1.683768400 - core[0].svPrint(26), plen 72: [msg: I (2010) example: Task[0x3ffb7f40]: allocated 114 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.683768400] LOG: I (2010) example: Task[0x3ffb7f40]: allocated 114 bytes @ 0x3ffb87e4 -EVENT[14299]: 1.683777475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14300]: 1.683785875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14301]: 1.683796400 - core[1].svIdle(17), plen 0: [] -EVENT[14302]: 1.683807175 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[14303]: 1.683820150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14304]: 1.683828850 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[14305]: 1.683836750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14306]: 1.683845425 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[14307]: 1.683858175 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[14308]: 1.683866425 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[14309]: 1.683874725 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[14310]: 1.683883750 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14311]: 1.683892500 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14312]: 1.683902400 - core[0].svIdle(17), plen 0: [] -EVENT[14313]: 1.683917225 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14314]: 1.683966575 - core[1].svPrint(26), plen 64: [msg: I (2010) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.683966575] LOG: I (2010) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[14315]: 1.683985025 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.683985025] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14316]: 1.684003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[14317]: 1.684016275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14318]: 1.684025075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14319]: 1.684040650 - core[1].svIdle(17), plen 0: [] -EVENT[14320]: 1.684617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14321]: 1.684629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[14322]: 1.684638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14323]: 1.684652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[14324]: 1.684677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 228, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.684677000] HEAP: Allocated 228 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14325]: 1.684689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14326]: 1.684703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14327]: 1.684747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14328]: 1.684769475 - core[0].svPrint(26), plen 72: [msg: I (2011) example: Task[0x3ffb82a0]: allocated 228 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.684769475] LOG: I (2011) example: Task[0x3ffb82a0]: allocated 228 bytes @ 0x3ffb4b10 -EVENT[14329]: 1.684781225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14330]: 1.684789725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14331]: 1.684800100 - core[1].svIdle(17), plen 0: [] -EVENT[14332]: 1.684810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[14333]: 1.684823900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14334]: 1.684832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[14335]: 1.684840400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14336]: 1.684848975 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[14337]: 1.684861625 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[14338]: 1.684870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[14339]: 1.684878325 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[14340]: 1.684887200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14341]: 1.684896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14342]: 1.684905775 - core[0].svIdle(17), plen 0: [] -EVENT[14343]: 1.684920600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14344]: 1.684969850 - core[1].svPrint(26), plen 64: [msg: I (2011) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.684969850] LOG: I (2011) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[14345]: 1.684985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.684985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14346]: 1.685006425 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[14347]: 1.685019125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14348]: 1.685027925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14349]: 1.685043500 - core[1].svIdle(17), plen 0: [] -EVENT[14350]: 1.685617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14351]: 1.685629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[14352]: 1.685638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14353]: 1.685652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[14354]: 1.685676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 342, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.685676975] HEAP: Allocated 342 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14355]: 1.685689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14356]: 1.685703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14357]: 1.685747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14358]: 1.685769450 - core[0].svPrint(26), plen 72: [msg: I (2012) example: Task[0x3ffb8600]: allocated 342 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.685769450] LOG: I (2012) example: Task[0x3ffb8600]: allocated 342 bytes @ 0x3ffb4b10 -EVENT[14359]: 1.685778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14360]: 1.685786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14361]: 1.685797075 - core[1].svIdle(17), plen 0: [] -EVENT[14362]: 1.685807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[14363]: 1.685820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14364]: 1.685829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[14365]: 1.685837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14366]: 1.685845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[14367]: 1.685858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[14368]: 1.685866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[14369]: 1.685879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[14370]: 1.685887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14371]: 1.685895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14372]: 1.685905825 - core[0].svIdle(17), plen 0: [] -EVENT[14373]: 1.685920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14374]: 1.685970100 - core[1].svPrint(26), plen 64: [msg: I (2012) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.685970100] LOG: I (2012) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[14375]: 1.685985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.685985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14376]: 1.686003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[14377]: 1.686016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14378]: 1.686025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14379]: 1.686040650 - core[1].svIdle(17), plen 0: [] -EVENT[14380]: 1.686617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14381]: 1.686629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14382]: 1.686643175 - core[0].svIdle(17), plen 0: [] -EVENT[14383]: 1.686747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14384]: 1.686756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14385]: 1.686770600 - core[1].svIdle(17), plen 0: [] -EVENT[14386]: 1.687617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14387]: 1.687629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14388]: 1.687643125 - core[0].svIdle(17), plen 0: [] -EVENT[14389]: 1.687747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14390]: 1.687757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14391]: 1.687770775 - core[1].svIdle(17), plen 0: [] -EVENT[14392]: 1.688617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14393]: 1.688629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14394]: 1.688643125 - core[0].svIdle(17), plen 0: [] -EVENT[14395]: 1.688747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14396]: 1.688756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14397]: 1.688770600 - core[1].svIdle(17), plen 0: [] -EVENT[14398]: 1.689617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14399]: 1.689629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14400]: 1.689643250 - core[0].svIdle(17), plen 0: [] -EVENT[14401]: 1.689747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14402]: 1.689756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14403]: 1.689770600 - core[1].svIdle(17), plen 0: [] -EVENT[14404]: 1.690617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14405]: 1.690632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14406]: 1.690646225 - core[0].svIdle(17), plen 0: [] -EVENT[14407]: 1.690747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14408]: 1.690756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14409]: 1.690770600 - core[1].svIdle(17), plen 0: [] -EVENT[14410]: 1.691617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14411]: 1.691629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14412]: 1.691643125 - core[0].svIdle(17), plen 0: [] -EVENT[14413]: 1.691747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14414]: 1.691757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14415]: 1.691770775 - core[1].svIdle(17), plen 0: [] -EVENT[14416]: 1.692617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14417]: 1.692629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14418]: 1.692643125 - core[0].svIdle(17), plen 0: [] -EVENT[14419]: 1.692747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14420]: 1.692756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14421]: 1.692770600 - core[1].svIdle(17), plen 0: [] -EVENT[14422]: 1.693617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14423]: 1.693629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14424]: 1.693643250 - core[0].svIdle(17), plen 0: [] -EVENT[14425]: 1.693747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14426]: 1.693756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14427]: 1.693770600 - core[1].svIdle(17), plen 0: [] -EVENT[14428]: 1.694617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14429]: 1.694629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14430]: 1.694643175 - core[0].svIdle(17), plen 0: [] -EVENT[14431]: 1.694747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14432]: 1.694756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14433]: 1.694770600 - core[1].svIdle(17), plen 0: [] -EVENT[14434]: 1.695617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14435]: 1.695629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14436]: 1.695643125 - core[0].svIdle(17), plen 0: [] -EVENT[14437]: 1.695747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14438]: 1.695757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14439]: 1.695770775 - core[1].svIdle(17), plen 0: [] -EVENT[14440]: 1.696617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14441]: 1.696629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14442]: 1.696643125 - core[0].svIdle(17), plen 0: [] -EVENT[14443]: 1.696747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14444]: 1.696756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14445]: 1.696770600 - core[1].svIdle(17), plen 0: [] -EVENT[14446]: 1.697617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14447]: 1.697629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14448]: 1.697643250 - core[0].svIdle(17), plen 0: [] -EVENT[14449]: 1.697747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14450]: 1.697756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14451]: 1.697770600 - core[1].svIdle(17), plen 0: [] -EVENT[14452]: 1.698617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14453]: 1.698629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14454]: 1.698643175 - core[0].svIdle(17), plen 0: [] -EVENT[14455]: 1.698747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14456]: 1.698756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14457]: 1.698770600 - core[1].svIdle(17), plen 0: [] -EVENT[14458]: 1.699617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14459]: 1.699629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14460]: 1.699643125 - core[0].svIdle(17), plen 0: [] -EVENT[14461]: 1.699747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14462]: 1.699757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14463]: 1.699770775 - core[1].svIdle(17), plen 0: [] -EVENT[14464]: 1.700617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14465]: 1.700629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14466]: 1.700643125 - core[0].svIdle(17), plen 0: [] -EVENT[14467]: 1.700747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14468]: 1.700756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14469]: 1.700770600 - core[1].svIdle(17), plen 0: [] -EVENT[14470]: 1.701617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14471]: 1.701629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14472]: 1.701643250 - core[0].svIdle(17), plen 0: [] -EVENT[14473]: 1.701747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14474]: 1.701756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14475]: 1.701770600 - core[1].svIdle(17), plen 0: [] -EVENT[14476]: 1.702617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14477]: 1.702632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14478]: 1.702646225 - core[0].svIdle(17), plen 0: [] -EVENT[14479]: 1.702747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14480]: 1.702756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14481]: 1.702770600 - core[1].svIdle(17), plen 0: [] -EVENT[14482]: 1.703617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14483]: 1.703629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14484]: 1.703643125 - core[0].svIdle(17), plen 0: [] -EVENT[14485]: 1.703747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14486]: 1.703757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14487]: 1.703770775 - core[1].svIdle(17), plen 0: [] -EVENT[14488]: 1.704617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14489]: 1.704629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14490]: 1.704643125 - core[0].svIdle(17), plen 0: [] -EVENT[14491]: 1.704747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14492]: 1.704756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14493]: 1.704770600 - core[1].svIdle(17), plen 0: [] -EVENT[14494]: 1.705617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14495]: 1.705629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14496]: 1.705643250 - core[0].svIdle(17), plen 0: [] -EVENT[14497]: 1.705747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14498]: 1.705756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14499]: 1.705770600 - core[1].svIdle(17), plen 0: [] -EVENT[14500]: 1.706617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14501]: 1.706629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14502]: 1.706643175 - core[0].svIdle(17), plen 0: [] -EVENT[14503]: 1.706747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14504]: 1.706756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14505]: 1.706770600 - core[1].svIdle(17), plen 0: [] -EVENT[14506]: 1.707617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14507]: 1.707629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14508]: 1.707643125 - core[0].svIdle(17), plen 0: [] -EVENT[14509]: 1.707747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14510]: 1.707757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14511]: 1.707770775 - core[1].svIdle(17), plen 0: [] -EVENT[14512]: 1.708617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14513]: 1.708629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14514]: 1.708643125 - core[0].svIdle(17), plen 0: [] -EVENT[14515]: 1.708747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14516]: 1.708756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14517]: 1.708770600 - core[1].svIdle(17), plen 0: [] -EVENT[14518]: 1.709617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14519]: 1.709629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14520]: 1.709643250 - core[0].svIdle(17), plen 0: [] -EVENT[14521]: 1.709747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14522]: 1.709756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14523]: 1.709770600 - core[1].svIdle(17), plen 0: [] -EVENT[14524]: 1.710617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14525]: 1.710629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14526]: 1.710643175 - core[0].svIdle(17), plen 0: [] -EVENT[14527]: 1.710747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14528]: 1.710756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14529]: 1.710770600 - core[1].svIdle(17), plen 0: [] -EVENT[14530]: 1.711617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14531]: 1.711629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14532]: 1.711643125 - core[0].svIdle(17), plen 0: [] -EVENT[14533]: 1.711747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14534]: 1.711757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14535]: 1.711770775 - core[1].svIdle(17), plen 0: [] -EVENT[14536]: 1.712617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14537]: 1.712629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14538]: 1.712643125 - core[0].svIdle(17), plen 0: [] -EVENT[14539]: 1.712747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14540]: 1.712756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14541]: 1.712770600 - core[1].svIdle(17), plen 0: [] -EVENT[14542]: 1.713617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14543]: 1.713629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[14544]: 1.713638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14545]: 1.713652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[14546]: 1.713676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 116, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.713676950] HEAP: Allocated 116 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14547]: 1.713692625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14548]: 1.713706700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14549]: 1.713747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14550]: 1.713768800 - core[0].svPrint(26), plen 72: [msg: I (2040) example: Task[0x3ffb7f40]: allocated 116 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.713768800] LOG: I (2040) example: Task[0x3ffb7f40]: allocated 116 bytes @ 0x3ffb87e4 -EVENT[14551]: 1.713777050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14552]: 1.713785200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14553]: 1.713796100 - core[1].svIdle(17), plen 0: [] -EVENT[14554]: 1.713806875 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[14555]: 1.713819850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14556]: 1.713828550 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[14557]: 1.713836450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14558]: 1.713845125 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[14559]: 1.713857875 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[14560]: 1.713866125 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[14561]: 1.713874425 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[14562]: 1.713883450 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14563]: 1.713892200 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14564]: 1.713902100 - core[0].svIdle(17), plen 0: [] -EVENT[14565]: 1.713916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14566]: 1.713966275 - core[1].svPrint(26), plen 64: [msg: I (2040) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.713966275] LOG: I (2040) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[14567]: 1.713984725 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.713984725] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14568]: 1.714003275 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[14569]: 1.714015975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14570]: 1.714024775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14571]: 1.714040350 - core[1].svIdle(17), plen 0: [] -EVENT[14572]: 1.714617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14573]: 1.714629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[14574]: 1.714638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14575]: 1.714652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[14576]: 1.714677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 232, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.714677000] HEAP: Allocated 232 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14577]: 1.714689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14578]: 1.714703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14579]: 1.714747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14580]: 1.714769475 - core[0].svPrint(26), plen 72: [msg: I (2041) example: Task[0x3ffb82a0]: allocated 232 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.714769475] LOG: I (2041) example: Task[0x3ffb82a0]: allocated 232 bytes @ 0x3ffb4b10 -EVENT[14581]: 1.714780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14582]: 1.714789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14583]: 1.714798950 - core[1].svIdle(17), plen 0: [] -EVENT[14584]: 1.714809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[14585]: 1.714822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14586]: 1.714831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[14587]: 1.714839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14588]: 1.714847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[14589]: 1.714860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[14590]: 1.714868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[14591]: 1.714877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[14592]: 1.714886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14593]: 1.714895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14594]: 1.714904625 - core[0].svIdle(17), plen 0: [] -EVENT[14595]: 1.714919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14596]: 1.714968700 - core[1].svPrint(26), plen 64: [msg: I (2041) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.714968700] LOG: I (2041) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[14597]: 1.714984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.714984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14598]: 1.715005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[14599]: 1.715018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14600]: 1.715026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14601]: 1.715042425 - core[1].svIdle(17), plen 0: [] -EVENT[14602]: 1.715617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14603]: 1.715629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[14604]: 1.715638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14605]: 1.715652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[14606]: 1.715676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 348, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.715676975] HEAP: Allocated 348 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14607]: 1.715689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14608]: 1.715703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14609]: 1.715747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14610]: 1.715769450 - core[0].svPrint(26), plen 72: [msg: I (2042) example: Task[0x3ffb8600]: allocated 348 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.715769450] LOG: I (2042) example: Task[0x3ffb8600]: allocated 348 bytes @ 0x3ffb4b10 -EVENT[14611]: 1.715778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14612]: 1.715786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14613]: 1.715797075 - core[1].svIdle(17), plen 0: [] -EVENT[14614]: 1.715807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[14615]: 1.715820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14616]: 1.715829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[14617]: 1.715837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14618]: 1.715845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[14619]: 1.715858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[14620]: 1.715866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[14621]: 1.715879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[14622]: 1.715887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14623]: 1.715895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14624]: 1.715905825 - core[0].svIdle(17), plen 0: [] -EVENT[14625]: 1.715920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14626]: 1.715970100 - core[1].svPrint(26), plen 64: [msg: I (2042) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.715970100] LOG: I (2042) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[14627]: 1.715985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.715985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14628]: 1.716003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[14629]: 1.716016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14630]: 1.716025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14631]: 1.716040650 - core[1].svIdle(17), plen 0: [] -EVENT[14632]: 1.716617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14633]: 1.716629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14634]: 1.716643175 - core[0].svIdle(17), plen 0: [] -EVENT[14635]: 1.716747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14636]: 1.716756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14637]: 1.716770600 - core[1].svIdle(17), plen 0: [] -EVENT[14638]: 1.717617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14639]: 1.717629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14640]: 1.717643125 - core[0].svIdle(17), plen 0: [] -EVENT[14641]: 1.717747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14642]: 1.717757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14643]: 1.717770775 - core[1].svIdle(17), plen 0: [] -EVENT[14644]: 1.718617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14645]: 1.718629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14646]: 1.718643125 - core[0].svIdle(17), plen 0: [] -EVENT[14647]: 1.718747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14648]: 1.718756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14649]: 1.718770600 - core[1].svIdle(17), plen 0: [] -EVENT[14650]: 1.719617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14651]: 1.719629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14652]: 1.719643250 - core[0].svIdle(17), plen 0: [] -EVENT[14653]: 1.719747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14654]: 1.719756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14655]: 1.719770600 - core[1].svIdle(17), plen 0: [] -EVENT[14656]: 1.720617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14657]: 1.720632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14658]: 1.720646225 - core[0].svIdle(17), plen 0: [] -EVENT[14659]: 1.720747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14660]: 1.720756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14661]: 1.720770600 - core[1].svIdle(17), plen 0: [] -EVENT[14662]: 1.721617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14663]: 1.721629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14664]: 1.721643125 - core[0].svIdle(17), plen 0: [] -EVENT[14665]: 1.721747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14666]: 1.721757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14667]: 1.721770775 - core[1].svIdle(17), plen 0: [] -EVENT[14668]: 1.722617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14669]: 1.722629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14670]: 1.722643125 - core[0].svIdle(17), plen 0: [] -EVENT[14671]: 1.722747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14672]: 1.722756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14673]: 1.722770600 - core[1].svIdle(17), plen 0: [] -EVENT[14674]: 1.723617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14675]: 1.723629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14676]: 1.723643250 - core[0].svIdle(17), plen 0: [] -EVENT[14677]: 1.723747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14678]: 1.723756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14679]: 1.723770600 - core[1].svIdle(17), plen 0: [] -EVENT[14680]: 1.724617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14681]: 1.724629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14682]: 1.724643175 - core[0].svIdle(17), plen 0: [] -EVENT[14683]: 1.724747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14684]: 1.724756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14685]: 1.724770600 - core[1].svIdle(17), plen 0: [] -EVENT[14686]: 1.725617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14687]: 1.725629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14688]: 1.725643125 - core[0].svIdle(17), plen 0: [] -EVENT[14689]: 1.725747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14690]: 1.725757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14691]: 1.725770775 - core[1].svIdle(17), plen 0: [] -EVENT[14692]: 1.726617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14693]: 1.726629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14694]: 1.726643125 - core[0].svIdle(17), plen 0: [] -EVENT[14695]: 1.726747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14696]: 1.726756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14697]: 1.726770600 - core[1].svIdle(17), plen 0: [] -EVENT[14698]: 1.727617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14699]: 1.727629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14700]: 1.727643250 - core[0].svIdle(17), plen 0: [] -EVENT[14701]: 1.727747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14702]: 1.727756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14703]: 1.727770600 - core[1].svIdle(17), plen 0: [] -EVENT[14704]: 1.728617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14705]: 1.728629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14706]: 1.728643175 - core[0].svIdle(17), plen 0: [] -EVENT[14707]: 1.728747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14708]: 1.728756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14709]: 1.728770600 - core[1].svIdle(17), plen 0: [] -EVENT[14710]: 1.729617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14711]: 1.729629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14712]: 1.729643125 - core[0].svIdle(17), plen 0: [] -EVENT[14713]: 1.729747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14714]: 1.729757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14715]: 1.729770775 - core[1].svIdle(17), plen 0: [] -EVENT[14716]: 1.730617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14717]: 1.730629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14718]: 1.730643125 - core[0].svIdle(17), plen 0: [] -EVENT[14719]: 1.730747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14720]: 1.730756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14721]: 1.730770600 - core[1].svIdle(17), plen 0: [] -EVENT[14722]: 1.731617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14723]: 1.731629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14724]: 1.731643250 - core[0].svIdle(17), plen 0: [] -EVENT[14725]: 1.731747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14726]: 1.731756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14727]: 1.731770600 - core[1].svIdle(17), plen 0: [] -EVENT[14728]: 1.732617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14729]: 1.732631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14730]: 1.732645550 - core[0].svIdle(17), plen 0: [] -EVENT[14731]: 1.732747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14732]: 1.732756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14733]: 1.732770600 - core[1].svIdle(17), plen 0: [] -EVENT[14734]: 1.733617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14735]: 1.733629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14736]: 1.733643125 - core[0].svIdle(17), plen 0: [] -EVENT[14737]: 1.733747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14738]: 1.733757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14739]: 1.733770775 - core[1].svIdle(17), plen 0: [] -EVENT[14740]: 1.734617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14741]: 1.734629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14742]: 1.734643125 - core[0].svIdle(17), plen 0: [] -EVENT[14743]: 1.734747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14744]: 1.734756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14745]: 1.734770600 - core[1].svIdle(17), plen 0: [] -EVENT[14746]: 1.735617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14747]: 1.735629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14748]: 1.735643250 - core[0].svIdle(17), plen 0: [] -EVENT[14749]: 1.735747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14750]: 1.735756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14751]: 1.735770600 - core[1].svIdle(17), plen 0: [] -EVENT[14752]: 1.736617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14753]: 1.736629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14754]: 1.736643175 - core[0].svIdle(17), plen 0: [] -EVENT[14755]: 1.736747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14756]: 1.736756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14757]: 1.736770600 - core[1].svIdle(17), plen 0: [] -EVENT[14758]: 1.737617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14759]: 1.737629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14760]: 1.737643125 - core[0].svIdle(17), plen 0: [] -EVENT[14761]: 1.737747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14762]: 1.737757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14763]: 1.737770775 - core[1].svIdle(17), plen 0: [] -EVENT[14764]: 1.738617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14765]: 1.738629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14766]: 1.738643125 - core[0].svIdle(17), plen 0: [] -EVENT[14767]: 1.738747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14768]: 1.738756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14769]: 1.738770600 - core[1].svIdle(17), plen 0: [] -EVENT[14770]: 1.739617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14771]: 1.739629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14772]: 1.739643250 - core[0].svIdle(17), plen 0: [] -EVENT[14773]: 1.739747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14774]: 1.739756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14775]: 1.739770600 - core[1].svIdle(17), plen 0: [] -EVENT[14776]: 1.740617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14777]: 1.740629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14778]: 1.740643175 - core[0].svIdle(17), plen 0: [] -EVENT[14779]: 1.740747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14780]: 1.740756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14781]: 1.740770600 - core[1].svIdle(17), plen 0: [] -EVENT[14782]: 1.741617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14783]: 1.741629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14784]: 1.741643125 - core[0].svIdle(17), plen 0: [] -EVENT[14785]: 1.741747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14786]: 1.741757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14787]: 1.741770775 - core[1].svIdle(17), plen 0: [] -EVENT[14788]: 1.742617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14789]: 1.742629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14790]: 1.742643125 - core[0].svIdle(17), plen 0: [] -EVENT[14791]: 1.742747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14792]: 1.742756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14793]: 1.742770600 - core[1].svIdle(17), plen 0: [] -EVENT[14794]: 1.743617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14795]: 1.743629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[14796]: 1.743638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14797]: 1.743652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[14798]: 1.743676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 118, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.743676950] HEAP: Allocated 118 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14799]: 1.743692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14800]: 1.743706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14801]: 1.743747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14802]: 1.743768825 - core[0].svPrint(26), plen 72: [msg: I (2070) example: Task[0x3ffb7f40]: allocated 118 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.743768825] LOG: I (2070) example: Task[0x3ffb7f40]: allocated 118 bytes @ 0x3ffb87e4 -EVENT[14803]: 1.743778075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14804]: 1.743786225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14805]: 1.743796875 - core[1].svIdle(17), plen 0: [] -EVENT[14806]: 1.743807675 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[14807]: 1.743820650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14808]: 1.743829350 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[14809]: 1.743837250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14810]: 1.743845925 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[14811]: 1.743858650 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[14812]: 1.743866925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[14813]: 1.743875225 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[14814]: 1.743884250 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14815]: 1.743892975 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14816]: 1.743902900 - core[0].svIdle(17), plen 0: [] -EVENT[14817]: 1.743917725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14818]: 1.743967075 - core[1].svPrint(26), plen 64: [msg: I (2070) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.743967075] LOG: I (2070) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[14819]: 1.743985525 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.743985525] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14820]: 1.744004075 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[14821]: 1.744016775 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14822]: 1.744025575 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14823]: 1.744041150 - core[1].svIdle(17), plen 0: [] -EVENT[14824]: 1.744617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14825]: 1.744629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[14826]: 1.744638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14827]: 1.744652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[14828]: 1.744677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 236, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.744677000] HEAP: Allocated 236 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14829]: 1.744689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14830]: 1.744703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14831]: 1.744747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14832]: 1.744769475 - core[0].svPrint(26), plen 72: [msg: I (2071) example: Task[0x3ffb82a0]: allocated 236 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.744769475] LOG: I (2071) example: Task[0x3ffb82a0]: allocated 236 bytes @ 0x3ffb4b10 -EVENT[14833]: 1.744781225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14834]: 1.744789725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14835]: 1.744800100 - core[1].svIdle(17), plen 0: [] -EVENT[14836]: 1.744810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[14837]: 1.744823900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14838]: 1.744832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[14839]: 1.744840400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14840]: 1.744848975 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[14841]: 1.744861625 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[14842]: 1.744870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[14843]: 1.744878325 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[14844]: 1.744887200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14845]: 1.744896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14846]: 1.744905775 - core[0].svIdle(17), plen 0: [] -EVENT[14847]: 1.744920600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14848]: 1.744969850 - core[1].svPrint(26), plen 64: [msg: I (2071) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.744969850] LOG: I (2071) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[14849]: 1.744985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.744985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14850]: 1.745006525 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[14851]: 1.745019225 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14852]: 1.745028025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14853]: 1.745043600 - core[1].svIdle(17), plen 0: [] -EVENT[14854]: 1.745617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14855]: 1.745629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[14856]: 1.745638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14857]: 1.745652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[14858]: 1.745676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 354, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.745676975] HEAP: Allocated 354 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14859]: 1.745689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14860]: 1.745703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14861]: 1.745747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14862]: 1.745769450 - core[0].svPrint(26), plen 72: [msg: I (2072) example: Task[0x3ffb8600]: allocated 354 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.745769450] LOG: I (2072) example: Task[0x3ffb8600]: allocated 354 bytes @ 0x3ffb4b10 -EVENT[14863]: 1.745778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14864]: 1.745786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14865]: 1.745797075 - core[1].svIdle(17), plen 0: [] -EVENT[14866]: 1.745807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[14867]: 1.745820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14868]: 1.745829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[14869]: 1.745837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14870]: 1.745845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[14871]: 1.745858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[14872]: 1.745866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[14873]: 1.745878175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[14874]: 1.745886350 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14875]: 1.745894725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[14876]: 1.745904975 - core[0].svIdle(17), plen 0: [] -EVENT[14877]: 1.745919925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[14878]: 1.745969275 - core[1].svPrint(26), plen 64: [msg: I (2072) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.745969275] LOG: I (2072) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[14879]: 1.745984650 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.745984650] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[14880]: 1.746002775 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[14881]: 1.746015600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[14882]: 1.746024350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14883]: 1.746039800 - core[1].svIdle(17), plen 0: [] -EVENT[14884]: 1.746617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14885]: 1.746629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14886]: 1.746643175 - core[0].svIdle(17), plen 0: [] -EVENT[14887]: 1.746747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14888]: 1.746756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14889]: 1.746770600 - core[1].svIdle(17), plen 0: [] -EVENT[14890]: 1.747617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14891]: 1.747629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14892]: 1.747643125 - core[0].svIdle(17), plen 0: [] -EVENT[14893]: 1.747747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14894]: 1.747757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14895]: 1.747770775 - core[1].svIdle(17), plen 0: [] -EVENT[14896]: 1.748617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14897]: 1.748629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14898]: 1.748643125 - core[0].svIdle(17), plen 0: [] -EVENT[14899]: 1.748747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14900]: 1.748756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14901]: 1.748770600 - core[1].svIdle(17), plen 0: [] -EVENT[14902]: 1.749617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14903]: 1.749629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14904]: 1.749643250 - core[0].svIdle(17), plen 0: [] -EVENT[14905]: 1.749747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14906]: 1.749756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14907]: 1.749770600 - core[1].svIdle(17), plen 0: [] -EVENT[14908]: 1.750617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14909]: 1.750632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14910]: 1.750646225 - core[0].svIdle(17), plen 0: [] -EVENT[14911]: 1.750747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14912]: 1.750756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14913]: 1.750770600 - core[1].svIdle(17), plen 0: [] -EVENT[14914]: 1.751617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14915]: 1.751629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14916]: 1.751643125 - core[0].svIdle(17), plen 0: [] -EVENT[14917]: 1.751747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14918]: 1.751757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14919]: 1.751770775 - core[1].svIdle(17), plen 0: [] -EVENT[14920]: 1.752617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14921]: 1.752629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14922]: 1.752643125 - core[0].svIdle(17), plen 0: [] -EVENT[14923]: 1.752747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14924]: 1.752756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14925]: 1.752770600 - core[1].svIdle(17), plen 0: [] -EVENT[14926]: 1.753617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14927]: 1.753629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14928]: 1.753643250 - core[0].svIdle(17), plen 0: [] -EVENT[14929]: 1.753747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14930]: 1.753756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14931]: 1.753770600 - core[1].svIdle(17), plen 0: [] -EVENT[14932]: 1.754617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14933]: 1.754629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14934]: 1.754643175 - core[0].svIdle(17), plen 0: [] -EVENT[14935]: 1.754747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14936]: 1.754756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14937]: 1.754770600 - core[1].svIdle(17), plen 0: [] -EVENT[14938]: 1.755617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14939]: 1.755629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14940]: 1.755643125 - core[0].svIdle(17), plen 0: [] -EVENT[14941]: 1.755747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14942]: 1.755757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14943]: 1.755770775 - core[1].svIdle(17), plen 0: [] -EVENT[14944]: 1.756617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14945]: 1.756629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14946]: 1.756643125 - core[0].svIdle(17), plen 0: [] -EVENT[14947]: 1.756747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14948]: 1.756756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14949]: 1.756770600 - core[1].svIdle(17), plen 0: [] -EVENT[14950]: 1.757617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14951]: 1.757629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14952]: 1.757643250 - core[0].svIdle(17), plen 0: [] -EVENT[14953]: 1.757747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14954]: 1.757756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14955]: 1.757770600 - core[1].svIdle(17), plen 0: [] -EVENT[14956]: 1.758617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14957]: 1.758629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14958]: 1.758643175 - core[0].svIdle(17), plen 0: [] -EVENT[14959]: 1.758747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14960]: 1.758756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14961]: 1.758770600 - core[1].svIdle(17), plen 0: [] -EVENT[14962]: 1.759617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14963]: 1.759629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14964]: 1.759643125 - core[0].svIdle(17), plen 0: [] -EVENT[14965]: 1.759747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14966]: 1.759757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14967]: 1.759770775 - core[1].svIdle(17), plen 0: [] -EVENT[14968]: 1.760617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14969]: 1.760629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14970]: 1.760643125 - core[0].svIdle(17), plen 0: [] -EVENT[14971]: 1.760747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14972]: 1.760756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14973]: 1.760770600 - core[1].svIdle(17), plen 0: [] -EVENT[14974]: 1.761617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14975]: 1.761629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14976]: 1.761643250 - core[0].svIdle(17), plen 0: [] -EVENT[14977]: 1.761747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14978]: 1.761756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14979]: 1.761770600 - core[1].svIdle(17), plen 0: [] -EVENT[14980]: 1.762617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14981]: 1.762632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14982]: 1.762646225 - core[0].svIdle(17), plen 0: [] -EVENT[14983]: 1.762747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14984]: 1.762756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14985]: 1.762770600 - core[1].svIdle(17), plen 0: [] -EVENT[14986]: 1.763617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14987]: 1.763629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14988]: 1.763643125 - core[0].svIdle(17), plen 0: [] -EVENT[14989]: 1.763747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14990]: 1.763757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14991]: 1.763770775 - core[1].svIdle(17), plen 0: [] -EVENT[14992]: 1.764617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14993]: 1.764629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[14994]: 1.764643125 - core[0].svIdle(17), plen 0: [] -EVENT[14995]: 1.764747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14996]: 1.764756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[14997]: 1.764770600 - core[1].svIdle(17), plen 0: [] -EVENT[14998]: 1.765617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[14999]: 1.765629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15000]: 1.765643250 - core[0].svIdle(17), plen 0: [] -EVENT[15001]: 1.765747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15002]: 1.765756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15003]: 1.765770600 - core[1].svIdle(17), plen 0: [] -EVENT[15004]: 1.766617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15005]: 1.766629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15006]: 1.766643175 - core[0].svIdle(17), plen 0: [] -EVENT[15007]: 1.766747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15008]: 1.766756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15009]: 1.766770600 - core[1].svIdle(17), plen 0: [] -EVENT[15010]: 1.767617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15011]: 1.767629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15012]: 1.767643125 - core[0].svIdle(17), plen 0: [] -EVENT[15013]: 1.767747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15014]: 1.767757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15015]: 1.767770775 - core[1].svIdle(17), plen 0: [] -EVENT[15016]: 1.768617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15017]: 1.768629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15018]: 1.768643125 - core[0].svIdle(17), plen 0: [] -EVENT[15019]: 1.768747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15020]: 1.768756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15021]: 1.768770600 - core[1].svIdle(17), plen 0: [] -EVENT[15022]: 1.769617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15023]: 1.769629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15024]: 1.769643250 - core[0].svIdle(17), plen 0: [] -EVENT[15025]: 1.769747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15026]: 1.769756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15027]: 1.769770600 - core[1].svIdle(17), plen 0: [] -EVENT[15028]: 1.770617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15029]: 1.770629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15030]: 1.770643175 - core[0].svIdle(17), plen 0: [] -EVENT[15031]: 1.770747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15032]: 1.770756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15033]: 1.770770600 - core[1].svIdle(17), plen 0: [] -EVENT[15034]: 1.771617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15035]: 1.771629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15036]: 1.771643125 - core[0].svIdle(17), plen 0: [] -EVENT[15037]: 1.771747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15038]: 1.771757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15039]: 1.771770775 - core[1].svIdle(17), plen 0: [] -EVENT[15040]: 1.772617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15041]: 1.772629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15042]: 1.772643125 - core[0].svIdle(17), plen 0: [] -EVENT[15043]: 1.772747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15044]: 1.772756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15045]: 1.772770600 - core[1].svIdle(17), plen 0: [] -EVENT[15046]: 1.773617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15047]: 1.773629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[15048]: 1.773638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15049]: 1.773652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[15050]: 1.773676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 120, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.773676950] HEAP: Allocated 120 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15051]: 1.773692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15052]: 1.773706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15053]: 1.773747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15054]: 1.773768825 - core[0].svPrint(26), plen 72: [msg: I (2100) example: Task[0x3ffb7f40]: allocated 120 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.773768825] LOG: I (2100) example: Task[0x3ffb7f40]: allocated 120 bytes @ 0x3ffb87e4 -EVENT[15055]: 1.773778075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15056]: 1.773786225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15057]: 1.773796875 - core[1].svIdle(17), plen 0: [] -EVENT[15058]: 1.773807650 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[15059]: 1.773820625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15060]: 1.773829325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[15061]: 1.773837225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15062]: 1.773845900 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[15063]: 1.773858650 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[15064]: 1.773866900 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[15065]: 1.773875200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[15066]: 1.773884225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15067]: 1.773892975 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15068]: 1.773902875 - core[0].svIdle(17), plen 0: [] -EVENT[15069]: 1.773917700 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15070]: 1.773967050 - core[1].svPrint(26), plen 64: [msg: I (2100) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.773967050] LOG: I (2100) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[15071]: 1.773984825 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.773984825] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15072]: 1.774003400 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[15073]: 1.774016075 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15074]: 1.774024875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15075]: 1.774040450 - core[1].svIdle(17), plen 0: [] -EVENT[15076]: 1.774617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15077]: 1.774629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[15078]: 1.774638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15079]: 1.774652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[15080]: 1.774677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 240, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.774677000] HEAP: Allocated 240 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15081]: 1.774689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15082]: 1.774703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15083]: 1.774747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15084]: 1.774769475 - core[0].svPrint(26), plen 72: [msg: I (2101) example: Task[0x3ffb82a0]: allocated 240 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.774769475] LOG: I (2101) example: Task[0x3ffb82a0]: allocated 240 bytes @ 0x3ffb4b10 -EVENT[15085]: 1.774781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15086]: 1.774789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15087]: 1.774800125 - core[1].svIdle(17), plen 0: [] -EVENT[15088]: 1.774810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[15089]: 1.774823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15090]: 1.774832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[15091]: 1.774840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15092]: 1.774849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[15093]: 1.774861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[15094]: 1.774870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[15095]: 1.774878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[15096]: 1.774887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15097]: 1.774896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15098]: 1.774905800 - core[0].svIdle(17), plen 0: [] -EVENT[15099]: 1.774920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15100]: 1.774969875 - core[1].svPrint(26), plen 64: [msg: I (2101) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.774969875] LOG: I (2101) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[15101]: 1.774985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.774985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15102]: 1.775005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[15103]: 1.775018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15104]: 1.775027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15105]: 1.775042900 - core[1].svIdle(17), plen 0: [] -EVENT[15106]: 1.775617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15107]: 1.775629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[15108]: 1.775638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15109]: 1.775652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[15110]: 1.775676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 360, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.775676975] HEAP: Allocated 360 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15111]: 1.775689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15112]: 1.775703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15113]: 1.775747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15114]: 1.775769450 - core[0].svPrint(26), plen 72: [msg: I (2102) example: Task[0x3ffb8600]: allocated 360 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.775769450] LOG: I (2102) example: Task[0x3ffb8600]: allocated 360 bytes @ 0x3ffb4b10 -EVENT[15115]: 1.775778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15116]: 1.775786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15117]: 1.775797075 - core[1].svIdle(17), plen 0: [] -EVENT[15118]: 1.775807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[15119]: 1.775820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15120]: 1.775829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[15121]: 1.775837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15122]: 1.775845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[15123]: 1.775858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[15124]: 1.775866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[15125]: 1.775879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[15126]: 1.775887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15127]: 1.775895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15128]: 1.775905800 - core[0].svIdle(17), plen 0: [] -EVENT[15129]: 1.775920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15130]: 1.775970075 - core[1].svPrint(26), plen 64: [msg: I (2102) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.775970075] LOG: I (2102) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[15131]: 1.775985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.775985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15132]: 1.776003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[15133]: 1.776016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15134]: 1.776025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15135]: 1.776040625 - core[1].svIdle(17), plen 0: [] -EVENT[15136]: 1.776617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15137]: 1.776629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15138]: 1.776643175 - core[0].svIdle(17), plen 0: [] -EVENT[15139]: 1.776747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15140]: 1.776756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15141]: 1.776770600 - core[1].svIdle(17), plen 0: [] -EVENT[15142]: 1.777617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15143]: 1.777629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15144]: 1.777643125 - core[0].svIdle(17), plen 0: [] -EVENT[15145]: 1.777747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15146]: 1.777757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15147]: 1.777770775 - core[1].svIdle(17), plen 0: [] -EVENT[15148]: 1.778617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15149]: 1.778629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15150]: 1.778643125 - core[0].svIdle(17), plen 0: [] -EVENT[15151]: 1.778747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15152]: 1.778756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15153]: 1.778770600 - core[1].svIdle(17), plen 0: [] -EVENT[15154]: 1.779617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15155]: 1.779629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15156]: 1.779643250 - core[0].svIdle(17), plen 0: [] -EVENT[15157]: 1.779747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15158]: 1.779756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15159]: 1.779770600 - core[1].svIdle(17), plen 0: [] -EVENT[15160]: 1.780617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15161]: 1.780631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15162]: 1.780645550 - core[0].svIdle(17), plen 0: [] -EVENT[15163]: 1.780747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15164]: 1.780756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15165]: 1.780770600 - core[1].svIdle(17), plen 0: [] -EVENT[15166]: 1.781617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15167]: 1.781629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15168]: 1.781643125 - core[0].svIdle(17), plen 0: [] -EVENT[15169]: 1.781747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15170]: 1.781757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15171]: 1.781770775 - core[1].svIdle(17), plen 0: [] -EVENT[15172]: 1.782617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15173]: 1.782629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15174]: 1.782643125 - core[0].svIdle(17), plen 0: [] -EVENT[15175]: 1.782747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15176]: 1.782756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15177]: 1.782770600 - core[1].svIdle(17), plen 0: [] -EVENT[15178]: 1.783617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15179]: 1.783629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15180]: 1.783643250 - core[0].svIdle(17), plen 0: [] -EVENT[15181]: 1.783747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15182]: 1.783756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15183]: 1.783770600 - core[1].svIdle(17), plen 0: [] -EVENT[15184]: 1.784617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15185]: 1.784629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15186]: 1.784643175 - core[0].svIdle(17), plen 0: [] -EVENT[15187]: 1.784747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15188]: 1.784756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15189]: 1.784770600 - core[1].svIdle(17), plen 0: [] -EVENT[15190]: 1.785617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15191]: 1.785629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15192]: 1.785643125 - core[0].svIdle(17), plen 0: [] -EVENT[15193]: 1.785747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15194]: 1.785757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15195]: 1.785770775 - core[1].svIdle(17), plen 0: [] -EVENT[15196]: 1.786617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15197]: 1.786629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15198]: 1.786643125 - core[0].svIdle(17), plen 0: [] -EVENT[15199]: 1.786747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15200]: 1.786756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15201]: 1.786770600 - core[1].svIdle(17), plen 0: [] -EVENT[15202]: 1.787617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15203]: 1.787629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15204]: 1.787643250 - core[0].svIdle(17), plen 0: [] -EVENT[15205]: 1.787747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15206]: 1.787756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15207]: 1.787770600 - core[1].svIdle(17), plen 0: [] -EVENT[15208]: 1.788617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15209]: 1.788629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15210]: 1.788643175 - core[0].svIdle(17), plen 0: [] -EVENT[15211]: 1.788747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15212]: 1.788756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15213]: 1.788770600 - core[1].svIdle(17), plen 0: [] -EVENT[15214]: 1.789617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15215]: 1.789629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15216]: 1.789643125 - core[0].svIdle(17), plen 0: [] -EVENT[15217]: 1.789747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15218]: 1.789757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15219]: 1.789770775 - core[1].svIdle(17), plen 0: [] -EVENT[15220]: 1.790617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15221]: 1.790629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15222]: 1.790643125 - core[0].svIdle(17), plen 0: [] -EVENT[15223]: 1.790747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15224]: 1.790756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15225]: 1.790770600 - core[1].svIdle(17), plen 0: [] -EVENT[15226]: 1.791617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15227]: 1.791629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15228]: 1.791643250 - core[0].svIdle(17), plen 0: [] -EVENT[15229]: 1.791747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15230]: 1.791756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15231]: 1.791770600 - core[1].svIdle(17), plen 0: [] -EVENT[15232]: 1.792617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15233]: 1.792632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15234]: 1.792646225 - core[0].svIdle(17), plen 0: [] -EVENT[15235]: 1.792747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15236]: 1.792756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15237]: 1.792770600 - core[1].svIdle(17), plen 0: [] -EVENT[15238]: 1.793617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15239]: 1.793629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15240]: 1.793643125 - core[0].svIdle(17), plen 0: [] -EVENT[15241]: 1.793747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15242]: 1.793757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15243]: 1.793770775 - core[1].svIdle(17), plen 0: [] -EVENT[15244]: 1.794617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15245]: 1.794629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15246]: 1.794643125 - core[0].svIdle(17), plen 0: [] -EVENT[15247]: 1.794747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15248]: 1.794756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15249]: 1.794770600 - core[1].svIdle(17), plen 0: [] -EVENT[15250]: 1.795617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15251]: 1.795629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15252]: 1.795643250 - core[0].svIdle(17), plen 0: [] -EVENT[15253]: 1.795747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15254]: 1.795756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15255]: 1.795770600 - core[1].svIdle(17), plen 0: [] -EVENT[15256]: 1.796617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15257]: 1.796629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15258]: 1.796643175 - core[0].svIdle(17), plen 0: [] -EVENT[15259]: 1.796747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15260]: 1.796756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15261]: 1.796770600 - core[1].svIdle(17), plen 0: [] -EVENT[15262]: 1.797617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15263]: 1.797629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15264]: 1.797643125 - core[0].svIdle(17), plen 0: [] -EVENT[15265]: 1.797747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15266]: 1.797757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15267]: 1.797770775 - core[1].svIdle(17), plen 0: [] -EVENT[15268]: 1.798617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15269]: 1.798629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15270]: 1.798643125 - core[0].svIdle(17), plen 0: [] -EVENT[15271]: 1.798747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15272]: 1.798756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15273]: 1.798770600 - core[1].svIdle(17), plen 0: [] -EVENT[15274]: 1.799617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15275]: 1.799629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15276]: 1.799643250 - core[0].svIdle(17), plen 0: [] -EVENT[15277]: 1.799747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15278]: 1.799756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15279]: 1.799770600 - core[1].svIdle(17), plen 0: [] -EVENT[15280]: 1.800617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15281]: 1.800629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15282]: 1.800643175 - core[0].svIdle(17), plen 0: [] -EVENT[15283]: 1.800747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15284]: 1.800756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15285]: 1.800770600 - core[1].svIdle(17), plen 0: [] -EVENT[15286]: 1.801617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15287]: 1.801629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15288]: 1.801643125 - core[0].svIdle(17), plen 0: [] -EVENT[15289]: 1.801747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15290]: 1.801757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15291]: 1.801770775 - core[1].svIdle(17), plen 0: [] -EVENT[15292]: 1.802617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15293]: 1.802629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15294]: 1.802643125 - core[0].svIdle(17), plen 0: [] -EVENT[15295]: 1.802747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15296]: 1.802756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15297]: 1.802770600 - core[1].svIdle(17), plen 0: [] -EVENT[15298]: 1.803617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15299]: 1.803629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[15300]: 1.803638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15301]: 1.803652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[15302]: 1.803676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 122, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.803676950] HEAP: Allocated 122 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15303]: 1.803692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15304]: 1.803706125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15305]: 1.803747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15306]: 1.803768400 - core[0].svPrint(26), plen 72: [msg: I (2130) example: Task[0x3ffb7f40]: allocated 122 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.803768400] LOG: I (2130) example: Task[0x3ffb7f40]: allocated 122 bytes @ 0x3ffb87e4 -EVENT[15307]: 1.803777475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15308]: 1.803785875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15309]: 1.803796400 - core[1].svIdle(17), plen 0: [] -EVENT[15310]: 1.803807175 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[15311]: 1.803820150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15312]: 1.803828850 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[15313]: 1.803836750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15314]: 1.803845425 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[15315]: 1.803858175 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[15316]: 1.803866425 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[15317]: 1.803874700 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[15318]: 1.803883725 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15319]: 1.803892450 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15320]: 1.803902350 - core[0].svIdle(17), plen 0: [] -EVENT[15321]: 1.803917175 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15322]: 1.803966525 - core[1].svPrint(26), plen 64: [msg: I (2130) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.803966525] LOG: I (2130) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[15323]: 1.803984975 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.803984975] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15324]: 1.804003550 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[15325]: 1.804016225 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15326]: 1.804025025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15327]: 1.804040600 - core[1].svIdle(17), plen 0: [] -EVENT[15328]: 1.804617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15329]: 1.804629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[15330]: 1.804638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15331]: 1.804652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[15332]: 1.804677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 244, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.804677000] HEAP: Allocated 244 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15333]: 1.804689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15334]: 1.804703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15335]: 1.804747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15336]: 1.804769475 - core[0].svPrint(26), plen 72: [msg: I (2131) example: Task[0x3ffb82a0]: allocated 244 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.804769475] LOG: I (2131) example: Task[0x3ffb82a0]: allocated 244 bytes @ 0x3ffb4b10 -EVENT[15337]: 1.804781225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15338]: 1.804789725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15339]: 1.804800100 - core[1].svIdle(17), plen 0: [] -EVENT[15340]: 1.804810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[15341]: 1.804823900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15342]: 1.804832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[15343]: 1.804840400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15344]: 1.804848975 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[15345]: 1.804861625 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[15346]: 1.804870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[15347]: 1.804878275 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[15348]: 1.804887150 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15349]: 1.804896500 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15350]: 1.804905700 - core[0].svIdle(17), plen 0: [] -EVENT[15351]: 1.804920525 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15352]: 1.804969775 - core[1].svPrint(26), plen 64: [msg: I (2131) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.804969775] LOG: I (2131) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[15353]: 1.804985375 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.804985375] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15354]: 1.805006350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[15355]: 1.805019025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15356]: 1.805027825 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15357]: 1.805043400 - core[1].svIdle(17), plen 0: [] -EVENT[15358]: 1.805617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15359]: 1.805629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[15360]: 1.805638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15361]: 1.805652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[15362]: 1.805676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 366, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.805676975] HEAP: Allocated 366 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15363]: 1.805689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15364]: 1.805703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15365]: 1.805747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15366]: 1.805769450 - core[0].svPrint(26), plen 72: [msg: I (2132) example: Task[0x3ffb8600]: allocated 366 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.805769450] LOG: I (2132) example: Task[0x3ffb8600]: allocated 366 bytes @ 0x3ffb4b10 -EVENT[15367]: 1.805778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15368]: 1.805786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15369]: 1.805797075 - core[1].svIdle(17), plen 0: [] -EVENT[15370]: 1.805807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[15371]: 1.805820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15372]: 1.805829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[15373]: 1.805837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15374]: 1.805845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[15375]: 1.805858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[15376]: 1.805866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[15377]: 1.805879175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[15378]: 1.805887200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15379]: 1.805895650 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15380]: 1.805905750 - core[0].svIdle(17), plen 0: [] -EVENT[15381]: 1.805920675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15382]: 1.805970025 - core[1].svPrint(26), plen 64: [msg: I (2132) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.805970025] LOG: I (2132) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[15383]: 1.805985400 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.805985400] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15384]: 1.806003525 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[15385]: 1.806016350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15386]: 1.806025125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15387]: 1.806040575 - core[1].svIdle(17), plen 0: [] -EVENT[15388]: 1.806617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15389]: 1.806629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15390]: 1.806643175 - core[0].svIdle(17), plen 0: [] -EVENT[15391]: 1.806747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15392]: 1.806756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15393]: 1.806770600 - core[1].svIdle(17), plen 0: [] -EVENT[15394]: 1.807617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15395]: 1.807629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15396]: 1.807643125 - core[0].svIdle(17), plen 0: [] -EVENT[15397]: 1.807747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15398]: 1.807757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15399]: 1.807770775 - core[1].svIdle(17), plen 0: [] -EVENT[15400]: 1.808617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15401]: 1.808629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15402]: 1.808643125 - core[0].svIdle(17), plen 0: [] -EVENT[15403]: 1.808747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15404]: 1.808756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15405]: 1.808770600 - core[1].svIdle(17), plen 0: [] -EVENT[15406]: 1.809617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15407]: 1.809629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15408]: 1.809643250 - core[0].svIdle(17), plen 0: [] -EVENT[15409]: 1.809747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15410]: 1.809756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15411]: 1.809770600 - core[1].svIdle(17), plen 0: [] -EVENT[15412]: 1.810617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15413]: 1.810632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15414]: 1.810646225 - core[0].svIdle(17), plen 0: [] -EVENT[15415]: 1.810747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15416]: 1.810756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15417]: 1.810770600 - core[1].svIdle(17), plen 0: [] -EVENT[15418]: 1.811617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15419]: 1.811629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15420]: 1.811643125 - core[0].svIdle(17), plen 0: [] -EVENT[15421]: 1.811747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15422]: 1.811757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15423]: 1.811770775 - core[1].svIdle(17), plen 0: [] -EVENT[15424]: 1.812617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15425]: 1.812629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15426]: 1.812643125 - core[0].svIdle(17), plen 0: [] -EVENT[15427]: 1.812747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15428]: 1.812756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15429]: 1.812770600 - core[1].svIdle(17), plen 0: [] -EVENT[15430]: 1.813617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15431]: 1.813629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15432]: 1.813643250 - core[0].svIdle(17), plen 0: [] -EVENT[15433]: 1.813747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15434]: 1.813756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15435]: 1.813770600 - core[1].svIdle(17), plen 0: [] -EVENT[15436]: 1.814617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15437]: 1.814629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15438]: 1.814643175 - core[0].svIdle(17), plen 0: [] -EVENT[15439]: 1.814747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15440]: 1.814756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15441]: 1.814770600 - core[1].svIdle(17), plen 0: [] -EVENT[15442]: 1.815617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15443]: 1.815629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15444]: 1.815643125 - core[0].svIdle(17), plen 0: [] -EVENT[15445]: 1.815747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15446]: 1.815757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15447]: 1.815770775 - core[1].svIdle(17), plen 0: [] -EVENT[15448]: 1.816617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15449]: 1.816629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15450]: 1.816643125 - core[0].svIdle(17), plen 0: [] -EVENT[15451]: 1.816747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15452]: 1.816756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15453]: 1.816770600 - core[1].svIdle(17), plen 0: [] -EVENT[15454]: 1.817617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15455]: 1.817629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15456]: 1.817643250 - core[0].svIdle(17), plen 0: [] -EVENT[15457]: 1.817747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15458]: 1.817756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15459]: 1.817770600 - core[1].svIdle(17), plen 0: [] -EVENT[15460]: 1.818617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15461]: 1.818629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15462]: 1.818643175 - core[0].svIdle(17), plen 0: [] -EVENT[15463]: 1.818747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15464]: 1.818756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15465]: 1.818770600 - core[1].svIdle(17), plen 0: [] -EVENT[15466]: 1.819617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15467]: 1.819629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15468]: 1.819643125 - core[0].svIdle(17), plen 0: [] -EVENT[15469]: 1.819747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15470]: 1.819757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15471]: 1.819770775 - core[1].svIdle(17), plen 0: [] -EVENT[15472]: 1.820617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15473]: 1.820629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15474]: 1.820643125 - core[0].svIdle(17), plen 0: [] -EVENT[15475]: 1.820747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15476]: 1.820756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15477]: 1.820770600 - core[1].svIdle(17), plen 0: [] -EVENT[15478]: 1.821617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15479]: 1.821629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15480]: 1.821643250 - core[0].svIdle(17), plen 0: [] -EVENT[15481]: 1.821747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15482]: 1.821756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15483]: 1.821770600 - core[1].svIdle(17), plen 0: [] -EVENT[15484]: 1.822617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15485]: 1.822632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15486]: 1.822646225 - core[0].svIdle(17), plen 0: [] -EVENT[15487]: 1.822747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15488]: 1.822756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15489]: 1.822770600 - core[1].svIdle(17), plen 0: [] -EVENT[15490]: 1.823617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15491]: 1.823629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15492]: 1.823643125 - core[0].svIdle(17), plen 0: [] -EVENT[15493]: 1.823747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15494]: 1.823757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15495]: 1.823770775 - core[1].svIdle(17), plen 0: [] -EVENT[15496]: 1.824617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15497]: 1.824629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15498]: 1.824643125 - core[0].svIdle(17), plen 0: [] -EVENT[15499]: 1.824747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15500]: 1.824756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15501]: 1.824770600 - core[1].svIdle(17), plen 0: [] -EVENT[15502]: 1.825617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15503]: 1.825629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15504]: 1.825643250 - core[0].svIdle(17), plen 0: [] -EVENT[15505]: 1.825747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15506]: 1.825756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15507]: 1.825770600 - core[1].svIdle(17), plen 0: [] -EVENT[15508]: 1.826617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15509]: 1.826629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15510]: 1.826643175 - core[0].svIdle(17), plen 0: [] -EVENT[15511]: 1.826747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15512]: 1.826756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15513]: 1.826770600 - core[1].svIdle(17), plen 0: [] -EVENT[15514]: 1.827617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15515]: 1.827629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15516]: 1.827643125 - core[0].svIdle(17), plen 0: [] -EVENT[15517]: 1.827747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15518]: 1.827757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15519]: 1.827770775 - core[1].svIdle(17), plen 0: [] -EVENT[15520]: 1.828617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15521]: 1.828629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15522]: 1.828643125 - core[0].svIdle(17), plen 0: [] -EVENT[15523]: 1.828747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15524]: 1.828756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15525]: 1.828770600 - core[1].svIdle(17), plen 0: [] -EVENT[15526]: 1.829617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15527]: 1.829629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15528]: 1.829643250 - core[0].svIdle(17), plen 0: [] -EVENT[15529]: 1.829747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15530]: 1.829756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15531]: 1.829770600 - core[1].svIdle(17), plen 0: [] -EVENT[15532]: 1.830617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15533]: 1.830629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15534]: 1.830643175 - core[0].svIdle(17), plen 0: [] -EVENT[15535]: 1.830747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15536]: 1.830756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15537]: 1.830770600 - core[1].svIdle(17), plen 0: [] -EVENT[15538]: 1.831617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15539]: 1.831629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15540]: 1.831643125 - core[0].svIdle(17), plen 0: [] -EVENT[15541]: 1.831747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15542]: 1.831757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15543]: 1.831770775 - core[1].svIdle(17), plen 0: [] -EVENT[15544]: 1.832617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15545]: 1.832629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15546]: 1.832643125 - core[0].svIdle(17), plen 0: [] -EVENT[15547]: 1.832747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15548]: 1.832756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15549]: 1.832770600 - core[1].svIdle(17), plen 0: [] -EVENT[15550]: 1.833617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15551]: 1.833629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[15552]: 1.833638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15553]: 1.833652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[15554]: 1.833676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 124, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.833676950] HEAP: Allocated 124 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15555]: 1.833692625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15556]: 1.833706700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15557]: 1.833747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15558]: 1.833768800 - core[0].svPrint(26), plen 72: [msg: I (2160) example: Task[0x3ffb7f40]: allocated 124 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.833768800] LOG: I (2160) example: Task[0x3ffb7f40]: allocated 124 bytes @ 0x3ffb87e4 -EVENT[15559]: 1.833777050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15560]: 1.833785200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15561]: 1.833796100 - core[1].svIdle(17), plen 0: [] -EVENT[15562]: 1.833806875 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[15563]: 1.833819850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15564]: 1.833828550 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[15565]: 1.833836450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15566]: 1.833845125 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[15567]: 1.833857875 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[15568]: 1.833866125 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[15569]: 1.833874425 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[15570]: 1.833883450 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15571]: 1.833892200 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15572]: 1.833902100 - core[0].svIdle(17), plen 0: [] -EVENT[15573]: 1.833916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15574]: 1.833966275 - core[1].svPrint(26), plen 64: [msg: I (2160) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.833966275] LOG: I (2160) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[15575]: 1.833984725 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.833984725] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15576]: 1.834003275 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[15577]: 1.834015975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15578]: 1.834024775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15579]: 1.834040350 - core[1].svIdle(17), plen 0: [] -EVENT[15580]: 1.834617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15581]: 1.834629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[15582]: 1.834638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15583]: 1.834652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[15584]: 1.834677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 248, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.834677000] HEAP: Allocated 248 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15585]: 1.834689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15586]: 1.834703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15587]: 1.834747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15588]: 1.834769475 - core[0].svPrint(26), plen 72: [msg: I (2161) example: Task[0x3ffb82a0]: allocated 248 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.834769475] LOG: I (2161) example: Task[0x3ffb82a0]: allocated 248 bytes @ 0x3ffb4b10 -EVENT[15589]: 1.834780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15590]: 1.834789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15591]: 1.834798950 - core[1].svIdle(17), plen 0: [] -EVENT[15592]: 1.834809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[15593]: 1.834822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15594]: 1.834831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[15595]: 1.834839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15596]: 1.834847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[15597]: 1.834860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[15598]: 1.834868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[15599]: 1.834877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[15600]: 1.834886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15601]: 1.834895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15602]: 1.834904625 - core[0].svIdle(17), plen 0: [] -EVENT[15603]: 1.834919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15604]: 1.834968700 - core[1].svPrint(26), plen 64: [msg: I (2161) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.834968700] LOG: I (2161) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[15605]: 1.834984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.834984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15606]: 1.835005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[15607]: 1.835018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15608]: 1.835026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15609]: 1.835042425 - core[1].svIdle(17), plen 0: [] -EVENT[15610]: 1.835617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15611]: 1.835629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[15612]: 1.835638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15613]: 1.835652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[15614]: 1.835676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 372, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.835676975] HEAP: Allocated 372 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15615]: 1.835689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15616]: 1.835703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15617]: 1.835747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15618]: 1.835769450 - core[0].svPrint(26), plen 72: [msg: I (2162) example: Task[0x3ffb8600]: allocated 372 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.835769450] LOG: I (2162) example: Task[0x3ffb8600]: allocated 372 bytes @ 0x3ffb4b10 -EVENT[15619]: 1.835778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15620]: 1.835786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15621]: 1.835797075 - core[1].svIdle(17), plen 0: [] -EVENT[15622]: 1.835807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[15623]: 1.835820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15624]: 1.835829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[15625]: 1.835837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15626]: 1.835845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[15627]: 1.835858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[15628]: 1.835866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[15629]: 1.835879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[15630]: 1.835887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15631]: 1.835895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15632]: 1.835905825 - core[0].svIdle(17), plen 0: [] -EVENT[15633]: 1.835920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15634]: 1.835970100 - core[1].svPrint(26), plen 64: [msg: I (2162) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.835970100] LOG: I (2162) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[15635]: 1.835985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.835985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15636]: 1.836003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[15637]: 1.836016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15638]: 1.836025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15639]: 1.836040650 - core[1].svIdle(17), plen 0: [] -EVENT[15640]: 1.836617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15641]: 1.836629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15642]: 1.836643175 - core[0].svIdle(17), plen 0: [] -EVENT[15643]: 1.836747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15644]: 1.836756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15645]: 1.836770600 - core[1].svIdle(17), plen 0: [] -EVENT[15646]: 1.837617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15647]: 1.837629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15648]: 1.837643125 - core[0].svIdle(17), plen 0: [] -EVENT[15649]: 1.837747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15650]: 1.837757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15651]: 1.837770775 - core[1].svIdle(17), plen 0: [] -EVENT[15652]: 1.838617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15653]: 1.838629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15654]: 1.838643125 - core[0].svIdle(17), plen 0: [] -EVENT[15655]: 1.838747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15656]: 1.838756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15657]: 1.838770600 - core[1].svIdle(17), plen 0: [] -EVENT[15658]: 1.839617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15659]: 1.839629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15660]: 1.839643250 - core[0].svIdle(17), plen 0: [] -EVENT[15661]: 1.839747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15662]: 1.839756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15663]: 1.839770600 - core[1].svIdle(17), plen 0: [] -EVENT[15664]: 1.840617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15665]: 1.840632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15666]: 1.840646225 - core[0].svIdle(17), plen 0: [] -EVENT[15667]: 1.840747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15668]: 1.840756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15669]: 1.840770600 - core[1].svIdle(17), plen 0: [] -EVENT[15670]: 1.841617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15671]: 1.841629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15672]: 1.841643125 - core[0].svIdle(17), plen 0: [] -EVENT[15673]: 1.841747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15674]: 1.841757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15675]: 1.841770775 - core[1].svIdle(17), plen 0: [] -EVENT[15676]: 1.842617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15677]: 1.842629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15678]: 1.842643125 - core[0].svIdle(17), plen 0: [] -EVENT[15679]: 1.842747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15680]: 1.842756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15681]: 1.842770600 - core[1].svIdle(17), plen 0: [] -EVENT[15682]: 1.843617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15683]: 1.843629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15684]: 1.843643250 - core[0].svIdle(17), plen 0: [] -EVENT[15685]: 1.843747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15686]: 1.843756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15687]: 1.843770600 - core[1].svIdle(17), plen 0: [] -EVENT[15688]: 1.844617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15689]: 1.844629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15690]: 1.844643175 - core[0].svIdle(17), plen 0: [] -EVENT[15691]: 1.844747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15692]: 1.844756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15693]: 1.844770600 - core[1].svIdle(17), plen 0: [] -EVENT[15694]: 1.845617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15695]: 1.845629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15696]: 1.845643125 - core[0].svIdle(17), plen 0: [] -EVENT[15697]: 1.845747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15698]: 1.845757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15699]: 1.845770775 - core[1].svIdle(17), plen 0: [] -EVENT[15700]: 1.846617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15701]: 1.846629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15702]: 1.846643125 - core[0].svIdle(17), plen 0: [] -EVENT[15703]: 1.846747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15704]: 1.846756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15705]: 1.846770600 - core[1].svIdle(17), plen 0: [] -EVENT[15706]: 1.847617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15707]: 1.847629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15708]: 1.847643250 - core[0].svIdle(17), plen 0: [] -EVENT[15709]: 1.847747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15710]: 1.847756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15711]: 1.847770600 - core[1].svIdle(17), plen 0: [] -EVENT[15712]: 1.848617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15713]: 1.848629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15714]: 1.848643175 - core[0].svIdle(17), plen 0: [] -EVENT[15715]: 1.848747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15716]: 1.848756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15717]: 1.848770600 - core[1].svIdle(17), plen 0: [] -EVENT[15718]: 1.849617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15719]: 1.849629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15720]: 1.849643125 - core[0].svIdle(17), plen 0: [] -EVENT[15721]: 1.849747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15722]: 1.849757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15723]: 1.849770775 - core[1].svIdle(17), plen 0: [] -EVENT[15724]: 1.850617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15725]: 1.850629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15726]: 1.850643125 - core[0].svIdle(17), plen 0: [] -EVENT[15727]: 1.850747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15728]: 1.850756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15729]: 1.850770600 - core[1].svIdle(17), plen 0: [] -EVENT[15730]: 1.851617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15731]: 1.851629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15732]: 1.851643250 - core[0].svIdle(17), plen 0: [] -EVENT[15733]: 1.851747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15734]: 1.851756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15735]: 1.851770600 - core[1].svIdle(17), plen 0: [] -EVENT[15736]: 1.852617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15737]: 1.852631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15738]: 1.852645550 - core[0].svIdle(17), plen 0: [] -EVENT[15739]: 1.852747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15740]: 1.852756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15741]: 1.852770600 - core[1].svIdle(17), plen 0: [] -EVENT[15742]: 1.853617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15743]: 1.853629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15744]: 1.853643125 - core[0].svIdle(17), plen 0: [] -EVENT[15745]: 1.853747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15746]: 1.853757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15747]: 1.853770775 - core[1].svIdle(17), plen 0: [] -EVENT[15748]: 1.854617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15749]: 1.854629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15750]: 1.854643125 - core[0].svIdle(17), plen 0: [] -EVENT[15751]: 1.854747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15752]: 1.854756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15753]: 1.854770600 - core[1].svIdle(17), plen 0: [] -EVENT[15754]: 1.855617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15755]: 1.855629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15756]: 1.855643250 - core[0].svIdle(17), plen 0: [] -EVENT[15757]: 1.855747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15758]: 1.855756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15759]: 1.855770600 - core[1].svIdle(17), plen 0: [] -EVENT[15760]: 1.856617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15761]: 1.856629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15762]: 1.856643175 - core[0].svIdle(17), plen 0: [] -EVENT[15763]: 1.856747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15764]: 1.856756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15765]: 1.856770600 - core[1].svIdle(17), plen 0: [] -EVENT[15766]: 1.857617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15767]: 1.857629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15768]: 1.857643125 - core[0].svIdle(17), plen 0: [] -EVENT[15769]: 1.857747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15770]: 1.857757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15771]: 1.857770775 - core[1].svIdle(17), plen 0: [] -EVENT[15772]: 1.858617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15773]: 1.858629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15774]: 1.858643125 - core[0].svIdle(17), plen 0: [] -EVENT[15775]: 1.858747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15776]: 1.858756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15777]: 1.858770600 - core[1].svIdle(17), plen 0: [] -EVENT[15778]: 1.859617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15779]: 1.859629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15780]: 1.859643250 - core[0].svIdle(17), plen 0: [] -EVENT[15781]: 1.859747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15782]: 1.859756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15783]: 1.859770600 - core[1].svIdle(17), plen 0: [] -EVENT[15784]: 1.860617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15785]: 1.860629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15786]: 1.860643175 - core[0].svIdle(17), plen 0: [] -EVENT[15787]: 1.860747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15788]: 1.860756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15789]: 1.860770600 - core[1].svIdle(17), plen 0: [] -EVENT[15790]: 1.861617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15791]: 1.861629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15792]: 1.861643125 - core[0].svIdle(17), plen 0: [] -EVENT[15793]: 1.861747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15794]: 1.861757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15795]: 1.861770775 - core[1].svIdle(17), plen 0: [] -EVENT[15796]: 1.862617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15797]: 1.862629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15798]: 1.862643125 - core[0].svIdle(17), plen 0: [] -EVENT[15799]: 1.862747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15800]: 1.862756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15801]: 1.862770600 - core[1].svIdle(17), plen 0: [] -EVENT[15802]: 1.863617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15803]: 1.863629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[15804]: 1.863638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15805]: 1.863652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[15806]: 1.863676950 - core[0].esp_sysview_heap_trace_alloc(512), plen 24: [addr: 1073448932, size: 126, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.863676950] HEAP: Allocated 126 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15807]: 1.863692725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15808]: 1.863706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15809]: 1.863747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15810]: 1.863768825 - core[0].svPrint(26), plen 72: [msg: I (2190) example: Task[0x3ffb7f40]: allocated 126 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.863768825] LOG: I (2190) example: Task[0x3ffb7f40]: allocated 126 bytes @ 0x3ffb87e4 -EVENT[15811]: 1.863778075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15812]: 1.863786225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15813]: 1.863796875 - core[1].svIdle(17), plen 0: [] -EVENT[15814]: 1.863807675 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[15815]: 1.863820650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15816]: 1.863829350 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[15817]: 1.863837250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15818]: 1.863845925 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[15819]: 1.863858650 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[15820]: 1.863866925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[15821]: 1.863875225 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[15822]: 1.863884250 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15823]: 1.863892975 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15824]: 1.863902900 - core[0].svIdle(17), plen 0: [] -EVENT[15825]: 1.863917725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15826]: 1.863967075 - core[1].svPrint(26), plen 64: [msg: I (2190) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.863967075] LOG: I (2190) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[15827]: 1.863985525 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.863985525] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15828]: 1.864004075 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[15829]: 1.864016775 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15830]: 1.864025575 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15831]: 1.864041150 - core[1].svIdle(17), plen 0: [] -EVENT[15832]: 1.864617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15833]: 1.864629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[15834]: 1.864638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15835]: 1.864652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[15836]: 1.864677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 252, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.864677000] HEAP: Allocated 252 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15837]: 1.864689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15838]: 1.864703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15839]: 1.864747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15840]: 1.864769475 - core[0].svPrint(26), plen 72: [msg: I (2191) example: Task[0x3ffb82a0]: allocated 252 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.864769475] LOG: I (2191) example: Task[0x3ffb82a0]: allocated 252 bytes @ 0x3ffb4b10 -EVENT[15841]: 1.864781225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15842]: 1.864789725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15843]: 1.864800100 - core[1].svIdle(17), plen 0: [] -EVENT[15844]: 1.864810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[15845]: 1.864823900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15846]: 1.864832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[15847]: 1.864840400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15848]: 1.864848975 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[15849]: 1.864861625 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[15850]: 1.864870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[15851]: 1.864878325 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[15852]: 1.864887200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15853]: 1.864896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15854]: 1.864905775 - core[0].svIdle(17), plen 0: [] -EVENT[15855]: 1.864920600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15856]: 1.864969850 - core[1].svPrint(26), plen 64: [msg: I (2191) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.864969850] LOG: I (2191) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[15857]: 1.864985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.864985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15858]: 1.865006525 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[15859]: 1.865019225 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15860]: 1.865028025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15861]: 1.865043600 - core[1].svIdle(17), plen 0: [] -EVENT[15862]: 1.865617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15863]: 1.865629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[15864]: 1.865638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15865]: 1.865652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[15866]: 1.865676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 378, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.865676975] HEAP: Allocated 378 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15867]: 1.865689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15868]: 1.865703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15869]: 1.865747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15870]: 1.865769450 - core[0].svPrint(26), plen 72: [msg: I (2192) example: Task[0x3ffb8600]: allocated 378 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.865769450] LOG: I (2192) example: Task[0x3ffb8600]: allocated 378 bytes @ 0x3ffb4b10 -EVENT[15871]: 1.865778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15872]: 1.865786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15873]: 1.865797075 - core[1].svIdle(17), plen 0: [] -EVENT[15874]: 1.865807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[15875]: 1.865820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15876]: 1.865829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[15877]: 1.865837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15878]: 1.865845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[15879]: 1.865858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[15880]: 1.865866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[15881]: 1.865878175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[15882]: 1.865886350 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15883]: 1.865894725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[15884]: 1.865904975 - core[0].svIdle(17), plen 0: [] -EVENT[15885]: 1.865919925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[15886]: 1.865969275 - core[1].svPrint(26), plen 64: [msg: I (2192) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.865969275] LOG: I (2192) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[15887]: 1.865984650 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.865984650] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[15888]: 1.866002775 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[15889]: 1.866015600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[15890]: 1.866024350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15891]: 1.866039800 - core[1].svIdle(17), plen 0: [] -EVENT[15892]: 1.866617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15893]: 1.866629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15894]: 1.866643175 - core[0].svIdle(17), plen 0: [] -EVENT[15895]: 1.866747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15896]: 1.866756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15897]: 1.866770600 - core[1].svIdle(17), plen 0: [] -EVENT[15898]: 1.867617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15899]: 1.867629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15900]: 1.867643125 - core[0].svIdle(17), plen 0: [] -EVENT[15901]: 1.867747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15902]: 1.867757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15903]: 1.867770775 - core[1].svIdle(17), plen 0: [] -EVENT[15904]: 1.868617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15905]: 1.868629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15906]: 1.868643125 - core[0].svIdle(17), plen 0: [] -EVENT[15907]: 1.868747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15908]: 1.868756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15909]: 1.868770600 - core[1].svIdle(17), plen 0: [] -EVENT[15910]: 1.869617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15911]: 1.869629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15912]: 1.869643250 - core[0].svIdle(17), plen 0: [] -EVENT[15913]: 1.869747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15914]: 1.869756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15915]: 1.869770600 - core[1].svIdle(17), plen 0: [] -EVENT[15916]: 1.870617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15917]: 1.870632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15918]: 1.870646225 - core[0].svIdle(17), plen 0: [] -EVENT[15919]: 1.870747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15920]: 1.870756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15921]: 1.870770600 - core[1].svIdle(17), plen 0: [] -EVENT[15922]: 1.871617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15923]: 1.871629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15924]: 1.871643125 - core[0].svIdle(17), plen 0: [] -EVENT[15925]: 1.871747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15926]: 1.871757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15927]: 1.871770775 - core[1].svIdle(17), plen 0: [] -EVENT[15928]: 1.872617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15929]: 1.872629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15930]: 1.872643125 - core[0].svIdle(17), plen 0: [] -EVENT[15931]: 1.872747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15932]: 1.872756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15933]: 1.872770600 - core[1].svIdle(17), plen 0: [] -EVENT[15934]: 1.873617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15935]: 1.873629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15936]: 1.873643250 - core[0].svIdle(17), plen 0: [] -EVENT[15937]: 1.873747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15938]: 1.873756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15939]: 1.873770600 - core[1].svIdle(17), plen 0: [] -EVENT[15940]: 1.874617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15941]: 1.874629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15942]: 1.874643175 - core[0].svIdle(17), plen 0: [] -EVENT[15943]: 1.874747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15944]: 1.874756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15945]: 1.874770600 - core[1].svIdle(17), plen 0: [] -EVENT[15946]: 1.875617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15947]: 1.875629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15948]: 1.875643125 - core[0].svIdle(17), plen 0: [] -EVENT[15949]: 1.875747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15950]: 1.875757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15951]: 1.875770775 - core[1].svIdle(17), plen 0: [] -EVENT[15952]: 1.876617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15953]: 1.876629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15954]: 1.876643125 - core[0].svIdle(17), plen 0: [] -EVENT[15955]: 1.876747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15956]: 1.876756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15957]: 1.876770600 - core[1].svIdle(17), plen 0: [] -EVENT[15958]: 1.877617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15959]: 1.877629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15960]: 1.877643250 - core[0].svIdle(17), plen 0: [] -EVENT[15961]: 1.877747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15962]: 1.877756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15963]: 1.877770600 - core[1].svIdle(17), plen 0: [] -EVENT[15964]: 1.878617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15965]: 1.878629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15966]: 1.878643175 - core[0].svIdle(17), plen 0: [] -EVENT[15967]: 1.878747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15968]: 1.878756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15969]: 1.878770600 - core[1].svIdle(17), plen 0: [] -EVENT[15970]: 1.879617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15971]: 1.879629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15972]: 1.879643125 - core[0].svIdle(17), plen 0: [] -EVENT[15973]: 1.879747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15974]: 1.879757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15975]: 1.879770775 - core[1].svIdle(17), plen 0: [] -EVENT[15976]: 1.880617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15977]: 1.880629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15978]: 1.880643125 - core[0].svIdle(17), plen 0: [] -EVENT[15979]: 1.880747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15980]: 1.880756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15981]: 1.880770600 - core[1].svIdle(17), plen 0: [] -EVENT[15982]: 1.881617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15983]: 1.881629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15984]: 1.881643250 - core[0].svIdle(17), plen 0: [] -EVENT[15985]: 1.881747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15986]: 1.881756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15987]: 1.881770600 - core[1].svIdle(17), plen 0: [] -EVENT[15988]: 1.882617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15989]: 1.882632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15990]: 1.882646225 - core[0].svIdle(17), plen 0: [] -EVENT[15991]: 1.882747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15992]: 1.882756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15993]: 1.882770600 - core[1].svIdle(17), plen 0: [] -EVENT[15994]: 1.883617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15995]: 1.883629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[15996]: 1.883643125 - core[0].svIdle(17), plen 0: [] -EVENT[15997]: 1.883747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[15998]: 1.883757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[15999]: 1.883770775 - core[1].svIdle(17), plen 0: [] -EVENT[16000]: 1.884617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16001]: 1.884629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16002]: 1.884643125 - core[0].svIdle(17), plen 0: [] -EVENT[16003]: 1.884747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16004]: 1.884756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16005]: 1.884770600 - core[1].svIdle(17), plen 0: [] -EVENT[16006]: 1.885617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16007]: 1.885629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16008]: 1.885643250 - core[0].svIdle(17), plen 0: [] -EVENT[16009]: 1.885747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16010]: 1.885756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16011]: 1.885770600 - core[1].svIdle(17), plen 0: [] -EVENT[16012]: 1.886617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16013]: 1.886629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16014]: 1.886643175 - core[0].svIdle(17), plen 0: [] -EVENT[16015]: 1.886747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16016]: 1.886756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16017]: 1.886770600 - core[1].svIdle(17), plen 0: [] -EVENT[16018]: 1.887617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16019]: 1.887629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16020]: 1.887643125 - core[0].svIdle(17), plen 0: [] -EVENT[16021]: 1.887747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16022]: 1.887757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16023]: 1.887770775 - core[1].svIdle(17), plen 0: [] -EVENT[16024]: 1.888617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16025]: 1.888629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16026]: 1.888643125 - core[0].svIdle(17), plen 0: [] -EVENT[16027]: 1.888747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16028]: 1.888756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16029]: 1.888770600 - core[1].svIdle(17), plen 0: [] -EVENT[16030]: 1.889617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16031]: 1.889629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16032]: 1.889643250 - core[0].svIdle(17), plen 0: [] -EVENT[16033]: 1.889747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16034]: 1.889756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16035]: 1.889770600 - core[1].svIdle(17), plen 0: [] -EVENT[16036]: 1.890617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16037]: 1.890629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16038]: 1.890643175 - core[0].svIdle(17), plen 0: [] -EVENT[16039]: 1.890747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16040]: 1.890756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16041]: 1.890770600 - core[1].svIdle(17), plen 0: [] -EVENT[16042]: 1.891617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16043]: 1.891629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16044]: 1.891643125 - core[0].svIdle(17), plen 0: [] -EVENT[16045]: 1.891747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16046]: 1.891757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16047]: 1.891770775 - core[1].svIdle(17), plen 0: [] -EVENT[16048]: 1.892617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16049]: 1.892629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16050]: 1.892643125 - core[0].svIdle(17), plen 0: [] -EVENT[16051]: 1.892747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16052]: 1.892756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16053]: 1.892770600 - core[1].svIdle(17), plen 0: [] -EVENT[16054]: 1.893617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16055]: 1.893629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[16056]: 1.893638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16057]: 1.893652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[16058]: 1.893677025 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073448932, size: 128, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.893677025] HEAP: Allocated 128 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16059]: 1.893692800 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16060]: 1.893706800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16061]: 1.893747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16062]: 1.893768850 - core[0].svPrint(26), plen 72: [msg: I (2220) example: Task[0x3ffb7f40]: allocated 128 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.893768850] LOG: I (2220) example: Task[0x3ffb7f40]: allocated 128 bytes @ 0x3ffb87e4 -EVENT[16063]: 1.893776900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16064]: 1.893785925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16065]: 1.893795800 - core[1].svIdle(17), plen 0: [] -EVENT[16066]: 1.893806575 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[16067]: 1.893819600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16068]: 1.893828125 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[16069]: 1.893836075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16070]: 1.893844600 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[16071]: 1.893857225 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[16072]: 1.893865625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[16073]: 1.893873925 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[16074]: 1.893882800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16075]: 1.893892200 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16076]: 1.893901500 - core[0].svIdle(17), plen 0: [] -EVENT[16077]: 1.893916325 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16078]: 1.893965575 - core[1].svPrint(26), plen 64: [msg: I (2220) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.893965575] LOG: I (2220) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[16079]: 1.893983375 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.893983375] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16080]: 1.894001925 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[16081]: 1.894014625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16082]: 1.894023425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16083]: 1.894039000 - core[1].svIdle(17), plen 0: [] -EVENT[16084]: 1.894617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16085]: 1.894629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[16086]: 1.894638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16087]: 1.894652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[16088]: 1.894677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 256, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.894677000] HEAP: Allocated 256 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16089]: 1.894689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16090]: 1.894703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16091]: 1.894747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16092]: 1.894769475 - core[0].svPrint(26), plen 72: [msg: I (2221) example: Task[0x3ffb82a0]: allocated 256 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.894769475] LOG: I (2221) example: Task[0x3ffb82a0]: allocated 256 bytes @ 0x3ffb4b10 -EVENT[16093]: 1.894781225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16094]: 1.894789725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16095]: 1.894800100 - core[1].svIdle(17), plen 0: [] -EVENT[16096]: 1.894810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[16097]: 1.894823900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16098]: 1.894832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[16099]: 1.894840400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16100]: 1.894848975 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[16101]: 1.894861625 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[16102]: 1.894870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[16103]: 1.894878325 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[16104]: 1.894887200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16105]: 1.894896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16106]: 1.894905775 - core[0].svIdle(17), plen 0: [] -EVENT[16107]: 1.894920600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16108]: 1.894969850 - core[1].svPrint(26), plen 64: [msg: I (2221) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.894969850] LOG: I (2221) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[16109]: 1.894985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.894985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16110]: 1.895006525 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[16111]: 1.895019225 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16112]: 1.895028025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16113]: 1.895043600 - core[1].svIdle(17), plen 0: [] -EVENT[16114]: 1.895617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16115]: 1.895629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[16116]: 1.895638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16117]: 1.895652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[16118]: 1.895676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 384, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.895676975] HEAP: Allocated 384 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16119]: 1.895689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16120]: 1.895703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16121]: 1.895747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16122]: 1.895769450 - core[0].svPrint(26), plen 72: [msg: I (2222) example: Task[0x3ffb8600]: allocated 384 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.895769450] LOG: I (2222) example: Task[0x3ffb8600]: allocated 384 bytes @ 0x3ffb4b10 -EVENT[16123]: 1.895778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16124]: 1.895786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16125]: 1.895797075 - core[1].svIdle(17), plen 0: [] -EVENT[16126]: 1.895807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[16127]: 1.895820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16128]: 1.895829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[16129]: 1.895837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16130]: 1.895845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[16131]: 1.895858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[16132]: 1.895866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[16133]: 1.895878175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[16134]: 1.895886350 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16135]: 1.895894725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16136]: 1.895904975 - core[0].svIdle(17), plen 0: [] -EVENT[16137]: 1.895919925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16138]: 1.895969275 - core[1].svPrint(26), plen 64: [msg: I (2222) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.895969275] LOG: I (2222) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[16139]: 1.895984650 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.895984650] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16140]: 1.896002775 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[16141]: 1.896015600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16142]: 1.896024350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16143]: 1.896039800 - core[1].svIdle(17), plen 0: [] -EVENT[16144]: 1.896617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16145]: 1.896629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16146]: 1.896643175 - core[0].svIdle(17), plen 0: [] -EVENT[16147]: 1.896747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16148]: 1.896756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16149]: 1.896770600 - core[1].svIdle(17), plen 0: [] -EVENT[16150]: 1.897617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16151]: 1.897629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16152]: 1.897643125 - core[0].svIdle(17), plen 0: [] -EVENT[16153]: 1.897747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16154]: 1.897757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16155]: 1.897770775 - core[1].svIdle(17), plen 0: [] -EVENT[16156]: 1.898617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16157]: 1.898629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16158]: 1.898643125 - core[0].svIdle(17), plen 0: [] -EVENT[16159]: 1.898747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16160]: 1.898756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16161]: 1.898770600 - core[1].svIdle(17), plen 0: [] -EVENT[16162]: 1.899617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16163]: 1.899629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16164]: 1.899643250 - core[0].svIdle(17), plen 0: [] -EVENT[16165]: 1.899747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16166]: 1.899756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16167]: 1.899770600 - core[1].svIdle(17), plen 0: [] -EVENT[16168]: 1.900617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16169]: 1.900632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16170]: 1.900646225 - core[0].svIdle(17), plen 0: [] -EVENT[16171]: 1.900747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16172]: 1.900756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16173]: 1.900770600 - core[1].svIdle(17), plen 0: [] -EVENT[16174]: 1.901617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16175]: 1.901629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16176]: 1.901643125 - core[0].svIdle(17), plen 0: [] -EVENT[16177]: 1.901747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16178]: 1.901757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16179]: 1.901770775 - core[1].svIdle(17), plen 0: [] -EVENT[16180]: 1.902617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16181]: 1.902629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16182]: 1.902643125 - core[0].svIdle(17), plen 0: [] -EVENT[16183]: 1.902747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16184]: 1.902756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16185]: 1.902770600 - core[1].svIdle(17), plen 0: [] -EVENT[16186]: 1.903617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16187]: 1.903629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16188]: 1.903643250 - core[0].svIdle(17), plen 0: [] -EVENT[16189]: 1.903747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16190]: 1.903756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16191]: 1.903770600 - core[1].svIdle(17), plen 0: [] -EVENT[16192]: 1.904617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16193]: 1.904629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16194]: 1.904643175 - core[0].svIdle(17), plen 0: [] -EVENT[16195]: 1.904747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16196]: 1.904756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16197]: 1.904770600 - core[1].svIdle(17), plen 0: [] -EVENT[16198]: 1.905617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16199]: 1.905629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16200]: 1.905643125 - core[0].svIdle(17), plen 0: [] -EVENT[16201]: 1.905747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16202]: 1.905757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16203]: 1.905770775 - core[1].svIdle(17), plen 0: [] -EVENT[16204]: 1.906617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16205]: 1.906629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16206]: 1.906643125 - core[0].svIdle(17), plen 0: [] -EVENT[16207]: 1.906747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16208]: 1.906756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16209]: 1.906770600 - core[1].svIdle(17), plen 0: [] -EVENT[16210]: 1.907617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16211]: 1.907629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16212]: 1.907643250 - core[0].svIdle(17), plen 0: [] -EVENT[16213]: 1.907747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16214]: 1.907756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16215]: 1.907770600 - core[1].svIdle(17), plen 0: [] -EVENT[16216]: 1.908617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16217]: 1.908629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16218]: 1.908643175 - core[0].svIdle(17), plen 0: [] -EVENT[16219]: 1.908747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16220]: 1.908756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16221]: 1.908770600 - core[1].svIdle(17), plen 0: [] -EVENT[16222]: 1.909617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16223]: 1.909629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16224]: 1.909643125 - core[0].svIdle(17), plen 0: [] -EVENT[16225]: 1.909747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16226]: 1.909757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16227]: 1.909770775 - core[1].svIdle(17), plen 0: [] -EVENT[16228]: 1.910617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16229]: 1.910629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16230]: 1.910643125 - core[0].svIdle(17), plen 0: [] -EVENT[16231]: 1.910747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16232]: 1.910756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16233]: 1.910770600 - core[1].svIdle(17), plen 0: [] -EVENT[16234]: 1.911617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16235]: 1.911629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16236]: 1.911643250 - core[0].svIdle(17), plen 0: [] -EVENT[16237]: 1.911747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16238]: 1.911756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16239]: 1.911770600 - core[1].svIdle(17), plen 0: [] -EVENT[16240]: 1.912617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16241]: 1.912632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16242]: 1.912646225 - core[0].svIdle(17), plen 0: [] -EVENT[16243]: 1.912747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16244]: 1.912756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16245]: 1.912770600 - core[1].svIdle(17), plen 0: [] -EVENT[16246]: 1.913617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16247]: 1.913629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16248]: 1.913643125 - core[0].svIdle(17), plen 0: [] -EVENT[16249]: 1.913747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16250]: 1.913757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16251]: 1.913770775 - core[1].svIdle(17), plen 0: [] -EVENT[16252]: 1.914617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16253]: 1.914629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16254]: 1.914643125 - core[0].svIdle(17), plen 0: [] -EVENT[16255]: 1.914747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16256]: 1.914756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16257]: 1.914770600 - core[1].svIdle(17), plen 0: [] -EVENT[16258]: 1.915617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16259]: 1.915629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16260]: 1.915643250 - core[0].svIdle(17), plen 0: [] -EVENT[16261]: 1.915747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16262]: 1.915756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16263]: 1.915770600 - core[1].svIdle(17), plen 0: [] -EVENT[16264]: 1.916617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16265]: 1.916629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16266]: 1.916643175 - core[0].svIdle(17), plen 0: [] -EVENT[16267]: 1.916747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16268]: 1.916756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16269]: 1.916770600 - core[1].svIdle(17), plen 0: [] -EVENT[16270]: 1.917617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16271]: 1.917629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16272]: 1.917643125 - core[0].svIdle(17), plen 0: [] -EVENT[16273]: 1.917747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16274]: 1.917757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16275]: 1.917770775 - core[1].svIdle(17), plen 0: [] -EVENT[16276]: 1.918617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16277]: 1.918629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16278]: 1.918643125 - core[0].svIdle(17), plen 0: [] -EVENT[16279]: 1.918747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16280]: 1.918756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16281]: 1.918770600 - core[1].svIdle(17), plen 0: [] -EVENT[16282]: 1.919617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16283]: 1.919629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16284]: 1.919643250 - core[0].svIdle(17), plen 0: [] -EVENT[16285]: 1.919747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16286]: 1.919756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16287]: 1.919770600 - core[1].svIdle(17), plen 0: [] -EVENT[16288]: 1.920617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16289]: 1.920629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16290]: 1.920643175 - core[0].svIdle(17), plen 0: [] -EVENT[16291]: 1.920747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16292]: 1.920756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16293]: 1.920770600 - core[1].svIdle(17), plen 0: [] -EVENT[16294]: 1.921617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16295]: 1.921629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16296]: 1.921643125 - core[0].svIdle(17), plen 0: [] -EVENT[16297]: 1.921747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16298]: 1.921757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16299]: 1.921770775 - core[1].svIdle(17), plen 0: [] -EVENT[16300]: 1.922617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16301]: 1.922629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16302]: 1.922643125 - core[0].svIdle(17), plen 0: [] -EVENT[16303]: 1.922747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16304]: 1.922756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16305]: 1.922770600 - core[1].svIdle(17), plen 0: [] -EVENT[16306]: 1.923617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16307]: 1.923629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[16308]: 1.923638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16309]: 1.923652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[16310]: 1.923676825 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073448932, size: 130, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.923676825] HEAP: Allocated 130 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16311]: 1.923692600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16312]: 1.923706600 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16313]: 1.923747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16314]: 1.923768875 - core[0].svPrint(26), plen 72: [msg: I (2250) example: Task[0x3ffb7f40]: allocated 130 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.923768875] LOG: I (2250) example: Task[0x3ffb7f40]: allocated 130 bytes @ 0x3ffb87e4 -EVENT[16315]: 1.923777200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16316]: 1.923785925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16317]: 1.923796075 - core[1].svIdle(17), plen 0: [] -EVENT[16318]: 1.923806850 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[16319]: 1.923819875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16320]: 1.923828400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[16321]: 1.923836350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16322]: 1.923844875 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[16323]: 1.923857500 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[16324]: 1.923865900 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[16325]: 1.923874200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[16326]: 1.923883075 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16327]: 1.923892475 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16328]: 1.923901775 - core[0].svIdle(17), plen 0: [] -EVENT[16329]: 1.923916600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16330]: 1.923965850 - core[1].svPrint(26), plen 64: [msg: I (2250) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.923965850] LOG: I (2250) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[16331]: 1.923983650 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.923983650] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16332]: 1.924001625 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[16333]: 1.924014325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16334]: 1.924023125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16335]: 1.924038700 - core[1].svIdle(17), plen 0: [] -EVENT[16336]: 1.924617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16337]: 1.924629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[16338]: 1.924638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16339]: 1.924652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[16340]: 1.924677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 260, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.924677000] HEAP: Allocated 260 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16341]: 1.924689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16342]: 1.924703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16343]: 1.924747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16344]: 1.924769475 - core[0].svPrint(26), plen 72: [msg: I (2251) example: Task[0x3ffb82a0]: allocated 260 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.924769475] LOG: I (2251) example: Task[0x3ffb82a0]: allocated 260 bytes @ 0x3ffb4b10 -EVENT[16345]: 1.924781225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16346]: 1.924789725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16347]: 1.924800100 - core[1].svIdle(17), plen 0: [] -EVENT[16348]: 1.924810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[16349]: 1.924823900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16350]: 1.924832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[16351]: 1.924840400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16352]: 1.924848975 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[16353]: 1.924861625 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[16354]: 1.924870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[16355]: 1.924878325 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[16356]: 1.924887200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16357]: 1.924896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16358]: 1.924905775 - core[0].svIdle(17), plen 0: [] -EVENT[16359]: 1.924920600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16360]: 1.924969850 - core[1].svPrint(26), plen 64: [msg: I (2251) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.924969850] LOG: I (2251) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[16361]: 1.924985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.924985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16362]: 1.925006525 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[16363]: 1.925019225 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16364]: 1.925028025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16365]: 1.925043600 - core[1].svIdle(17), plen 0: [] -EVENT[16366]: 1.925617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16367]: 1.925629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[16368]: 1.925638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16369]: 1.925652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[16370]: 1.925676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 390, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.925676975] HEAP: Allocated 390 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16371]: 1.925689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16372]: 1.925703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16373]: 1.925747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16374]: 1.925769450 - core[0].svPrint(26), plen 72: [msg: I (2252) example: Task[0x3ffb8600]: allocated 390 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.925769450] LOG: I (2252) example: Task[0x3ffb8600]: allocated 390 bytes @ 0x3ffb4b10 -EVENT[16375]: 1.925778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16376]: 1.925786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16377]: 1.925797075 - core[1].svIdle(17), plen 0: [] -EVENT[16378]: 1.925807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[16379]: 1.925820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16380]: 1.925829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[16381]: 1.925837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16382]: 1.925845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[16383]: 1.925858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[16384]: 1.925866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[16385]: 1.925878175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[16386]: 1.925886350 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16387]: 1.925894725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16388]: 1.925904975 - core[0].svIdle(17), plen 0: [] -EVENT[16389]: 1.925919925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16390]: 1.925969275 - core[1].svPrint(26), plen 64: [msg: I (2252) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.925969275] LOG: I (2252) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[16391]: 1.925984650 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.925984650] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16392]: 1.926002775 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[16393]: 1.926015600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16394]: 1.926024350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16395]: 1.926039800 - core[1].svIdle(17), plen 0: [] -EVENT[16396]: 1.926617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16397]: 1.926629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16398]: 1.926643175 - core[0].svIdle(17), plen 0: [] -EVENT[16399]: 1.926747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16400]: 1.926756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16401]: 1.926770600 - core[1].svIdle(17), plen 0: [] -EVENT[16402]: 1.927617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16403]: 1.927629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16404]: 1.927643125 - core[0].svIdle(17), plen 0: [] -EVENT[16405]: 1.927747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16406]: 1.927757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16407]: 1.927770775 - core[1].svIdle(17), plen 0: [] -EVENT[16408]: 1.928617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16409]: 1.928629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16410]: 1.928643125 - core[0].svIdle(17), plen 0: [] -EVENT[16411]: 1.928747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16412]: 1.928756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16413]: 1.928770600 - core[1].svIdle(17), plen 0: [] -EVENT[16414]: 1.929617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16415]: 1.929629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16416]: 1.929643250 - core[0].svIdle(17), plen 0: [] -EVENT[16417]: 1.929747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16418]: 1.929756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16419]: 1.929770600 - core[1].svIdle(17), plen 0: [] -EVENT[16420]: 1.930617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16421]: 1.930632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16422]: 1.930646225 - core[0].svIdle(17), plen 0: [] -EVENT[16423]: 1.930747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16424]: 1.930756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16425]: 1.930770600 - core[1].svIdle(17), plen 0: [] -EVENT[16426]: 1.931617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16427]: 1.931629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16428]: 1.931643125 - core[0].svIdle(17), plen 0: [] -EVENT[16429]: 1.931747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16430]: 1.931757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16431]: 1.931770775 - core[1].svIdle(17), plen 0: [] -EVENT[16432]: 1.932617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16433]: 1.932629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16434]: 1.932643125 - core[0].svIdle(17), plen 0: [] -EVENT[16435]: 1.932747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16436]: 1.932756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16437]: 1.932770600 - core[1].svIdle(17), plen 0: [] -EVENT[16438]: 1.933617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16439]: 1.933629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16440]: 1.933643250 - core[0].svIdle(17), plen 0: [] -EVENT[16441]: 1.933747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16442]: 1.933756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16443]: 1.933770600 - core[1].svIdle(17), plen 0: [] -EVENT[16444]: 1.934617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16445]: 1.934629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16446]: 1.934643175 - core[0].svIdle(17), plen 0: [] -EVENT[16447]: 1.934747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16448]: 1.934756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16449]: 1.934770600 - core[1].svIdle(17), plen 0: [] -EVENT[16450]: 1.935617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16451]: 1.935629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16452]: 1.935643125 - core[0].svIdle(17), plen 0: [] -EVENT[16453]: 1.935747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16454]: 1.935757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16455]: 1.935770775 - core[1].svIdle(17), plen 0: [] -EVENT[16456]: 1.936617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16457]: 1.936629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16458]: 1.936643125 - core[0].svIdle(17), plen 0: [] -EVENT[16459]: 1.936747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16460]: 1.936756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16461]: 1.936770600 - core[1].svIdle(17), plen 0: [] -EVENT[16462]: 1.937617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16463]: 1.937629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16464]: 1.937643250 - core[0].svIdle(17), plen 0: [] -EVENT[16465]: 1.937747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16466]: 1.937756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16467]: 1.937770600 - core[1].svIdle(17), plen 0: [] -EVENT[16468]: 1.938617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16469]: 1.938629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16470]: 1.938643175 - core[0].svIdle(17), plen 0: [] -EVENT[16471]: 1.938747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16472]: 1.938756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16473]: 1.938770600 - core[1].svIdle(17), plen 0: [] -EVENT[16474]: 1.939617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16475]: 1.939629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16476]: 1.939643125 - core[0].svIdle(17), plen 0: [] -EVENT[16477]: 1.939747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16478]: 1.939757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16479]: 1.939770775 - core[1].svIdle(17), plen 0: [] -EVENT[16480]: 1.940617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16481]: 1.940629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16482]: 1.940643125 - core[0].svIdle(17), plen 0: [] -EVENT[16483]: 1.940747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16484]: 1.940756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16485]: 1.940770600 - core[1].svIdle(17), plen 0: [] -EVENT[16486]: 1.941617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16487]: 1.941629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16488]: 1.941643250 - core[0].svIdle(17), plen 0: [] -EVENT[16489]: 1.941747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16490]: 1.941756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16491]: 1.941770600 - core[1].svIdle(17), plen 0: [] -EVENT[16492]: 1.942617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16493]: 1.942632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16494]: 1.942646225 - core[0].svIdle(17), plen 0: [] -EVENT[16495]: 1.942747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16496]: 1.942756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16497]: 1.942770600 - core[1].svIdle(17), plen 0: [] -EVENT[16498]: 1.943617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16499]: 1.943629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16500]: 1.943643125 - core[0].svIdle(17), plen 0: [] -EVENT[16501]: 1.943747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16502]: 1.943757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16503]: 1.943770775 - core[1].svIdle(17), plen 0: [] -EVENT[16504]: 1.944617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16505]: 1.944629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16506]: 1.944643125 - core[0].svIdle(17), plen 0: [] -EVENT[16507]: 1.944747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16508]: 1.944756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16509]: 1.944770600 - core[1].svIdle(17), plen 0: [] -EVENT[16510]: 1.945617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16511]: 1.945629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16512]: 1.945643250 - core[0].svIdle(17), plen 0: [] -EVENT[16513]: 1.945747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16514]: 1.945756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16515]: 1.945770600 - core[1].svIdle(17), plen 0: [] -EVENT[16516]: 1.946617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16517]: 1.946629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16518]: 1.946643175 - core[0].svIdle(17), plen 0: [] -EVENT[16519]: 1.946747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16520]: 1.946756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16521]: 1.946770600 - core[1].svIdle(17), plen 0: [] -EVENT[16522]: 1.947617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16523]: 1.947629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16524]: 1.947643125 - core[0].svIdle(17), plen 0: [] -EVENT[16525]: 1.947747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16526]: 1.947757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16527]: 1.947770775 - core[1].svIdle(17), plen 0: [] -EVENT[16528]: 1.948617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16529]: 1.948629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16530]: 1.948643125 - core[0].svIdle(17), plen 0: [] -EVENT[16531]: 1.948747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16532]: 1.948756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16533]: 1.948770600 - core[1].svIdle(17), plen 0: [] -EVENT[16534]: 1.949617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16535]: 1.949629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16536]: 1.949643250 - core[0].svIdle(17), plen 0: [] -EVENT[16537]: 1.949747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16538]: 1.949756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16539]: 1.949770600 - core[1].svIdle(17), plen 0: [] -EVENT[16540]: 1.950617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16541]: 1.950629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16542]: 1.950643175 - core[0].svIdle(17), plen 0: [] -EVENT[16543]: 1.950747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16544]: 1.950756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16545]: 1.950770600 - core[1].svIdle(17), plen 0: [] -EVENT[16546]: 1.951617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16547]: 1.951629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16548]: 1.951643125 - core[0].svIdle(17), plen 0: [] -EVENT[16549]: 1.951747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16550]: 1.951757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16551]: 1.951770775 - core[1].svIdle(17), plen 0: [] -EVENT[16552]: 1.952617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16553]: 1.952629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16554]: 1.952643125 - core[0].svIdle(17), plen 0: [] -EVENT[16555]: 1.952747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16556]: 1.952756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16557]: 1.952770600 - core[1].svIdle(17), plen 0: [] -EVENT[16558]: 1.953617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16559]: 1.953629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[16560]: 1.953638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16561]: 1.953652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[16562]: 1.953676825 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073448932, size: 132, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.953676825] HEAP: Allocated 132 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16563]: 1.953692600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16564]: 1.953706600 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16565]: 1.953747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16566]: 1.953768875 - core[0].svPrint(26), plen 72: [msg: I (2280) example: Task[0x3ffb7f40]: allocated 132 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.953768875] LOG: I (2280) example: Task[0x3ffb7f40]: allocated 132 bytes @ 0x3ffb87e4 -EVENT[16567]: 1.953777200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16568]: 1.953785925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16569]: 1.953796075 - core[1].svIdle(17), plen 0: [] -EVENT[16570]: 1.953806850 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[16571]: 1.953819875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16572]: 1.953828400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[16573]: 1.953836350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16574]: 1.953844875 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[16575]: 1.953857500 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[16576]: 1.953865900 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[16577]: 1.953874200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[16578]: 1.953883075 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16579]: 1.953892475 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16580]: 1.953901775 - core[0].svIdle(17), plen 0: [] -EVENT[16581]: 1.953916600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16582]: 1.953965850 - core[1].svPrint(26), plen 64: [msg: I (2280) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.953965850] LOG: I (2280) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[16583]: 1.953983650 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.953983650] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16584]: 1.954001625 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[16585]: 1.954014325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16586]: 1.954023125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16587]: 1.954038700 - core[1].svIdle(17), plen 0: [] -EVENT[16588]: 1.954617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16589]: 1.954629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[16590]: 1.954638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16591]: 1.954652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[16592]: 1.954677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 264, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.954677000] HEAP: Allocated 264 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16593]: 1.954689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16594]: 1.954703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16595]: 1.954747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16596]: 1.954769475 - core[0].svPrint(26), plen 72: [msg: I (2281) example: Task[0x3ffb82a0]: allocated 264 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.954769475] LOG: I (2281) example: Task[0x3ffb82a0]: allocated 264 bytes @ 0x3ffb4b10 -EVENT[16597]: 1.954781225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16598]: 1.954789725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16599]: 1.954800100 - core[1].svIdle(17), plen 0: [] -EVENT[16600]: 1.954810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[16601]: 1.954823900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16602]: 1.954832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[16603]: 1.954840400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16604]: 1.954848975 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[16605]: 1.954861625 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[16606]: 1.954870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[16607]: 1.954878325 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[16608]: 1.954887200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16609]: 1.954896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16610]: 1.954905775 - core[0].svIdle(17), plen 0: [] -EVENT[16611]: 1.954920600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16612]: 1.954969850 - core[1].svPrint(26), plen 64: [msg: I (2281) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.954969850] LOG: I (2281) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[16613]: 1.954985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.954985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16614]: 1.955007900 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[16615]: 1.955020600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16616]: 1.955029400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16617]: 1.955044975 - core[1].svIdle(17), plen 0: [] -EVENT[16618]: 1.955617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16619]: 1.955629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[16620]: 1.955638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16621]: 1.955652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[16622]: 1.955676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 396, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.955676975] HEAP: Allocated 396 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16623]: 1.955689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16624]: 1.955703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16625]: 1.955747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16626]: 1.955769450 - core[0].svPrint(26), plen 72: [msg: I (2282) example: Task[0x3ffb8600]: allocated 396 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.955769450] LOG: I (2282) example: Task[0x3ffb8600]: allocated 396 bytes @ 0x3ffb4b10 -EVENT[16627]: 1.955778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16628]: 1.955786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16629]: 1.955797075 - core[1].svIdle(17), plen 0: [] -EVENT[16630]: 1.955807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[16631]: 1.955820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16632]: 1.955829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[16633]: 1.955837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16634]: 1.955845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[16635]: 1.955858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[16636]: 1.955866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[16637]: 1.955879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[16638]: 1.955887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16639]: 1.955895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16640]: 1.955905825 - core[0].svIdle(17), plen 0: [] -EVENT[16641]: 1.955920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16642]: 1.955970100 - core[1].svPrint(26), plen 64: [msg: I (2282) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.955970100] LOG: I (2282) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[16643]: 1.955985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.955985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16644]: 1.956003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[16645]: 1.956016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16646]: 1.956025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16647]: 1.956040650 - core[1].svIdle(17), plen 0: [] -EVENT[16648]: 1.956617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16649]: 1.956629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16650]: 1.956643175 - core[0].svIdle(17), plen 0: [] -EVENT[16651]: 1.956747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16652]: 1.956756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16653]: 1.956770600 - core[1].svIdle(17), plen 0: [] -EVENT[16654]: 1.957617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16655]: 1.957629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16656]: 1.957643125 - core[0].svIdle(17), plen 0: [] -EVENT[16657]: 1.957747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16658]: 1.957757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16659]: 1.957770775 - core[1].svIdle(17), plen 0: [] -EVENT[16660]: 1.958617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16661]: 1.958629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16662]: 1.958643125 - core[0].svIdle(17), plen 0: [] -EVENT[16663]: 1.958747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16664]: 1.958756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16665]: 1.958770600 - core[1].svIdle(17), plen 0: [] -EVENT[16666]: 1.959617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16667]: 1.959629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16668]: 1.959643250 - core[0].svIdle(17), plen 0: [] -EVENT[16669]: 1.959747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16670]: 1.959756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16671]: 1.959770600 - core[1].svIdle(17), plen 0: [] -EVENT[16672]: 1.960617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16673]: 1.960632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16674]: 1.960646225 - core[0].svIdle(17), plen 0: [] -EVENT[16675]: 1.960747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16676]: 1.960756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16677]: 1.960770600 - core[1].svIdle(17), plen 0: [] -EVENT[16678]: 1.961617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16679]: 1.961629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16680]: 1.961643125 - core[0].svIdle(17), plen 0: [] -EVENT[16681]: 1.961747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16682]: 1.961757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16683]: 1.961770775 - core[1].svIdle(17), plen 0: [] -EVENT[16684]: 1.962617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16685]: 1.962629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16686]: 1.962643125 - core[0].svIdle(17), plen 0: [] -EVENT[16687]: 1.962747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16688]: 1.962756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16689]: 1.962770600 - core[1].svIdle(17), plen 0: [] -EVENT[16690]: 1.963617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16691]: 1.963629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16692]: 1.963643250 - core[0].svIdle(17), plen 0: [] -EVENT[16693]: 1.963747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16694]: 1.963756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16695]: 1.963770600 - core[1].svIdle(17), plen 0: [] -EVENT[16696]: 1.964617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16697]: 1.964629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16698]: 1.964643175 - core[0].svIdle(17), plen 0: [] -EVENT[16699]: 1.964747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16700]: 1.964756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16701]: 1.964770600 - core[1].svIdle(17), plen 0: [] -EVENT[16702]: 1.965617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16703]: 1.965629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16704]: 1.965643125 - core[0].svIdle(17), plen 0: [] -EVENT[16705]: 1.965747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16706]: 1.965757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16707]: 1.965770775 - core[1].svIdle(17), plen 0: [] -EVENT[16708]: 1.966617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16709]: 1.966629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16710]: 1.966643125 - core[0].svIdle(17), plen 0: [] -EVENT[16711]: 1.966747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16712]: 1.966756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16713]: 1.966770600 - core[1].svIdle(17), plen 0: [] -EVENT[16714]: 1.967617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16715]: 1.967629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16716]: 1.967643250 - core[0].svIdle(17), plen 0: [] -EVENT[16717]: 1.967747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16718]: 1.967756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16719]: 1.967770600 - core[1].svIdle(17), plen 0: [] -EVENT[16720]: 1.968617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16721]: 1.968629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16722]: 1.968643175 - core[0].svIdle(17), plen 0: [] -EVENT[16723]: 1.968747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16724]: 1.968756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16725]: 1.968770600 - core[1].svIdle(17), plen 0: [] -EVENT[16726]: 1.969617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16727]: 1.969629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16728]: 1.969643125 - core[0].svIdle(17), plen 0: [] -EVENT[16729]: 1.969747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16730]: 1.969757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16731]: 1.969770775 - core[1].svIdle(17), plen 0: [] -EVENT[16732]: 1.970617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16733]: 1.970629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16734]: 1.970643125 - core[0].svIdle(17), plen 0: [] -EVENT[16735]: 1.970747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16736]: 1.970756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16737]: 1.970770600 - core[1].svIdle(17), plen 0: [] -EVENT[16738]: 1.971617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16739]: 1.971629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16740]: 1.971643250 - core[0].svIdle(17), plen 0: [] -EVENT[16741]: 1.971747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16742]: 1.971756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16743]: 1.971770600 - core[1].svIdle(17), plen 0: [] -EVENT[16744]: 1.972617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16745]: 1.972631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16746]: 1.972645550 - core[0].svIdle(17), plen 0: [] -EVENT[16747]: 1.972747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16748]: 1.972756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16749]: 1.972770600 - core[1].svIdle(17), plen 0: [] -EVENT[16750]: 1.973617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16751]: 1.973629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16752]: 1.973643125 - core[0].svIdle(17), plen 0: [] -EVENT[16753]: 1.973747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16754]: 1.973757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16755]: 1.973770775 - core[1].svIdle(17), plen 0: [] -EVENT[16756]: 1.974617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16757]: 1.974629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16758]: 1.974643125 - core[0].svIdle(17), plen 0: [] -EVENT[16759]: 1.974747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16760]: 1.974756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16761]: 1.974770600 - core[1].svIdle(17), plen 0: [] -EVENT[16762]: 1.975617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16763]: 1.975629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16764]: 1.975643250 - core[0].svIdle(17), plen 0: [] -EVENT[16765]: 1.975747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16766]: 1.975756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16767]: 1.975770600 - core[1].svIdle(17), plen 0: [] -EVENT[16768]: 1.976617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16769]: 1.976629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16770]: 1.976643175 - core[0].svIdle(17), plen 0: [] -EVENT[16771]: 1.976747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16772]: 1.976756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16773]: 1.976770600 - core[1].svIdle(17), plen 0: [] -EVENT[16774]: 1.977617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16775]: 1.977629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16776]: 1.977643125 - core[0].svIdle(17), plen 0: [] -EVENT[16777]: 1.977747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16778]: 1.977757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16779]: 1.977770775 - core[1].svIdle(17), plen 0: [] -EVENT[16780]: 1.978617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16781]: 1.978629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16782]: 1.978643125 - core[0].svIdle(17), plen 0: [] -EVENT[16783]: 1.978747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16784]: 1.978756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16785]: 1.978770600 - core[1].svIdle(17), plen 0: [] -EVENT[16786]: 1.979617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16787]: 1.979629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16788]: 1.979643250 - core[0].svIdle(17), plen 0: [] -EVENT[16789]: 1.979747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16790]: 1.979756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16791]: 1.979770600 - core[1].svIdle(17), plen 0: [] -EVENT[16792]: 1.980617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16793]: 1.980629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16794]: 1.980643175 - core[0].svIdle(17), plen 0: [] -EVENT[16795]: 1.980747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16796]: 1.980756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16797]: 1.980770600 - core[1].svIdle(17), plen 0: [] -EVENT[16798]: 1.981617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16799]: 1.981629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16800]: 1.981643125 - core[0].svIdle(17), plen 0: [] -EVENT[16801]: 1.981747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16802]: 1.981757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16803]: 1.981770775 - core[1].svIdle(17), plen 0: [] -EVENT[16804]: 1.982617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16805]: 1.982629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16806]: 1.982643125 - core[0].svIdle(17), plen 0: [] -EVENT[16807]: 1.982747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16808]: 1.982756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16809]: 1.982770600 - core[1].svIdle(17), plen 0: [] -EVENT[16810]: 1.983617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16811]: 1.983629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[16812]: 1.983638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16813]: 1.983652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[16814]: 1.983676250 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073448932, size: 134, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.983676250] HEAP: Allocated 134 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16815]: 1.983692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16816]: 1.983706025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16817]: 1.983747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16818]: 1.983768350 - core[0].svPrint(26), plen 72: [msg: I (2310) example: Task[0x3ffb7f40]: allocated 134 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.983768350] LOG: I (2310) example: Task[0x3ffb7f40]: allocated 134 bytes @ 0x3ffb87e4 -EVENT[16819]: 1.983777500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16820]: 1.983785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16821]: 1.983796400 - core[1].svIdle(17), plen 0: [] -EVENT[16822]: 1.983807175 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[16823]: 1.983820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16824]: 1.983828725 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[16825]: 1.983836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16826]: 1.983845200 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[16827]: 1.983857825 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[16828]: 1.983866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[16829]: 1.983874525 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[16830]: 1.983883400 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16831]: 1.983892800 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16832]: 1.983902100 - core[0].svIdle(17), plen 0: [] -EVENT[16833]: 1.983916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16834]: 1.983966175 - core[1].svPrint(26), plen 64: [msg: I (2310) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[1.983966175] LOG: I (2310) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[16835]: 1.983984650 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.983984650] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16836]: 1.984002625 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[16837]: 1.984015325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16838]: 1.984024125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16839]: 1.984039700 - core[1].svIdle(17), plen 0: [] -EVENT[16840]: 1.984617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16841]: 1.984629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[16842]: 1.984638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16843]: 1.984652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[16844]: 1.984677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 268, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.984677000] HEAP: Allocated 268 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16845]: 1.984689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16846]: 1.984703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16847]: 1.984747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16848]: 1.984769475 - core[0].svPrint(26), plen 72: [msg: I (2311) example: Task[0x3ffb82a0]: allocated 268 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.984769475] LOG: I (2311) example: Task[0x3ffb82a0]: allocated 268 bytes @ 0x3ffb4b10 -EVENT[16849]: 1.984780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16850]: 1.984789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16851]: 1.984798950 - core[1].svIdle(17), plen 0: [] -EVENT[16852]: 1.984809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[16853]: 1.984822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16854]: 1.984831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[16855]: 1.984839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16856]: 1.984847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[16857]: 1.984860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[16858]: 1.984868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[16859]: 1.984877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[16860]: 1.984886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16861]: 1.984895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16862]: 1.984904625 - core[0].svIdle(17), plen 0: [] -EVENT[16863]: 1.984919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16864]: 1.984968700 - core[1].svPrint(26), plen 64: [msg: I (2311) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.984968700] LOG: I (2311) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[16865]: 1.984984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.984984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16866]: 1.985005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[16867]: 1.985018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16868]: 1.985026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16869]: 1.985042425 - core[1].svIdle(17), plen 0: [] -EVENT[16870]: 1.985617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16871]: 1.985629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[16872]: 1.985638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16873]: 1.985652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[16874]: 1.985676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 402, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.985676975] HEAP: Allocated 402 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16875]: 1.985689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16876]: 1.985703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16877]: 1.985747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16878]: 1.985769450 - core[0].svPrint(26), plen 72: [msg: I (2312) example: Task[0x3ffb8600]: allocated 402 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.985769450] LOG: I (2312) example: Task[0x3ffb8600]: allocated 402 bytes @ 0x3ffb4b10 -EVENT[16879]: 1.985778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16880]: 1.985786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16881]: 1.985797075 - core[1].svIdle(17), plen 0: [] -EVENT[16882]: 1.985807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[16883]: 1.985820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16884]: 1.985829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[16885]: 1.985837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16886]: 1.985845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[16887]: 1.985858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[16888]: 1.985866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[16889]: 1.985879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[16890]: 1.985887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16891]: 1.985895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[16892]: 1.985905825 - core[0].svIdle(17), plen 0: [] -EVENT[16893]: 1.985920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[16894]: 1.985970100 - core[1].svPrint(26), plen 64: [msg: I (2312) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[1.985970100] LOG: I (2312) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[16895]: 1.985985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[1.985985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[16896]: 1.986003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[16897]: 1.986016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[16898]: 1.986025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16899]: 1.986040650 - core[1].svIdle(17), plen 0: [] -EVENT[16900]: 1.986617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16901]: 1.986629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16902]: 1.986643175 - core[0].svIdle(17), plen 0: [] -EVENT[16903]: 1.986747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16904]: 1.986756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16905]: 1.986770600 - core[1].svIdle(17), plen 0: [] -EVENT[16906]: 1.987617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16907]: 1.987629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16908]: 1.987643125 - core[0].svIdle(17), plen 0: [] -EVENT[16909]: 1.987747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16910]: 1.987757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16911]: 1.987770775 - core[1].svIdle(17), plen 0: [] -EVENT[16912]: 1.988617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16913]: 1.988629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16914]: 1.988643125 - core[0].svIdle(17), plen 0: [] -EVENT[16915]: 1.988747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16916]: 1.988756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16917]: 1.988770600 - core[1].svIdle(17), plen 0: [] -EVENT[16918]: 1.989617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16919]: 1.989629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16920]: 1.989643250 - core[0].svIdle(17), plen 0: [] -EVENT[16921]: 1.989747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16922]: 1.989756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16923]: 1.989770600 - core[1].svIdle(17), plen 0: [] -EVENT[16924]: 1.990617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16925]: 1.990632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16926]: 1.990646225 - core[0].svIdle(17), plen 0: [] -EVENT[16927]: 1.990747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16928]: 1.990756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16929]: 1.990770600 - core[1].svIdle(17), plen 0: [] -EVENT[16930]: 1.991617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16931]: 1.991629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16932]: 1.991643125 - core[0].svIdle(17), plen 0: [] -EVENT[16933]: 1.991747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16934]: 1.991757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16935]: 1.991770775 - core[1].svIdle(17), plen 0: [] -EVENT[16936]: 1.992617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16937]: 1.992629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16938]: 1.992643125 - core[0].svIdle(17), plen 0: [] -EVENT[16939]: 1.992747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16940]: 1.992756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16941]: 1.992770600 - core[1].svIdle(17), plen 0: [] -EVENT[16942]: 1.993617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16943]: 1.993629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16944]: 1.993643250 - core[0].svIdle(17), plen 0: [] -EVENT[16945]: 1.993747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16946]: 1.993756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16947]: 1.993770600 - core[1].svIdle(17), plen 0: [] -EVENT[16948]: 1.994617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16949]: 1.994629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16950]: 1.994643175 - core[0].svIdle(17), plen 0: [] -EVENT[16951]: 1.994747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16952]: 1.994756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16953]: 1.994770600 - core[1].svIdle(17), plen 0: [] -EVENT[16954]: 1.995617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16955]: 1.995629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16956]: 1.995643125 - core[0].svIdle(17), plen 0: [] -EVENT[16957]: 1.995747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16958]: 1.995757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16959]: 1.995770775 - core[1].svIdle(17), plen 0: [] -EVENT[16960]: 1.996617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16961]: 1.996629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16962]: 1.996643125 - core[0].svIdle(17), plen 0: [] -EVENT[16963]: 1.996747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16964]: 1.996756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16965]: 1.996770600 - core[1].svIdle(17), plen 0: [] -EVENT[16966]: 1.997617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16967]: 1.997629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16968]: 1.997643250 - core[0].svIdle(17), plen 0: [] -EVENT[16969]: 1.997747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16970]: 1.997756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16971]: 1.997770600 - core[1].svIdle(17), plen 0: [] -EVENT[16972]: 1.998617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16973]: 1.998629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16974]: 1.998643175 - core[0].svIdle(17), plen 0: [] -EVENT[16975]: 1.998747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16976]: 1.998756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16977]: 1.998770600 - core[1].svIdle(17), plen 0: [] -EVENT[16978]: 1.999617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16979]: 1.999629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16980]: 1.999643125 - core[0].svIdle(17), plen 0: [] -EVENT[16981]: 1.999747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16982]: 1.999757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16983]: 1.999770775 - core[1].svIdle(17), plen 0: [] -EVENT[16984]: 2.000617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16985]: 2.000629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16986]: 2.000643125 - core[0].svIdle(17), plen 0: [] -EVENT[16987]: 2.000747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16988]: 2.000756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16989]: 2.000770600 - core[1].svIdle(17), plen 0: [] -EVENT[16990]: 2.001617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16991]: 2.001629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16992]: 2.001643250 - core[0].svIdle(17), plen 0: [] -EVENT[16993]: 2.001747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16994]: 2.001756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[16995]: 2.001770600 - core[1].svIdle(17), plen 0: [] -EVENT[16996]: 2.002617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[16997]: 2.002631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[16998]: 2.002645550 - core[0].svIdle(17), plen 0: [] -EVENT[16999]: 2.002747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17000]: 2.002756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17001]: 2.002770600 - core[1].svIdle(17), plen 0: [] -EVENT[17002]: 2.003617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17003]: 2.003629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17004]: 2.003643125 - core[0].svIdle(17), plen 0: [] -EVENT[17005]: 2.003747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17006]: 2.003757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17007]: 2.003770775 - core[1].svIdle(17), plen 0: [] -EVENT[17008]: 2.004617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17009]: 2.004629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17010]: 2.004643125 - core[0].svIdle(17), plen 0: [] -EVENT[17011]: 2.004747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17012]: 2.004756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17013]: 2.004770600 - core[1].svIdle(17), plen 0: [] -EVENT[17014]: 2.005617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17015]: 2.005629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17016]: 2.005643250 - core[0].svIdle(17), plen 0: [] -EVENT[17017]: 2.005747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17018]: 2.005756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17019]: 2.005770600 - core[1].svIdle(17), plen 0: [] -EVENT[17020]: 2.006617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17021]: 2.006629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17022]: 2.006643175 - core[0].svIdle(17), plen 0: [] -EVENT[17023]: 2.006747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17024]: 2.006756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17025]: 2.006770600 - core[1].svIdle(17), plen 0: [] -EVENT[17026]: 2.007617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17027]: 2.007629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17028]: 2.007643125 - core[0].svIdle(17), plen 0: [] -EVENT[17029]: 2.007747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17030]: 2.007757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17031]: 2.007770775 - core[1].svIdle(17), plen 0: [] -EVENT[17032]: 2.008617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17033]: 2.008629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17034]: 2.008643125 - core[0].svIdle(17), plen 0: [] -EVENT[17035]: 2.008747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17036]: 2.008756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17037]: 2.008770600 - core[1].svIdle(17), plen 0: [] -EVENT[17038]: 2.009617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17039]: 2.009629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17040]: 2.009643250 - core[0].svIdle(17), plen 0: [] -EVENT[17041]: 2.009747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17042]: 2.009756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17043]: 2.009770600 - core[1].svIdle(17), plen 0: [] -EVENT[17044]: 2.010617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17045]: 2.010629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17046]: 2.010643175 - core[0].svIdle(17), plen 0: [] -EVENT[17047]: 2.010747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17048]: 2.010756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17049]: 2.010770600 - core[1].svIdle(17), plen 0: [] -EVENT[17050]: 2.011617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17051]: 2.011629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17052]: 2.011643125 - core[0].svIdle(17), plen 0: [] -EVENT[17053]: 2.011747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17054]: 2.011757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17055]: 2.011770775 - core[1].svIdle(17), plen 0: [] -EVENT[17056]: 2.012617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17057]: 2.012629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17058]: 2.012643125 - core[0].svIdle(17), plen 0: [] -EVENT[17059]: 2.012747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17060]: 2.012756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17061]: 2.012770600 - core[1].svIdle(17), plen 0: [] -EVENT[17062]: 2.013617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17063]: 2.013629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[17064]: 2.013638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17065]: 2.013652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[17066]: 2.013676250 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073448932, size: 136, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.013676250] HEAP: Allocated 136 bytes @ 0x3ffb87e4 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17067]: 2.013692050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17068]: 2.013706025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17069]: 2.013747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17070]: 2.013768350 - core[0].svPrint(26), plen 72: [msg: I (2340) example: Task[0x3ffb7f40]: allocated 136 bytes @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[2.013768350] LOG: I (2340) example: Task[0x3ffb7f40]: allocated 136 bytes @ 0x3ffb87e4 -EVENT[17071]: 2.013777500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17072]: 2.013785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17073]: 2.013796400 - core[1].svIdle(17), plen 0: [] -EVENT[17074]: 2.013807175 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[17075]: 2.013820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17076]: 2.013828725 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[17077]: 2.013836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17078]: 2.013845200 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[17079]: 2.013857825 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[17080]: 2.013866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[17081]: 2.013874525 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[17082]: 2.013883400 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17083]: 2.013892800 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17084]: 2.013902100 - core[0].svIdle(17), plen 0: [] -EVENT[17085]: 2.013916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17086]: 2.013966175 - core[1].svPrint(26), plen 64: [msg: I (2340) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -, lvl: 0, unused: 0] -[2.013966175] LOG: I (2340) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4 -EVENT[17087]: 2.013984650 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073448932, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.013984650] HEAP: Freed bytes @ 0x3ffb87e4 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17088]: 2.014002625 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[17089]: 2.014015325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17090]: 2.014024125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17091]: 2.014039700 - core[1].svIdle(17), plen 0: [] -EVENT[17092]: 2.014617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17093]: 2.014629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[17094]: 2.014638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17095]: 2.014652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[17096]: 2.014677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 272, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.014677000] HEAP: Allocated 272 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17097]: 2.014689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17098]: 2.014703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17099]: 2.014747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17100]: 2.014769475 - core[0].svPrint(26), plen 72: [msg: I (2341) example: Task[0x3ffb82a0]: allocated 272 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.014769475] LOG: I (2341) example: Task[0x3ffb82a0]: allocated 272 bytes @ 0x3ffb4b10 -EVENT[17101]: 2.014780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17102]: 2.014789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17103]: 2.014798950 - core[1].svIdle(17), plen 0: [] -EVENT[17104]: 2.014809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[17105]: 2.014822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17106]: 2.014831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[17107]: 2.014839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17108]: 2.014847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[17109]: 2.014860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[17110]: 2.014868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[17111]: 2.014877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[17112]: 2.014886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17113]: 2.014895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17114]: 2.014904625 - core[0].svIdle(17), plen 0: [] -EVENT[17115]: 2.014919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17116]: 2.014968700 - core[1].svPrint(26), plen 64: [msg: I (2341) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.014968700] LOG: I (2341) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[17117]: 2.014984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.014984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17118]: 2.015005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[17119]: 2.015018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17120]: 2.015026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17121]: 2.015042425 - core[1].svIdle(17), plen 0: [] -EVENT[17122]: 2.015617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17123]: 2.015629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[17124]: 2.015638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17125]: 2.015652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[17126]: 2.015676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 408, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.015676975] HEAP: Allocated 408 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17127]: 2.015689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17128]: 2.015703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17129]: 2.015747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17130]: 2.015769450 - core[0].svPrint(26), plen 72: [msg: I (2342) example: Task[0x3ffb8600]: allocated 408 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.015769450] LOG: I (2342) example: Task[0x3ffb8600]: allocated 408 bytes @ 0x3ffb4b10 -EVENT[17131]: 2.015778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17132]: 2.015786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17133]: 2.015797075 - core[1].svIdle(17), plen 0: [] -EVENT[17134]: 2.015807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[17135]: 2.015820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17136]: 2.015829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[17137]: 2.015837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17138]: 2.015845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[17139]: 2.015858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[17140]: 2.015866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[17141]: 2.015879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[17142]: 2.015887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17143]: 2.015895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17144]: 2.015905825 - core[0].svIdle(17), plen 0: [] -EVENT[17145]: 2.015920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17146]: 2.015970100 - core[1].svPrint(26), plen 64: [msg: I (2342) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.015970100] LOG: I (2342) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[17147]: 2.015985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.015985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17148]: 2.016003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[17149]: 2.016016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17150]: 2.016025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17151]: 2.016040650 - core[1].svIdle(17), plen 0: [] -EVENT[17152]: 2.016617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17153]: 2.016629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17154]: 2.016643175 - core[0].svIdle(17), plen 0: [] -EVENT[17155]: 2.016747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17156]: 2.016756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17157]: 2.016770600 - core[1].svIdle(17), plen 0: [] -EVENT[17158]: 2.017617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17159]: 2.017629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17160]: 2.017643125 - core[0].svIdle(17), plen 0: [] -EVENT[17161]: 2.017747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17162]: 2.017757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17163]: 2.017770775 - core[1].svIdle(17), plen 0: [] -EVENT[17164]: 2.018617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17165]: 2.018629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17166]: 2.018643125 - core[0].svIdle(17), plen 0: [] -EVENT[17167]: 2.018747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17168]: 2.018756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17169]: 2.018770600 - core[1].svIdle(17), plen 0: [] -EVENT[17170]: 2.019617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17171]: 2.019629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17172]: 2.019643250 - core[0].svIdle(17), plen 0: [] -EVENT[17173]: 2.019747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17174]: 2.019756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17175]: 2.019770600 - core[1].svIdle(17), plen 0: [] -EVENT[17176]: 2.020617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17177]: 2.020632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17178]: 2.020646225 - core[0].svIdle(17), plen 0: [] -EVENT[17179]: 2.020747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17180]: 2.020756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17181]: 2.020770600 - core[1].svIdle(17), plen 0: [] -EVENT[17182]: 2.021617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17183]: 2.021629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17184]: 2.021643125 - core[0].svIdle(17), plen 0: [] -EVENT[17185]: 2.021747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17186]: 2.021757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17187]: 2.021770775 - core[1].svIdle(17), plen 0: [] -EVENT[17188]: 2.022617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17189]: 2.022629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17190]: 2.022643125 - core[0].svIdle(17), plen 0: [] -EVENT[17191]: 2.022747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17192]: 2.022756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17193]: 2.022770600 - core[1].svIdle(17), plen 0: [] -EVENT[17194]: 2.023617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17195]: 2.023629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17196]: 2.023643250 - core[0].svIdle(17), plen 0: [] -EVENT[17197]: 2.023747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17198]: 2.023756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17199]: 2.023770600 - core[1].svIdle(17), plen 0: [] -EVENT[17200]: 2.024617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17201]: 2.024629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17202]: 2.024643175 - core[0].svIdle(17), plen 0: [] -EVENT[17203]: 2.024747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17204]: 2.024756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17205]: 2.024770600 - core[1].svIdle(17), plen 0: [] -EVENT[17206]: 2.025617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17207]: 2.025629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17208]: 2.025643125 - core[0].svIdle(17), plen 0: [] -EVENT[17209]: 2.025747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17210]: 2.025757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17211]: 2.025770775 - core[1].svIdle(17), plen 0: [] -EVENT[17212]: 2.026617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17213]: 2.026629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17214]: 2.026643125 - core[0].svIdle(17), plen 0: [] -EVENT[17215]: 2.026747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17216]: 2.026756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17217]: 2.026770600 - core[1].svIdle(17), plen 0: [] -EVENT[17218]: 2.027617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17219]: 2.027629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17220]: 2.027643250 - core[0].svIdle(17), plen 0: [] -EVENT[17221]: 2.027747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17222]: 2.027756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17223]: 2.027770600 - core[1].svIdle(17), plen 0: [] -EVENT[17224]: 2.028617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17225]: 2.028629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17226]: 2.028643175 - core[0].svIdle(17), plen 0: [] -EVENT[17227]: 2.028747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17228]: 2.028756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17229]: 2.028770600 - core[1].svIdle(17), plen 0: [] -EVENT[17230]: 2.029617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17231]: 2.029629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17232]: 2.029643125 - core[0].svIdle(17), plen 0: [] -EVENT[17233]: 2.029747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17234]: 2.029757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17235]: 2.029770775 - core[1].svIdle(17), plen 0: [] -EVENT[17236]: 2.030617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17237]: 2.030629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17238]: 2.030643125 - core[0].svIdle(17), plen 0: [] -EVENT[17239]: 2.030747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17240]: 2.030756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17241]: 2.030770600 - core[1].svIdle(17), plen 0: [] -EVENT[17242]: 2.031617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17243]: 2.031629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17244]: 2.031643250 - core[0].svIdle(17), plen 0: [] -EVENT[17245]: 2.031747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17246]: 2.031756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17247]: 2.031770600 - core[1].svIdle(17), plen 0: [] -EVENT[17248]: 2.032617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17249]: 2.032631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17250]: 2.032645550 - core[0].svIdle(17), plen 0: [] -EVENT[17251]: 2.032747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17252]: 2.032756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17253]: 2.032770600 - core[1].svIdle(17), plen 0: [] -EVENT[17254]: 2.033617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17255]: 2.033629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17256]: 2.033643125 - core[0].svIdle(17), plen 0: [] -EVENT[17257]: 2.033747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17258]: 2.033757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17259]: 2.033770775 - core[1].svIdle(17), plen 0: [] -EVENT[17260]: 2.034617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17261]: 2.034629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17262]: 2.034643125 - core[0].svIdle(17), plen 0: [] -EVENT[17263]: 2.034747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17264]: 2.034756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17265]: 2.034770600 - core[1].svIdle(17), plen 0: [] -EVENT[17266]: 2.035617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17267]: 2.035629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17268]: 2.035643250 - core[0].svIdle(17), plen 0: [] -EVENT[17269]: 2.035747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17270]: 2.035756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17271]: 2.035770600 - core[1].svIdle(17), plen 0: [] -EVENT[17272]: 2.036617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17273]: 2.036629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17274]: 2.036643175 - core[0].svIdle(17), plen 0: [] -EVENT[17275]: 2.036747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17276]: 2.036756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17277]: 2.036770600 - core[1].svIdle(17), plen 0: [] -EVENT[17278]: 2.037617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17279]: 2.037629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17280]: 2.037643125 - core[0].svIdle(17), plen 0: [] -EVENT[17281]: 2.037747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17282]: 2.037757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17283]: 2.037770775 - core[1].svIdle(17), plen 0: [] -EVENT[17284]: 2.038617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17285]: 2.038629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17286]: 2.038643125 - core[0].svIdle(17), plen 0: [] -EVENT[17287]: 2.038747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17288]: 2.038756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17289]: 2.038770600 - core[1].svIdle(17), plen 0: [] -EVENT[17290]: 2.039617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17291]: 2.039629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17292]: 2.039643250 - core[0].svIdle(17), plen 0: [] -EVENT[17293]: 2.039747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17294]: 2.039756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17295]: 2.039770600 - core[1].svIdle(17), plen 0: [] -EVENT[17296]: 2.040617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17297]: 2.040629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17298]: 2.040643175 - core[0].svIdle(17), plen 0: [] -EVENT[17299]: 2.040747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17300]: 2.040756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17301]: 2.040770600 - core[1].svIdle(17), plen 0: [] -EVENT[17302]: 2.041617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17303]: 2.041629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17304]: 2.041643125 - core[0].svIdle(17), plen 0: [] -EVENT[17305]: 2.041747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17306]: 2.041757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17307]: 2.041770775 - core[1].svIdle(17), plen 0: [] -EVENT[17308]: 2.042617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17309]: 2.042629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17310]: 2.042643125 - core[0].svIdle(17), plen 0: [] -EVENT[17311]: 2.042747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17312]: 2.042756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17313]: 2.042770600 - core[1].svIdle(17), plen 0: [] -EVENT[17314]: 2.043617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17315]: 2.043629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[17316]: 2.043638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17317]: 2.043652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[17318]: 2.043677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 138, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.043677000] HEAP: Allocated 138 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17319]: 2.043692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17320]: 2.043706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17321]: 2.043747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17322]: 2.043768950 - core[0].svPrint(26), plen 72: [msg: I (2370) example: Task[0x3ffb7f40]: allocated 138 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.043768950] LOG: I (2370) example: Task[0x3ffb7f40]: allocated 138 bytes @ 0x3ffb4b10 -EVENT[17323]: 2.043777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17324]: 2.043785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17325]: 2.043795925 - core[1].svIdle(17), plen 0: [] -EVENT[17326]: 2.043806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[17327]: 2.043819725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17328]: 2.043828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[17329]: 2.043836200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17330]: 2.043844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[17331]: 2.043857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[17332]: 2.043865750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[17333]: 2.043874050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[17334]: 2.043882925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17335]: 2.043892325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17336]: 2.043901625 - core[0].svIdle(17), plen 0: [] -EVENT[17337]: 2.043916450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17338]: 2.043965700 - core[1].svPrint(26), plen 64: [msg: I (2370) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.043965700] LOG: I (2370) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[17339]: 2.043984175 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.043984175] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17340]: 2.044002175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[17341]: 2.044014850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17342]: 2.044023650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17343]: 2.044039225 - core[1].svIdle(17), plen 0: [] -EVENT[17344]: 2.044617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17345]: 2.044629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[17346]: 2.044638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17347]: 2.044652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[17348]: 2.044677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 276, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.044677000] HEAP: Allocated 276 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17349]: 2.044689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17350]: 2.044703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17351]: 2.044747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17352]: 2.044769475 - core[0].svPrint(26), plen 72: [msg: I (2371) example: Task[0x3ffb82a0]: allocated 276 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.044769475] LOG: I (2371) example: Task[0x3ffb82a0]: allocated 276 bytes @ 0x3ffb4b10 -EVENT[17353]: 2.044780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17354]: 2.044789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17355]: 2.044798950 - core[1].svIdle(17), plen 0: [] -EVENT[17356]: 2.044809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[17357]: 2.044822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17358]: 2.044831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[17359]: 2.044839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17360]: 2.044847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[17361]: 2.044860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[17362]: 2.044868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[17363]: 2.044877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[17364]: 2.044886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17365]: 2.044895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17366]: 2.044904625 - core[0].svIdle(17), plen 0: [] -EVENT[17367]: 2.044919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17368]: 2.044968700 - core[1].svPrint(26), plen 64: [msg: I (2371) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.044968700] LOG: I (2371) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[17369]: 2.044984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.044984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17370]: 2.045005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[17371]: 2.045018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17372]: 2.045026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17373]: 2.045042425 - core[1].svIdle(17), plen 0: [] -EVENT[17374]: 2.045617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17375]: 2.045629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[17376]: 2.045638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17377]: 2.045652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[17378]: 2.045676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 414, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.045676975] HEAP: Allocated 414 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17379]: 2.045689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17380]: 2.045703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17381]: 2.045747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17382]: 2.045769450 - core[0].svPrint(26), plen 72: [msg: I (2372) example: Task[0x3ffb8600]: allocated 414 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.045769450] LOG: I (2372) example: Task[0x3ffb8600]: allocated 414 bytes @ 0x3ffb4b10 -EVENT[17383]: 2.045778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17384]: 2.045786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17385]: 2.045797075 - core[1].svIdle(17), plen 0: [] -EVENT[17386]: 2.045807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[17387]: 2.045820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17388]: 2.045829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[17389]: 2.045837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17390]: 2.045845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[17391]: 2.045858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[17392]: 2.045866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[17393]: 2.045879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[17394]: 2.045887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17395]: 2.045895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17396]: 2.045905825 - core[0].svIdle(17), plen 0: [] -EVENT[17397]: 2.045920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17398]: 2.045970100 - core[1].svPrint(26), plen 64: [msg: I (2372) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.045970100] LOG: I (2372) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[17399]: 2.045985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.045985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17400]: 2.046003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[17401]: 2.046016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17402]: 2.046025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17403]: 2.046040650 - core[1].svIdle(17), plen 0: [] -EVENT[17404]: 2.046617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17405]: 2.046629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17406]: 2.046643175 - core[0].svIdle(17), plen 0: [] -EVENT[17407]: 2.046747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17408]: 2.046756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17409]: 2.046770600 - core[1].svIdle(17), plen 0: [] -EVENT[17410]: 2.047617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17411]: 2.047629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17412]: 2.047643125 - core[0].svIdle(17), plen 0: [] -EVENT[17413]: 2.047747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17414]: 2.047757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17415]: 2.047770775 - core[1].svIdle(17), plen 0: [] -EVENT[17416]: 2.048617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17417]: 2.048629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17418]: 2.048643125 - core[0].svIdle(17), plen 0: [] -EVENT[17419]: 2.048747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17420]: 2.048756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17421]: 2.048770600 - core[1].svIdle(17), plen 0: [] -EVENT[17422]: 2.049617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17423]: 2.049629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17424]: 2.049643250 - core[0].svIdle(17), plen 0: [] -EVENT[17425]: 2.049747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17426]: 2.049756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17427]: 2.049770600 - core[1].svIdle(17), plen 0: [] -EVENT[17428]: 2.050617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17429]: 2.050632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17430]: 2.050646225 - core[0].svIdle(17), plen 0: [] -EVENT[17431]: 2.050747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17432]: 2.050756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17433]: 2.050770600 - core[1].svIdle(17), plen 0: [] -EVENT[17434]: 2.051617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17435]: 2.051629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17436]: 2.051643125 - core[0].svIdle(17), plen 0: [] -EVENT[17437]: 2.051747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17438]: 2.051757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17439]: 2.051770775 - core[1].svIdle(17), plen 0: [] -EVENT[17440]: 2.052617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17441]: 2.052629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17442]: 2.052643125 - core[0].svIdle(17), plen 0: [] -EVENT[17443]: 2.052747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17444]: 2.052756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17445]: 2.052770600 - core[1].svIdle(17), plen 0: [] -EVENT[17446]: 2.053617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17447]: 2.053629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17448]: 2.053643250 - core[0].svIdle(17), plen 0: [] -EVENT[17449]: 2.053747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17450]: 2.053756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17451]: 2.053770600 - core[1].svIdle(17), plen 0: [] -EVENT[17452]: 2.054617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17453]: 2.054629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17454]: 2.054643175 - core[0].svIdle(17), plen 0: [] -EVENT[17455]: 2.054747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17456]: 2.054756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17457]: 2.054770600 - core[1].svIdle(17), plen 0: [] -EVENT[17458]: 2.055617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17459]: 2.055629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17460]: 2.055643125 - core[0].svIdle(17), plen 0: [] -EVENT[17461]: 2.055747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17462]: 2.055757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17463]: 2.055770775 - core[1].svIdle(17), plen 0: [] -EVENT[17464]: 2.056617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17465]: 2.056629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17466]: 2.056643125 - core[0].svIdle(17), plen 0: [] -EVENT[17467]: 2.056747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17468]: 2.056756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17469]: 2.056770600 - core[1].svIdle(17), plen 0: [] -EVENT[17470]: 2.057617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17471]: 2.057629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17472]: 2.057643250 - core[0].svIdle(17), plen 0: [] -EVENT[17473]: 2.057747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17474]: 2.057756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17475]: 2.057770600 - core[1].svIdle(17), plen 0: [] -EVENT[17476]: 2.058617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17477]: 2.058629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17478]: 2.058643175 - core[0].svIdle(17), plen 0: [] -EVENT[17479]: 2.058747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17480]: 2.058756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17481]: 2.058770600 - core[1].svIdle(17), plen 0: [] -EVENT[17482]: 2.059617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17483]: 2.059629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17484]: 2.059643125 - core[0].svIdle(17), plen 0: [] -EVENT[17485]: 2.059747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17486]: 2.059757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17487]: 2.059770775 - core[1].svIdle(17), plen 0: [] -EVENT[17488]: 2.060617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17489]: 2.060629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17490]: 2.060643125 - core[0].svIdle(17), plen 0: [] -EVENT[17491]: 2.060747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17492]: 2.060756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17493]: 2.060770600 - core[1].svIdle(17), plen 0: [] -EVENT[17494]: 2.061617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17495]: 2.061629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17496]: 2.061643250 - core[0].svIdle(17), plen 0: [] -EVENT[17497]: 2.061747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17498]: 2.061756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17499]: 2.061770600 - core[1].svIdle(17), plen 0: [] -EVENT[17500]: 2.062617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17501]: 2.062631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17502]: 2.062645550 - core[0].svIdle(17), plen 0: [] -EVENT[17503]: 2.062747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17504]: 2.062756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17505]: 2.062770600 - core[1].svIdle(17), plen 0: [] -EVENT[17506]: 2.063617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17507]: 2.063629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17508]: 2.063643125 - core[0].svIdle(17), plen 0: [] -EVENT[17509]: 2.063747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17510]: 2.063757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17511]: 2.063770775 - core[1].svIdle(17), plen 0: [] -EVENT[17512]: 2.064617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17513]: 2.064629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17514]: 2.064643125 - core[0].svIdle(17), plen 0: [] -EVENT[17515]: 2.064747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17516]: 2.064756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17517]: 2.064770600 - core[1].svIdle(17), plen 0: [] -EVENT[17518]: 2.065617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17519]: 2.065629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17520]: 2.065643250 - core[0].svIdle(17), plen 0: [] -EVENT[17521]: 2.065747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17522]: 2.065756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17523]: 2.065770600 - core[1].svIdle(17), plen 0: [] -EVENT[17524]: 2.066617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17525]: 2.066629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17526]: 2.066643175 - core[0].svIdle(17), plen 0: [] -EVENT[17527]: 2.066747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17528]: 2.066756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17529]: 2.066770600 - core[1].svIdle(17), plen 0: [] -EVENT[17530]: 2.067617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17531]: 2.067629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17532]: 2.067643125 - core[0].svIdle(17), plen 0: [] -EVENT[17533]: 2.067747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17534]: 2.067757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17535]: 2.067770775 - core[1].svIdle(17), plen 0: [] -EVENT[17536]: 2.068617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17537]: 2.068629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17538]: 2.068643125 - core[0].svIdle(17), plen 0: [] -EVENT[17539]: 2.068747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17540]: 2.068756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17541]: 2.068770600 - core[1].svIdle(17), plen 0: [] -EVENT[17542]: 2.069617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17543]: 2.069629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17544]: 2.069643250 - core[0].svIdle(17), plen 0: [] -EVENT[17545]: 2.069747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17546]: 2.069756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17547]: 2.069770600 - core[1].svIdle(17), plen 0: [] -EVENT[17548]: 2.070617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17549]: 2.070629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17550]: 2.070643175 - core[0].svIdle(17), plen 0: [] -EVENT[17551]: 2.070747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17552]: 2.070756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17553]: 2.070770600 - core[1].svIdle(17), plen 0: [] -EVENT[17554]: 2.071617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17555]: 2.071629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17556]: 2.071643125 - core[0].svIdle(17), plen 0: [] -EVENT[17557]: 2.071747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17558]: 2.071757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17559]: 2.071770775 - core[1].svIdle(17), plen 0: [] -EVENT[17560]: 2.072617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17561]: 2.072629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17562]: 2.072643125 - core[0].svIdle(17), plen 0: [] -EVENT[17563]: 2.072747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17564]: 2.072756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17565]: 2.072770600 - core[1].svIdle(17), plen 0: [] -EVENT[17566]: 2.073617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17567]: 2.073629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[17568]: 2.073638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17569]: 2.073652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[17570]: 2.073677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 140, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.073677000] HEAP: Allocated 140 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17571]: 2.073692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17572]: 2.073706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17573]: 2.073747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17574]: 2.073768950 - core[0].svPrint(26), plen 72: [msg: I (2400) example: Task[0x3ffb7f40]: allocated 140 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.073768950] LOG: I (2400) example: Task[0x3ffb7f40]: allocated 140 bytes @ 0x3ffb4b10 -EVENT[17575]: 2.073777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17576]: 2.073785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17577]: 2.073795900 - core[1].svIdle(17), plen 0: [] -EVENT[17578]: 2.073806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[17579]: 2.073819700 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17580]: 2.073828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[17581]: 2.073836175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17582]: 2.073844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[17583]: 2.073857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[17584]: 2.073865725 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[17585]: 2.073874050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[17586]: 2.073882925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17587]: 2.073892325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17588]: 2.073901600 - core[0].svIdle(17), plen 0: [] -EVENT[17589]: 2.073916425 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17590]: 2.073965675 - core[1].svPrint(26), plen 64: [msg: I (2400) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.073965675] LOG: I (2400) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[17591]: 2.073984150 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.073984150] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17592]: 2.074002150 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[17593]: 2.074014850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17594]: 2.074023650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17595]: 2.074039225 - core[1].svIdle(17), plen 0: [] -EVENT[17596]: 2.074617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17597]: 2.074629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[17598]: 2.074638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17599]: 2.074652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[17600]: 2.074677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 280, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.074677000] HEAP: Allocated 280 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17601]: 2.074689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17602]: 2.074703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17603]: 2.074747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17604]: 2.074769475 - core[0].svPrint(26), plen 72: [msg: I (2401) example: Task[0x3ffb82a0]: allocated 280 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.074769475] LOG: I (2401) example: Task[0x3ffb82a0]: allocated 280 bytes @ 0x3ffb4b10 -EVENT[17605]: 2.074780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17606]: 2.074789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17607]: 2.074798950 - core[1].svIdle(17), plen 0: [] -EVENT[17608]: 2.074809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[17609]: 2.074822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17610]: 2.074831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[17611]: 2.074839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17612]: 2.074847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[17613]: 2.074860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[17614]: 2.074868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[17615]: 2.074877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[17616]: 2.074886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17617]: 2.074895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17618]: 2.074904625 - core[0].svIdle(17), plen 0: [] -EVENT[17619]: 2.074919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17620]: 2.074968700 - core[1].svPrint(26), plen 64: [msg: I (2401) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.074968700] LOG: I (2401) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[17621]: 2.074984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.074984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17622]: 2.075005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[17623]: 2.075018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17624]: 2.075026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17625]: 2.075042425 - core[1].svIdle(17), plen 0: [] -EVENT[17626]: 2.075617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17627]: 2.075629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[17628]: 2.075638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17629]: 2.075652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[17630]: 2.075676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 420, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.075676975] HEAP: Allocated 420 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17631]: 2.075689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17632]: 2.075703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17633]: 2.075747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17634]: 2.075769450 - core[0].svPrint(26), plen 72: [msg: I (2402) example: Task[0x3ffb8600]: allocated 420 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.075769450] LOG: I (2402) example: Task[0x3ffb8600]: allocated 420 bytes @ 0x3ffb4b10 -EVENT[17635]: 2.075778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17636]: 2.075786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17637]: 2.075797075 - core[1].svIdle(17), plen 0: [] -EVENT[17638]: 2.075807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[17639]: 2.075820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17640]: 2.075829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[17641]: 2.075837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17642]: 2.075845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[17643]: 2.075858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[17644]: 2.075866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[17645]: 2.075879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[17646]: 2.075887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17647]: 2.075895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17648]: 2.075905825 - core[0].svIdle(17), plen 0: [] -EVENT[17649]: 2.075920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17650]: 2.075970100 - core[1].svPrint(26), plen 64: [msg: I (2402) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.075970100] LOG: I (2402) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[17651]: 2.075985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.075985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17652]: 2.076003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[17653]: 2.076016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17654]: 2.076025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17655]: 2.076040650 - core[1].svIdle(17), plen 0: [] -EVENT[17656]: 2.076617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17657]: 2.076629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17658]: 2.076643175 - core[0].svIdle(17), plen 0: [] -EVENT[17659]: 2.076747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17660]: 2.076756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17661]: 2.076770600 - core[1].svIdle(17), plen 0: [] -EVENT[17662]: 2.077617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17663]: 2.077629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17664]: 2.077643125 - core[0].svIdle(17), plen 0: [] -EVENT[17665]: 2.077747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17666]: 2.077757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17667]: 2.077770775 - core[1].svIdle(17), plen 0: [] -EVENT[17668]: 2.078617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17669]: 2.078629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17670]: 2.078643125 - core[0].svIdle(17), plen 0: [] -EVENT[17671]: 2.078747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17672]: 2.078756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17673]: 2.078770600 - core[1].svIdle(17), plen 0: [] -EVENT[17674]: 2.079617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17675]: 2.079629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17676]: 2.079643250 - core[0].svIdle(17), plen 0: [] -EVENT[17677]: 2.079747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17678]: 2.079756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17679]: 2.079770600 - core[1].svIdle(17), plen 0: [] -EVENT[17680]: 2.080617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17681]: 2.080632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17682]: 2.080646225 - core[0].svIdle(17), plen 0: [] -EVENT[17683]: 2.080747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17684]: 2.080756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17685]: 2.080770600 - core[1].svIdle(17), plen 0: [] -EVENT[17686]: 2.081617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17687]: 2.081629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17688]: 2.081643125 - core[0].svIdle(17), plen 0: [] -EVENT[17689]: 2.081747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17690]: 2.081757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17691]: 2.081770775 - core[1].svIdle(17), plen 0: [] -EVENT[17692]: 2.082617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17693]: 2.082629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17694]: 2.082643125 - core[0].svIdle(17), plen 0: [] -EVENT[17695]: 2.082747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17696]: 2.082756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17697]: 2.082770600 - core[1].svIdle(17), plen 0: [] -EVENT[17698]: 2.083617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17699]: 2.083629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17700]: 2.083643250 - core[0].svIdle(17), plen 0: [] -EVENT[17701]: 2.083747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17702]: 2.083756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17703]: 2.083770600 - core[1].svIdle(17), plen 0: [] -EVENT[17704]: 2.084617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17705]: 2.084629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17706]: 2.084643175 - core[0].svIdle(17), plen 0: [] -EVENT[17707]: 2.084747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17708]: 2.084756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17709]: 2.084770600 - core[1].svIdle(17), plen 0: [] -EVENT[17710]: 2.085617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17711]: 2.085629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17712]: 2.085643125 - core[0].svIdle(17), plen 0: [] -EVENT[17713]: 2.085747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17714]: 2.085757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17715]: 2.085770775 - core[1].svIdle(17), plen 0: [] -EVENT[17716]: 2.086617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17717]: 2.086629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17718]: 2.086643125 - core[0].svIdle(17), plen 0: [] -EVENT[17719]: 2.086747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17720]: 2.086756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17721]: 2.086770600 - core[1].svIdle(17), plen 0: [] -EVENT[17722]: 2.087617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17723]: 2.087629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17724]: 2.087643250 - core[0].svIdle(17), plen 0: [] -EVENT[17725]: 2.087747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17726]: 2.087756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17727]: 2.087770600 - core[1].svIdle(17), plen 0: [] -EVENT[17728]: 2.088617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17729]: 2.088629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17730]: 2.088643175 - core[0].svIdle(17), plen 0: [] -EVENT[17731]: 2.088747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17732]: 2.088756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17733]: 2.088770600 - core[1].svIdle(17), plen 0: [] -EVENT[17734]: 2.089617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17735]: 2.089629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17736]: 2.089643125 - core[0].svIdle(17), plen 0: [] -EVENT[17737]: 2.089747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17738]: 2.089757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17739]: 2.089770775 - core[1].svIdle(17), plen 0: [] -EVENT[17740]: 2.090617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17741]: 2.090629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17742]: 2.090643125 - core[0].svIdle(17), plen 0: [] -EVENT[17743]: 2.090747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17744]: 2.090756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17745]: 2.090770600 - core[1].svIdle(17), plen 0: [] -EVENT[17746]: 2.091617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17747]: 2.091629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17748]: 2.091643250 - core[0].svIdle(17), plen 0: [] -EVENT[17749]: 2.091747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17750]: 2.091756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17751]: 2.091770600 - core[1].svIdle(17), plen 0: [] -EVENT[17752]: 2.092617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17753]: 2.092631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17754]: 2.092645550 - core[0].svIdle(17), plen 0: [] -EVENT[17755]: 2.092747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17756]: 2.092756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17757]: 2.092770600 - core[1].svIdle(17), plen 0: [] -EVENT[17758]: 2.093617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17759]: 2.093629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17760]: 2.093643125 - core[0].svIdle(17), plen 0: [] -EVENT[17761]: 2.093747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17762]: 2.093757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17763]: 2.093770775 - core[1].svIdle(17), plen 0: [] -EVENT[17764]: 2.094617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17765]: 2.094629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17766]: 2.094643125 - core[0].svIdle(17), plen 0: [] -EVENT[17767]: 2.094747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17768]: 2.094756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17769]: 2.094770600 - core[1].svIdle(17), plen 0: [] -EVENT[17770]: 2.095617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17771]: 2.095629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17772]: 2.095643250 - core[0].svIdle(17), plen 0: [] -EVENT[17773]: 2.095747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17774]: 2.095756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17775]: 2.095770600 - core[1].svIdle(17), plen 0: [] -EVENT[17776]: 2.096617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17777]: 2.096629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17778]: 2.096643175 - core[0].svIdle(17), plen 0: [] -EVENT[17779]: 2.096747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17780]: 2.096756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17781]: 2.096770600 - core[1].svIdle(17), plen 0: [] -EVENT[17782]: 2.097617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17783]: 2.097629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17784]: 2.097643125 - core[0].svIdle(17), plen 0: [] -EVENT[17785]: 2.097747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17786]: 2.097757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17787]: 2.097770775 - core[1].svIdle(17), plen 0: [] -EVENT[17788]: 2.098617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17789]: 2.098629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17790]: 2.098643125 - core[0].svIdle(17), plen 0: [] -EVENT[17791]: 2.098747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17792]: 2.098756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17793]: 2.098770600 - core[1].svIdle(17), plen 0: [] -EVENT[17794]: 2.099617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17795]: 2.099629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17796]: 2.099643250 - core[0].svIdle(17), plen 0: [] -EVENT[17797]: 2.099747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17798]: 2.099756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17799]: 2.099770600 - core[1].svIdle(17), plen 0: [] -EVENT[17800]: 2.100617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17801]: 2.100629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17802]: 2.100643175 - core[0].svIdle(17), plen 0: [] -EVENT[17803]: 2.100747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17804]: 2.100756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17805]: 2.100770600 - core[1].svIdle(17), plen 0: [] -EVENT[17806]: 2.101617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17807]: 2.101629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17808]: 2.101643125 - core[0].svIdle(17), plen 0: [] -EVENT[17809]: 2.101747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17810]: 2.101757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17811]: 2.101770775 - core[1].svIdle(17), plen 0: [] -EVENT[17812]: 2.102617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17813]: 2.102629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17814]: 2.102643125 - core[0].svIdle(17), plen 0: [] -EVENT[17815]: 2.102747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17816]: 2.102756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17817]: 2.102770600 - core[1].svIdle(17), plen 0: [] -EVENT[17818]: 2.103617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17819]: 2.103629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[17820]: 2.103638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17821]: 2.103652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[17822]: 2.103677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 142, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.103677000] HEAP: Allocated 142 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17823]: 2.103692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17824]: 2.103706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17825]: 2.103747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17826]: 2.103768950 - core[0].svPrint(26), plen 72: [msg: I (2430) example: Task[0x3ffb7f40]: allocated 142 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.103768950] LOG: I (2430) example: Task[0x3ffb7f40]: allocated 142 bytes @ 0x3ffb4b10 -EVENT[17827]: 2.103777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17828]: 2.103785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17829]: 2.103795925 - core[1].svIdle(17), plen 0: [] -EVENT[17830]: 2.103806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[17831]: 2.103819725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17832]: 2.103828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[17833]: 2.103836200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17834]: 2.103844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[17835]: 2.103857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[17836]: 2.103865750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[17837]: 2.103874000 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[17838]: 2.103882875 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17839]: 2.103892250 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17840]: 2.103901525 - core[0].svIdle(17), plen 0: [] -EVENT[17841]: 2.103916350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17842]: 2.103965600 - core[1].svPrint(26), plen 64: [msg: I (2430) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.103965600] LOG: I (2430) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[17843]: 2.103984075 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.103984075] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17844]: 2.104002075 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[17845]: 2.104014775 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17846]: 2.104023575 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17847]: 2.104039150 - core[1].svIdle(17), plen 0: [] -EVENT[17848]: 2.104617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17849]: 2.104629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[17850]: 2.104638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17851]: 2.104652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[17852]: 2.104677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 284, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.104677000] HEAP: Allocated 284 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17853]: 2.104689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17854]: 2.104703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17855]: 2.104747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17856]: 2.104769475 - core[0].svPrint(26), plen 72: [msg: I (2431) example: Task[0x3ffb82a0]: allocated 284 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.104769475] LOG: I (2431) example: Task[0x3ffb82a0]: allocated 284 bytes @ 0x3ffb4b10 -EVENT[17857]: 2.104780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17858]: 2.104789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17859]: 2.104798950 - core[1].svIdle(17), plen 0: [] -EVENT[17860]: 2.104809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[17861]: 2.104822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17862]: 2.104831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[17863]: 2.104839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17864]: 2.104847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[17865]: 2.104860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[17866]: 2.104868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[17867]: 2.104877100 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[17868]: 2.104885975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17869]: 2.104895350 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17870]: 2.104904525 - core[0].svIdle(17), plen 0: [] -EVENT[17871]: 2.104919350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17872]: 2.104968600 - core[1].svPrint(26), plen 64: [msg: I (2431) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.104968600] LOG: I (2431) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[17873]: 2.104984200 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.104984200] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17874]: 2.105005275 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[17875]: 2.105017950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17876]: 2.105026750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17877]: 2.105042325 - core[1].svIdle(17), plen 0: [] -EVENT[17878]: 2.105617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17879]: 2.105629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[17880]: 2.105638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17881]: 2.105652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[17882]: 2.105676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 426, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.105676975] HEAP: Allocated 426 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17883]: 2.105689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17884]: 2.105703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17885]: 2.105747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17886]: 2.105769450 - core[0].svPrint(26), plen 72: [msg: I (2432) example: Task[0x3ffb8600]: allocated 426 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.105769450] LOG: I (2432) example: Task[0x3ffb8600]: allocated 426 bytes @ 0x3ffb4b10 -EVENT[17887]: 2.105778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17888]: 2.105786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17889]: 2.105797075 - core[1].svIdle(17), plen 0: [] -EVENT[17890]: 2.105807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[17891]: 2.105820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17892]: 2.105829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[17893]: 2.105837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17894]: 2.105845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[17895]: 2.105858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[17896]: 2.105866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[17897]: 2.105879175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[17898]: 2.105887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17899]: 2.105895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[17900]: 2.105905775 - core[0].svIdle(17), plen 0: [] -EVENT[17901]: 2.105920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[17902]: 2.105970075 - core[1].svPrint(26), plen 64: [msg: I (2432) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.105970075] LOG: I (2432) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[17903]: 2.105985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.105985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[17904]: 2.106003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[17905]: 2.106016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[17906]: 2.106025150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17907]: 2.106040600 - core[1].svIdle(17), plen 0: [] -EVENT[17908]: 2.106617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17909]: 2.106629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17910]: 2.106643175 - core[0].svIdle(17), plen 0: [] -EVENT[17911]: 2.106747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17912]: 2.106756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17913]: 2.106770600 - core[1].svIdle(17), plen 0: [] -EVENT[17914]: 2.107617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17915]: 2.107629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17916]: 2.107643125 - core[0].svIdle(17), plen 0: [] -EVENT[17917]: 2.107747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17918]: 2.107757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17919]: 2.107770775 - core[1].svIdle(17), plen 0: [] -EVENT[17920]: 2.108617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17921]: 2.108629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17922]: 2.108643125 - core[0].svIdle(17), plen 0: [] -EVENT[17923]: 2.108747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17924]: 2.108756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17925]: 2.108770600 - core[1].svIdle(17), plen 0: [] -EVENT[17926]: 2.109617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17927]: 2.109629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17928]: 2.109643250 - core[0].svIdle(17), plen 0: [] -EVENT[17929]: 2.109747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17930]: 2.109756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17931]: 2.109770600 - core[1].svIdle(17), plen 0: [] -EVENT[17932]: 2.110617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17933]: 2.110632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17934]: 2.110646225 - core[0].svIdle(17), plen 0: [] -EVENT[17935]: 2.110747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17936]: 2.110756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17937]: 2.110770600 - core[1].svIdle(17), plen 0: [] -EVENT[17938]: 2.111617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17939]: 2.111629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17940]: 2.111643125 - core[0].svIdle(17), plen 0: [] -EVENT[17941]: 2.111747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17942]: 2.111757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17943]: 2.111770775 - core[1].svIdle(17), plen 0: [] -EVENT[17944]: 2.112617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17945]: 2.112629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17946]: 2.112643125 - core[0].svIdle(17), plen 0: [] -EVENT[17947]: 2.112747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17948]: 2.112756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17949]: 2.112770600 - core[1].svIdle(17), plen 0: [] -EVENT[17950]: 2.113617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17951]: 2.113629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17952]: 2.113643250 - core[0].svIdle(17), plen 0: [] -EVENT[17953]: 2.113747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17954]: 2.113756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17955]: 2.113770600 - core[1].svIdle(17), plen 0: [] -EVENT[17956]: 2.114617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17957]: 2.114629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17958]: 2.114643175 - core[0].svIdle(17), plen 0: [] -EVENT[17959]: 2.114747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17960]: 2.114756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17961]: 2.114770600 - core[1].svIdle(17), plen 0: [] -EVENT[17962]: 2.115617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17963]: 2.115629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17964]: 2.115643125 - core[0].svIdle(17), plen 0: [] -EVENT[17965]: 2.115747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17966]: 2.115757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17967]: 2.115770775 - core[1].svIdle(17), plen 0: [] -EVENT[17968]: 2.116617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17969]: 2.116629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17970]: 2.116643125 - core[0].svIdle(17), plen 0: [] -EVENT[17971]: 2.116747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17972]: 2.116756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17973]: 2.116770600 - core[1].svIdle(17), plen 0: [] -EVENT[17974]: 2.117617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17975]: 2.117629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17976]: 2.117643250 - core[0].svIdle(17), plen 0: [] -EVENT[17977]: 2.117747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17978]: 2.117756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17979]: 2.117770600 - core[1].svIdle(17), plen 0: [] -EVENT[17980]: 2.118617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17981]: 2.118629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17982]: 2.118643175 - core[0].svIdle(17), plen 0: [] -EVENT[17983]: 2.118747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17984]: 2.118756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17985]: 2.118770600 - core[1].svIdle(17), plen 0: [] -EVENT[17986]: 2.119617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17987]: 2.119629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17988]: 2.119643125 - core[0].svIdle(17), plen 0: [] -EVENT[17989]: 2.119747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17990]: 2.119757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17991]: 2.119770775 - core[1].svIdle(17), plen 0: [] -EVENT[17992]: 2.120617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17993]: 2.120629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[17994]: 2.120643125 - core[0].svIdle(17), plen 0: [] -EVENT[17995]: 2.120747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17996]: 2.120756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[17997]: 2.120770600 - core[1].svIdle(17), plen 0: [] -EVENT[17998]: 2.121617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[17999]: 2.121629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18000]: 2.121643250 - core[0].svIdle(17), plen 0: [] -EVENT[18001]: 2.121747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18002]: 2.121756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18003]: 2.121770600 - core[1].svIdle(17), plen 0: [] -EVENT[18004]: 2.122617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18005]: 2.122631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18006]: 2.122645550 - core[0].svIdle(17), plen 0: [] -EVENT[18007]: 2.122747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18008]: 2.122756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18009]: 2.122770600 - core[1].svIdle(17), plen 0: [] -EVENT[18010]: 2.123617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18011]: 2.123629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18012]: 2.123643125 - core[0].svIdle(17), plen 0: [] -EVENT[18013]: 2.123747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18014]: 2.123757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18015]: 2.123770775 - core[1].svIdle(17), plen 0: [] -EVENT[18016]: 2.124617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18017]: 2.124629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18018]: 2.124643125 - core[0].svIdle(17), plen 0: [] -EVENT[18019]: 2.124747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18020]: 2.124756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18021]: 2.124770600 - core[1].svIdle(17), plen 0: [] -EVENT[18022]: 2.125617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18023]: 2.125629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18024]: 2.125643250 - core[0].svIdle(17), plen 0: [] -EVENT[18025]: 2.125747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18026]: 2.125756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18027]: 2.125770600 - core[1].svIdle(17), plen 0: [] -EVENT[18028]: 2.126617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18029]: 2.126629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18030]: 2.126643175 - core[0].svIdle(17), plen 0: [] -EVENT[18031]: 2.126747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18032]: 2.126756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18033]: 2.126770600 - core[1].svIdle(17), plen 0: [] -EVENT[18034]: 2.127617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18035]: 2.127629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18036]: 2.127643125 - core[0].svIdle(17), plen 0: [] -EVENT[18037]: 2.127747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18038]: 2.127757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18039]: 2.127770775 - core[1].svIdle(17), plen 0: [] -EVENT[18040]: 2.128617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18041]: 2.128629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18042]: 2.128643125 - core[0].svIdle(17), plen 0: [] -EVENT[18043]: 2.128747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18044]: 2.128756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18045]: 2.128770600 - core[1].svIdle(17), plen 0: [] -EVENT[18046]: 2.129617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18047]: 2.129629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18048]: 2.129643250 - core[0].svIdle(17), plen 0: [] -EVENT[18049]: 2.129747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18050]: 2.129756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18051]: 2.129770600 - core[1].svIdle(17), plen 0: [] -EVENT[18052]: 2.130617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18053]: 2.130629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18054]: 2.130643175 - core[0].svIdle(17), plen 0: [] -EVENT[18055]: 2.130747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18056]: 2.130756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18057]: 2.130770600 - core[1].svIdle(17), plen 0: [] -EVENT[18058]: 2.131617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18059]: 2.131629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18060]: 2.131643125 - core[0].svIdle(17), plen 0: [] -EVENT[18061]: 2.131747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18062]: 2.131757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18063]: 2.131770775 - core[1].svIdle(17), plen 0: [] -EVENT[18064]: 2.132617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18065]: 2.132629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18066]: 2.132643125 - core[0].svIdle(17), plen 0: [] -EVENT[18067]: 2.132747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18068]: 2.132756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18069]: 2.132770600 - core[1].svIdle(17), plen 0: [] -EVENT[18070]: 2.133617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18071]: 2.133629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[18072]: 2.133638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18073]: 2.133652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[18074]: 2.133677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 144, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.133677000] HEAP: Allocated 144 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18075]: 2.133692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18076]: 2.133706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18077]: 2.133747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18078]: 2.133768950 - core[0].svPrint(26), plen 72: [msg: I (2460) example: Task[0x3ffb7f40]: allocated 144 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.133768950] LOG: I (2460) example: Task[0x3ffb7f40]: allocated 144 bytes @ 0x3ffb4b10 -EVENT[18079]: 2.133777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18080]: 2.133785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18081]: 2.133795925 - core[1].svIdle(17), plen 0: [] -EVENT[18082]: 2.133806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[18083]: 2.133819725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18084]: 2.133828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[18085]: 2.133836200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18086]: 2.133844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[18087]: 2.133857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[18088]: 2.133865750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[18089]: 2.133874050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[18090]: 2.133882925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18091]: 2.133892325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18092]: 2.133901625 - core[0].svIdle(17), plen 0: [] -EVENT[18093]: 2.133916450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18094]: 2.133965700 - core[1].svPrint(26), plen 64: [msg: I (2460) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.133965700] LOG: I (2460) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[18095]: 2.133984175 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.133984175] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18096]: 2.134002175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[18097]: 2.134014850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18098]: 2.134023650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18099]: 2.134039225 - core[1].svIdle(17), plen 0: [] -EVENT[18100]: 2.134617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18101]: 2.134629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[18102]: 2.134638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18103]: 2.134652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[18104]: 2.134677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 288, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.134677000] HEAP: Allocated 288 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18105]: 2.134689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18106]: 2.134703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18107]: 2.134747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18108]: 2.134769475 - core[0].svPrint(26), plen 72: [msg: I (2461) example: Task[0x3ffb82a0]: allocated 288 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.134769475] LOG: I (2461) example: Task[0x3ffb82a0]: allocated 288 bytes @ 0x3ffb4b10 -EVENT[18109]: 2.134780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18110]: 2.134789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18111]: 2.134798950 - core[1].svIdle(17), plen 0: [] -EVENT[18112]: 2.134809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[18113]: 2.134822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18114]: 2.134831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[18115]: 2.134839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18116]: 2.134847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[18117]: 2.134860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[18118]: 2.134868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[18119]: 2.134877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[18120]: 2.134886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18121]: 2.134895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18122]: 2.134904625 - core[0].svIdle(17), plen 0: [] -EVENT[18123]: 2.134919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18124]: 2.134968700 - core[1].svPrint(26), plen 64: [msg: I (2461) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.134968700] LOG: I (2461) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[18125]: 2.134984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.134984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18126]: 2.135005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[18127]: 2.135018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18128]: 2.135026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18129]: 2.135042425 - core[1].svIdle(17), plen 0: [] -EVENT[18130]: 2.135617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18131]: 2.135629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[18132]: 2.135638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18133]: 2.135652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[18134]: 2.135676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 432, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.135676975] HEAP: Allocated 432 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18135]: 2.135689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18136]: 2.135703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18137]: 2.135747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18138]: 2.135769450 - core[0].svPrint(26), plen 72: [msg: I (2462) example: Task[0x3ffb8600]: allocated 432 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.135769450] LOG: I (2462) example: Task[0x3ffb8600]: allocated 432 bytes @ 0x3ffb4b10 -EVENT[18139]: 2.135778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18140]: 2.135786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18141]: 2.135797075 - core[1].svIdle(17), plen 0: [] -EVENT[18142]: 2.135807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[18143]: 2.135820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18144]: 2.135829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[18145]: 2.135837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18146]: 2.135845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[18147]: 2.135858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[18148]: 2.135866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[18149]: 2.135879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[18150]: 2.135887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18151]: 2.135895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18152]: 2.135905825 - core[0].svIdle(17), plen 0: [] -EVENT[18153]: 2.135920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18154]: 2.135970100 - core[1].svPrint(26), plen 64: [msg: I (2462) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.135970100] LOG: I (2462) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[18155]: 2.135985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.135985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18156]: 2.136003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[18157]: 2.136016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18158]: 2.136025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18159]: 2.136040650 - core[1].svIdle(17), plen 0: [] -EVENT[18160]: 2.136617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18161]: 2.136629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18162]: 2.136643175 - core[0].svIdle(17), plen 0: [] -EVENT[18163]: 2.136747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18164]: 2.136756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18165]: 2.136770600 - core[1].svIdle(17), plen 0: [] -EVENT[18166]: 2.137617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18167]: 2.137629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18168]: 2.137643125 - core[0].svIdle(17), plen 0: [] -EVENT[18169]: 2.137747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18170]: 2.137757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18171]: 2.137770775 - core[1].svIdle(17), plen 0: [] -EVENT[18172]: 2.138617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18173]: 2.138629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18174]: 2.138643125 - core[0].svIdle(17), plen 0: [] -EVENT[18175]: 2.138747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18176]: 2.138756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18177]: 2.138770600 - core[1].svIdle(17), plen 0: [] -EVENT[18178]: 2.139617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18179]: 2.139629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18180]: 2.139643250 - core[0].svIdle(17), plen 0: [] -EVENT[18181]: 2.139747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18182]: 2.139756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18183]: 2.139770600 - core[1].svIdle(17), plen 0: [] -EVENT[18184]: 2.140617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18185]: 2.140632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18186]: 2.140646225 - core[0].svIdle(17), plen 0: [] -EVENT[18187]: 2.140747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18188]: 2.140756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18189]: 2.140770600 - core[1].svIdle(17), plen 0: [] -EVENT[18190]: 2.141617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18191]: 2.141629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18192]: 2.141643125 - core[0].svIdle(17), plen 0: [] -EVENT[18193]: 2.141747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18194]: 2.141757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18195]: 2.141770775 - core[1].svIdle(17), plen 0: [] -EVENT[18196]: 2.142617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18197]: 2.142629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18198]: 2.142643125 - core[0].svIdle(17), plen 0: [] -EVENT[18199]: 2.142747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18200]: 2.142756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18201]: 2.142770600 - core[1].svIdle(17), plen 0: [] -EVENT[18202]: 2.143617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18203]: 2.143629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18204]: 2.143643250 - core[0].svIdle(17), plen 0: [] -EVENT[18205]: 2.143747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18206]: 2.143756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18207]: 2.143770600 - core[1].svIdle(17), plen 0: [] -EVENT[18208]: 2.144617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18209]: 2.144629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18210]: 2.144643175 - core[0].svIdle(17), plen 0: [] -EVENT[18211]: 2.144747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18212]: 2.144756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18213]: 2.144770600 - core[1].svIdle(17), plen 0: [] -EVENT[18214]: 2.145617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18215]: 2.145629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18216]: 2.145643125 - core[0].svIdle(17), plen 0: [] -EVENT[18217]: 2.145747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18218]: 2.145757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18219]: 2.145770775 - core[1].svIdle(17), plen 0: [] -EVENT[18220]: 2.146617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18221]: 2.146629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18222]: 2.146643125 - core[0].svIdle(17), plen 0: [] -EVENT[18223]: 2.146747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18224]: 2.146756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18225]: 2.146770600 - core[1].svIdle(17), plen 0: [] -EVENT[18226]: 2.147617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18227]: 2.147629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18228]: 2.147643250 - core[0].svIdle(17), plen 0: [] -EVENT[18229]: 2.147747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18230]: 2.147756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18231]: 2.147770600 - core[1].svIdle(17), plen 0: [] -EVENT[18232]: 2.148617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18233]: 2.148629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18234]: 2.148643175 - core[0].svIdle(17), plen 0: [] -EVENT[18235]: 2.148747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18236]: 2.148756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18237]: 2.148770600 - core[1].svIdle(17), plen 0: [] -EVENT[18238]: 2.149617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18239]: 2.149629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18240]: 2.149643125 - core[0].svIdle(17), plen 0: [] -EVENT[18241]: 2.149747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18242]: 2.149757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18243]: 2.149770775 - core[1].svIdle(17), plen 0: [] -EVENT[18244]: 2.150617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18245]: 2.150629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18246]: 2.150643125 - core[0].svIdle(17), plen 0: [] -EVENT[18247]: 2.150747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18248]: 2.150756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18249]: 2.150770600 - core[1].svIdle(17), plen 0: [] -EVENT[18250]: 2.151617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18251]: 2.151629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18252]: 2.151643250 - core[0].svIdle(17), plen 0: [] -EVENT[18253]: 2.151747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18254]: 2.151756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18255]: 2.151770600 - core[1].svIdle(17), plen 0: [] -EVENT[18256]: 2.152617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18257]: 2.152631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18258]: 2.152645550 - core[0].svIdle(17), plen 0: [] -EVENT[18259]: 2.152747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18260]: 2.152756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18261]: 2.152770600 - core[1].svIdle(17), plen 0: [] -EVENT[18262]: 2.153617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18263]: 2.153629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18264]: 2.153643125 - core[0].svIdle(17), plen 0: [] -EVENT[18265]: 2.153747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18266]: 2.153757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18267]: 2.153770775 - core[1].svIdle(17), plen 0: [] -EVENT[18268]: 2.154617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18269]: 2.154629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18270]: 2.154643125 - core[0].svIdle(17), plen 0: [] -EVENT[18271]: 2.154747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18272]: 2.154756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18273]: 2.154770600 - core[1].svIdle(17), plen 0: [] -EVENT[18274]: 2.155617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18275]: 2.155629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18276]: 2.155643250 - core[0].svIdle(17), plen 0: [] -EVENT[18277]: 2.155747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18278]: 2.155756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18279]: 2.155770600 - core[1].svIdle(17), plen 0: [] -EVENT[18280]: 2.156617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18281]: 2.156629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18282]: 2.156643175 - core[0].svIdle(17), plen 0: [] -EVENT[18283]: 2.156747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18284]: 2.156756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18285]: 2.156770600 - core[1].svIdle(17), plen 0: [] -EVENT[18286]: 2.157617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18287]: 2.157629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18288]: 2.157643125 - core[0].svIdle(17), plen 0: [] -EVENT[18289]: 2.157747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18290]: 2.157757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18291]: 2.157770775 - core[1].svIdle(17), plen 0: [] -EVENT[18292]: 2.158617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18293]: 2.158629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18294]: 2.158643125 - core[0].svIdle(17), plen 0: [] -EVENT[18295]: 2.158747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18296]: 2.158756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18297]: 2.158770600 - core[1].svIdle(17), plen 0: [] -EVENT[18298]: 2.159617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18299]: 2.159629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18300]: 2.159643250 - core[0].svIdle(17), plen 0: [] -EVENT[18301]: 2.159747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18302]: 2.159756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18303]: 2.159770600 - core[1].svIdle(17), plen 0: [] -EVENT[18304]: 2.160617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18305]: 2.160629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18306]: 2.160643175 - core[0].svIdle(17), plen 0: [] -EVENT[18307]: 2.160747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18308]: 2.160756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18309]: 2.160770600 - core[1].svIdle(17), plen 0: [] -EVENT[18310]: 2.161617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18311]: 2.161629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18312]: 2.161643125 - core[0].svIdle(17), plen 0: [] -EVENT[18313]: 2.161747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18314]: 2.161757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18315]: 2.161770775 - core[1].svIdle(17), plen 0: [] -EVENT[18316]: 2.162617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18317]: 2.162629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18318]: 2.162643125 - core[0].svIdle(17), plen 0: [] -EVENT[18319]: 2.162747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18320]: 2.162756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18321]: 2.162770600 - core[1].svIdle(17), plen 0: [] -EVENT[18322]: 2.163617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18323]: 2.163629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[18324]: 2.163638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18325]: 2.163652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[18326]: 2.163677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 146, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.163677000] HEAP: Allocated 146 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18327]: 2.163692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18328]: 2.163706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18329]: 2.163747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18330]: 2.163768950 - core[0].svPrint(26), plen 72: [msg: I (2490) example: Task[0x3ffb7f40]: allocated 146 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.163768950] LOG: I (2490) example: Task[0x3ffb7f40]: allocated 146 bytes @ 0x3ffb4b10 -EVENT[18331]: 2.163777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18332]: 2.163785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18333]: 2.163795925 - core[1].svIdle(17), plen 0: [] -EVENT[18334]: 2.163806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[18335]: 2.163819725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18336]: 2.163828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[18337]: 2.163836200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18338]: 2.163844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[18339]: 2.163857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[18340]: 2.163865750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[18341]: 2.163874050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[18342]: 2.163882925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18343]: 2.163892325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18344]: 2.163901625 - core[0].svIdle(17), plen 0: [] -EVENT[18345]: 2.163916450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18346]: 2.163965700 - core[1].svPrint(26), plen 64: [msg: I (2490) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.163965700] LOG: I (2490) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[18347]: 2.163984175 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.163984175] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18348]: 2.164002175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[18349]: 2.164014850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18350]: 2.164023650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18351]: 2.164039225 - core[1].svIdle(17), plen 0: [] -EVENT[18352]: 2.164617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18353]: 2.164629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[18354]: 2.164638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18355]: 2.164652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[18356]: 2.164677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 292, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.164677000] HEAP: Allocated 292 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18357]: 2.164689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18358]: 2.164703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18359]: 2.164747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18360]: 2.164769475 - core[0].svPrint(26), plen 72: [msg: I (2491) example: Task[0x3ffb82a0]: allocated 292 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.164769475] LOG: I (2491) example: Task[0x3ffb82a0]: allocated 292 bytes @ 0x3ffb4b10 -EVENT[18361]: 2.164780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18362]: 2.164789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18363]: 2.164798950 - core[1].svIdle(17), plen 0: [] -EVENT[18364]: 2.164809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[18365]: 2.164822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18366]: 2.164831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[18367]: 2.164839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18368]: 2.164847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[18369]: 2.164860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[18370]: 2.164868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[18371]: 2.164877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[18372]: 2.164886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18373]: 2.164895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18374]: 2.164904625 - core[0].svIdle(17), plen 0: [] -EVENT[18375]: 2.164919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18376]: 2.164968700 - core[1].svPrint(26), plen 64: [msg: I (2491) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.164968700] LOG: I (2491) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[18377]: 2.164984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.164984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18378]: 2.165005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[18379]: 2.165018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18380]: 2.165026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18381]: 2.165042425 - core[1].svIdle(17), plen 0: [] -EVENT[18382]: 2.165617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18383]: 2.165629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[18384]: 2.165638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18385]: 2.165652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[18386]: 2.165676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 438, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.165676975] HEAP: Allocated 438 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18387]: 2.165689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18388]: 2.165703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18389]: 2.165747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18390]: 2.165769450 - core[0].svPrint(26), plen 72: [msg: I (2492) example: Task[0x3ffb8600]: allocated 438 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.165769450] LOG: I (2492) example: Task[0x3ffb8600]: allocated 438 bytes @ 0x3ffb4b10 -EVENT[18391]: 2.165778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18392]: 2.165786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18393]: 2.165797075 - core[1].svIdle(17), plen 0: [] -EVENT[18394]: 2.165807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[18395]: 2.165820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18396]: 2.165829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[18397]: 2.165837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18398]: 2.165845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[18399]: 2.165858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[18400]: 2.165866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[18401]: 2.165879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[18402]: 2.165887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18403]: 2.165895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18404]: 2.165905825 - core[0].svIdle(17), plen 0: [] -EVENT[18405]: 2.165920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18406]: 2.165970100 - core[1].svPrint(26), plen 64: [msg: I (2492) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.165970100] LOG: I (2492) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[18407]: 2.165985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.165985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18408]: 2.166003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[18409]: 2.166016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18410]: 2.166025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18411]: 2.166040650 - core[1].svIdle(17), plen 0: [] -EVENT[18412]: 2.166617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18413]: 2.166629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18414]: 2.166643175 - core[0].svIdle(17), plen 0: [] -EVENT[18415]: 2.166747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18416]: 2.166756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18417]: 2.166770600 - core[1].svIdle(17), plen 0: [] -EVENT[18418]: 2.167617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18419]: 2.167629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18420]: 2.167643125 - core[0].svIdle(17), plen 0: [] -EVENT[18421]: 2.167747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18422]: 2.167757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18423]: 2.167770775 - core[1].svIdle(17), plen 0: [] -EVENT[18424]: 2.168617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18425]: 2.168629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18426]: 2.168643125 - core[0].svIdle(17), plen 0: [] -EVENT[18427]: 2.168747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18428]: 2.168756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18429]: 2.168770600 - core[1].svIdle(17), plen 0: [] -EVENT[18430]: 2.169617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18431]: 2.169629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18432]: 2.169643250 - core[0].svIdle(17), plen 0: [] -EVENT[18433]: 2.169747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18434]: 2.169756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18435]: 2.169770600 - core[1].svIdle(17), plen 0: [] -EVENT[18436]: 2.170617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18437]: 2.170632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18438]: 2.170646225 - core[0].svIdle(17), plen 0: [] -EVENT[18439]: 2.170747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18440]: 2.170756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18441]: 2.170770600 - core[1].svIdle(17), plen 0: [] -EVENT[18442]: 2.171617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18443]: 2.171629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18444]: 2.171643125 - core[0].svIdle(17), plen 0: [] -EVENT[18445]: 2.171747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18446]: 2.171757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18447]: 2.171770775 - core[1].svIdle(17), plen 0: [] -EVENT[18448]: 2.172617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18449]: 2.172629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18450]: 2.172643125 - core[0].svIdle(17), plen 0: [] -EVENT[18451]: 2.172747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18452]: 2.172756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18453]: 2.172770600 - core[1].svIdle(17), plen 0: [] -EVENT[18454]: 2.173617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18455]: 2.173629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18456]: 2.173643250 - core[0].svIdle(17), plen 0: [] -EVENT[18457]: 2.173747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18458]: 2.173756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18459]: 2.173770600 - core[1].svIdle(17), plen 0: [] -EVENT[18460]: 2.174617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18461]: 2.174629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18462]: 2.174643175 - core[0].svIdle(17), plen 0: [] -EVENT[18463]: 2.174747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18464]: 2.174756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18465]: 2.174770600 - core[1].svIdle(17), plen 0: [] -EVENT[18466]: 2.175617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18467]: 2.175629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18468]: 2.175643125 - core[0].svIdle(17), plen 0: [] -EVENT[18469]: 2.175747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18470]: 2.175757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18471]: 2.175770775 - core[1].svIdle(17), plen 0: [] -EVENT[18472]: 2.176617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18473]: 2.176629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18474]: 2.176643125 - core[0].svIdle(17), plen 0: [] -EVENT[18475]: 2.176747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18476]: 2.176756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18477]: 2.176770600 - core[1].svIdle(17), plen 0: [] -EVENT[18478]: 2.177617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18479]: 2.177629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18480]: 2.177643250 - core[0].svIdle(17), plen 0: [] -EVENT[18481]: 2.177747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18482]: 2.177756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18483]: 2.177770600 - core[1].svIdle(17), plen 0: [] -EVENT[18484]: 2.178617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18485]: 2.178629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18486]: 2.178643175 - core[0].svIdle(17), plen 0: [] -EVENT[18487]: 2.178747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18488]: 2.178756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18489]: 2.178770600 - core[1].svIdle(17), plen 0: [] -EVENT[18490]: 2.179617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18491]: 2.179629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18492]: 2.179643125 - core[0].svIdle(17), plen 0: [] -EVENT[18493]: 2.179747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18494]: 2.179757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18495]: 2.179770775 - core[1].svIdle(17), plen 0: [] -EVENT[18496]: 2.180617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18497]: 2.180629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18498]: 2.180643125 - core[0].svIdle(17), plen 0: [] -EVENT[18499]: 2.180747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18500]: 2.180756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18501]: 2.180770600 - core[1].svIdle(17), plen 0: [] -EVENT[18502]: 2.181617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18503]: 2.181629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18504]: 2.181643250 - core[0].svIdle(17), plen 0: [] -EVENT[18505]: 2.181747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18506]: 2.181756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18507]: 2.181770600 - core[1].svIdle(17), plen 0: [] -EVENT[18508]: 2.182617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18509]: 2.182631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18510]: 2.182645550 - core[0].svIdle(17), plen 0: [] -EVENT[18511]: 2.182747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18512]: 2.182756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18513]: 2.182770600 - core[1].svIdle(17), plen 0: [] -EVENT[18514]: 2.183617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18515]: 2.183629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18516]: 2.183643125 - core[0].svIdle(17), plen 0: [] -EVENT[18517]: 2.183747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18518]: 2.183757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18519]: 2.183770775 - core[1].svIdle(17), plen 0: [] -EVENT[18520]: 2.184617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18521]: 2.184629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18522]: 2.184643125 - core[0].svIdle(17), plen 0: [] -EVENT[18523]: 2.184747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18524]: 2.184756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18525]: 2.184770600 - core[1].svIdle(17), plen 0: [] -EVENT[18526]: 2.185617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18527]: 2.185629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18528]: 2.185643250 - core[0].svIdle(17), plen 0: [] -EVENT[18529]: 2.185747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18530]: 2.185756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18531]: 2.185770600 - core[1].svIdle(17), plen 0: [] -EVENT[18532]: 2.186617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18533]: 2.186629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18534]: 2.186643175 - core[0].svIdle(17), plen 0: [] -EVENT[18535]: 2.186747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18536]: 2.186756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18537]: 2.186770600 - core[1].svIdle(17), plen 0: [] -EVENT[18538]: 2.187617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18539]: 2.187629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18540]: 2.187643125 - core[0].svIdle(17), plen 0: [] -EVENT[18541]: 2.187747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18542]: 2.187757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18543]: 2.187770775 - core[1].svIdle(17), plen 0: [] -EVENT[18544]: 2.188617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18545]: 2.188629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18546]: 2.188643125 - core[0].svIdle(17), plen 0: [] -EVENT[18547]: 2.188747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18548]: 2.188756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18549]: 2.188770600 - core[1].svIdle(17), plen 0: [] -EVENT[18550]: 2.189617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18551]: 2.189629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18552]: 2.189643250 - core[0].svIdle(17), plen 0: [] -EVENT[18553]: 2.189747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18554]: 2.189756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18555]: 2.189770600 - core[1].svIdle(17), plen 0: [] -EVENT[18556]: 2.190617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18557]: 2.190629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18558]: 2.190643175 - core[0].svIdle(17), plen 0: [] -EVENT[18559]: 2.190747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18560]: 2.190756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18561]: 2.190770600 - core[1].svIdle(17), plen 0: [] -EVENT[18562]: 2.191617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18563]: 2.191629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18564]: 2.191643125 - core[0].svIdle(17), plen 0: [] -EVENT[18565]: 2.191747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18566]: 2.191757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18567]: 2.191770775 - core[1].svIdle(17), plen 0: [] -EVENT[18568]: 2.192617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18569]: 2.192629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18570]: 2.192643125 - core[0].svIdle(17), plen 0: [] -EVENT[18571]: 2.192747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18572]: 2.192756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18573]: 2.192770600 - core[1].svIdle(17), plen 0: [] -EVENT[18574]: 2.193617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18575]: 2.193629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[18576]: 2.193638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18577]: 2.193652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[18578]: 2.193677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 148, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.193677000] HEAP: Allocated 148 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18579]: 2.193692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18580]: 2.193706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18581]: 2.193747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18582]: 2.193768950 - core[0].svPrint(26), plen 72: [msg: I (2520) example: Task[0x3ffb7f40]: allocated 148 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.193768950] LOG: I (2520) example: Task[0x3ffb7f40]: allocated 148 bytes @ 0x3ffb4b10 -EVENT[18583]: 2.193777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18584]: 2.193785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18585]: 2.193795925 - core[1].svIdle(17), plen 0: [] -EVENT[18586]: 2.193806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[18587]: 2.193819725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18588]: 2.193828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[18589]: 2.193836200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18590]: 2.193844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[18591]: 2.193857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[18592]: 2.193865750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[18593]: 2.193874050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[18594]: 2.193882925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18595]: 2.193892325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18596]: 2.193901625 - core[0].svIdle(17), plen 0: [] -EVENT[18597]: 2.193916450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18598]: 2.193965700 - core[1].svPrint(26), plen 64: [msg: I (2520) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.193965700] LOG: I (2520) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[18599]: 2.193984175 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.193984175] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18600]: 2.194002175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[18601]: 2.194014850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18602]: 2.194023650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18603]: 2.194039225 - core[1].svIdle(17), plen 0: [] -EVENT[18604]: 2.194617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18605]: 2.194629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[18606]: 2.194638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18607]: 2.194652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[18608]: 2.194677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 296, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.194677000] HEAP: Allocated 296 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18609]: 2.194689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18610]: 2.194703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18611]: 2.194747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18612]: 2.194769475 - core[0].svPrint(26), plen 72: [msg: I (2521) example: Task[0x3ffb82a0]: allocated 296 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.194769475] LOG: I (2521) example: Task[0x3ffb82a0]: allocated 296 bytes @ 0x3ffb4b10 -EVENT[18613]: 2.194780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18614]: 2.194789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18615]: 2.194798950 - core[1].svIdle(17), plen 0: [] -EVENT[18616]: 2.194809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[18617]: 2.194822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18618]: 2.194831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[18619]: 2.194839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18620]: 2.194847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[18621]: 2.194860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[18622]: 2.194868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[18623]: 2.194877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[18624]: 2.194886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18625]: 2.194895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18626]: 2.194904625 - core[0].svIdle(17), plen 0: [] -EVENT[18627]: 2.194919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18628]: 2.194968700 - core[1].svPrint(26), plen 64: [msg: I (2521) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.194968700] LOG: I (2521) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[18629]: 2.194984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.194984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18630]: 2.195005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[18631]: 2.195018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18632]: 2.195026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18633]: 2.195042425 - core[1].svIdle(17), plen 0: [] -EVENT[18634]: 2.195617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18635]: 2.195629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[18636]: 2.195638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18637]: 2.195652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[18638]: 2.195676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 444, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.195676975] HEAP: Allocated 444 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18639]: 2.195689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18640]: 2.195703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18641]: 2.195747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18642]: 2.195769450 - core[0].svPrint(26), plen 72: [msg: I (2522) example: Task[0x3ffb8600]: allocated 444 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.195769450] LOG: I (2522) example: Task[0x3ffb8600]: allocated 444 bytes @ 0x3ffb4b10 -EVENT[18643]: 2.195778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18644]: 2.195786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18645]: 2.195797075 - core[1].svIdle(17), plen 0: [] -EVENT[18646]: 2.195807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[18647]: 2.195820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18648]: 2.195829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[18649]: 2.195837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18650]: 2.195845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[18651]: 2.195858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[18652]: 2.195866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[18653]: 2.195879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[18654]: 2.195887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18655]: 2.195895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18656]: 2.195905825 - core[0].svIdle(17), plen 0: [] -EVENT[18657]: 2.195920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18658]: 2.195970100 - core[1].svPrint(26), plen 64: [msg: I (2522) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.195970100] LOG: I (2522) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[18659]: 2.195985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.195985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18660]: 2.196003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[18661]: 2.196016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18662]: 2.196025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18663]: 2.196040650 - core[1].svIdle(17), plen 0: [] -EVENT[18664]: 2.196617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18665]: 2.196629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18666]: 2.196643175 - core[0].svIdle(17), plen 0: [] -EVENT[18667]: 2.196747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18668]: 2.196756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18669]: 2.196770600 - core[1].svIdle(17), plen 0: [] -EVENT[18670]: 2.197617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18671]: 2.197629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18672]: 2.197643125 - core[0].svIdle(17), plen 0: [] -EVENT[18673]: 2.197747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18674]: 2.197757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18675]: 2.197770775 - core[1].svIdle(17), plen 0: [] -EVENT[18676]: 2.198617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18677]: 2.198629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18678]: 2.198643125 - core[0].svIdle(17), plen 0: [] -EVENT[18679]: 2.198747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18680]: 2.198756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18681]: 2.198770600 - core[1].svIdle(17), plen 0: [] -EVENT[18682]: 2.199617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18683]: 2.199629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18684]: 2.199643250 - core[0].svIdle(17), plen 0: [] -EVENT[18685]: 2.199747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18686]: 2.199756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18687]: 2.199770600 - core[1].svIdle(17), plen 0: [] -EVENT[18688]: 2.200617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18689]: 2.200632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18690]: 2.200646225 - core[0].svIdle(17), plen 0: [] -EVENT[18691]: 2.200747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18692]: 2.200756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18693]: 2.200770600 - core[1].svIdle(17), plen 0: [] -EVENT[18694]: 2.201617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18695]: 2.201629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18696]: 2.201643125 - core[0].svIdle(17), plen 0: [] -EVENT[18697]: 2.201747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18698]: 2.201757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18699]: 2.201770775 - core[1].svIdle(17), plen 0: [] -EVENT[18700]: 2.202617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18701]: 2.202629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18702]: 2.202643125 - core[0].svIdle(17), plen 0: [] -EVENT[18703]: 2.202747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18704]: 2.202756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18705]: 2.202770600 - core[1].svIdle(17), plen 0: [] -EVENT[18706]: 2.203617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18707]: 2.203629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18708]: 2.203643250 - core[0].svIdle(17), plen 0: [] -EVENT[18709]: 2.203747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18710]: 2.203756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18711]: 2.203770600 - core[1].svIdle(17), plen 0: [] -EVENT[18712]: 2.204617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18713]: 2.204629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18714]: 2.204643175 - core[0].svIdle(17), plen 0: [] -EVENT[18715]: 2.204747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18716]: 2.204756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18717]: 2.204770600 - core[1].svIdle(17), plen 0: [] -EVENT[18718]: 2.205617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18719]: 2.205629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18720]: 2.205643125 - core[0].svIdle(17), plen 0: [] -EVENT[18721]: 2.205747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18722]: 2.205757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18723]: 2.205770775 - core[1].svIdle(17), plen 0: [] -EVENT[18724]: 2.206617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18725]: 2.206629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18726]: 2.206643125 - core[0].svIdle(17), plen 0: [] -EVENT[18727]: 2.206747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18728]: 2.206756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18729]: 2.206770600 - core[1].svIdle(17), plen 0: [] -EVENT[18730]: 2.207617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18731]: 2.207629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18732]: 2.207643250 - core[0].svIdle(17), plen 0: [] -EVENT[18733]: 2.207747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18734]: 2.207756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18735]: 2.207770600 - core[1].svIdle(17), plen 0: [] -EVENT[18736]: 2.208617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18737]: 2.208629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18738]: 2.208643175 - core[0].svIdle(17), plen 0: [] -EVENT[18739]: 2.208747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18740]: 2.208756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18741]: 2.208770600 - core[1].svIdle(17), plen 0: [] -EVENT[18742]: 2.209617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18743]: 2.209629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18744]: 2.209643125 - core[0].svIdle(17), plen 0: [] -EVENT[18745]: 2.209747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18746]: 2.209757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18747]: 2.209770775 - core[1].svIdle(17), plen 0: [] -EVENT[18748]: 2.210617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18749]: 2.210629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18750]: 2.210643125 - core[0].svIdle(17), plen 0: [] -EVENT[18751]: 2.210747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18752]: 2.210756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18753]: 2.210770600 - core[1].svIdle(17), plen 0: [] -EVENT[18754]: 2.211617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18755]: 2.211629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18756]: 2.211643250 - core[0].svIdle(17), plen 0: [] -EVENT[18757]: 2.211747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18758]: 2.211756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18759]: 2.211770600 - core[1].svIdle(17), plen 0: [] -EVENT[18760]: 2.212617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18761]: 2.212631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18762]: 2.212645550 - core[0].svIdle(17), plen 0: [] -EVENT[18763]: 2.212747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18764]: 2.212756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18765]: 2.212770600 - core[1].svIdle(17), plen 0: [] -EVENT[18766]: 2.213617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18767]: 2.213629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18768]: 2.213643125 - core[0].svIdle(17), plen 0: [] -EVENT[18769]: 2.213747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18770]: 2.213757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18771]: 2.213770775 - core[1].svIdle(17), plen 0: [] -EVENT[18772]: 2.214617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18773]: 2.214629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18774]: 2.214643125 - core[0].svIdle(17), plen 0: [] -EVENT[18775]: 2.214747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18776]: 2.214756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18777]: 2.214770600 - core[1].svIdle(17), plen 0: [] -EVENT[18778]: 2.215617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18779]: 2.215629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18780]: 2.215643250 - core[0].svIdle(17), plen 0: [] -EVENT[18781]: 2.215747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18782]: 2.215756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18783]: 2.215770600 - core[1].svIdle(17), plen 0: [] -EVENT[18784]: 2.216617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18785]: 2.216629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18786]: 2.216643175 - core[0].svIdle(17), plen 0: [] -EVENT[18787]: 2.216747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18788]: 2.216756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18789]: 2.216770600 - core[1].svIdle(17), plen 0: [] -EVENT[18790]: 2.217617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18791]: 2.217629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18792]: 2.217643125 - core[0].svIdle(17), plen 0: [] -EVENT[18793]: 2.217747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18794]: 2.217757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18795]: 2.217770775 - core[1].svIdle(17), plen 0: [] -EVENT[18796]: 2.218617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18797]: 2.218629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18798]: 2.218643125 - core[0].svIdle(17), plen 0: [] -EVENT[18799]: 2.218747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18800]: 2.218756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18801]: 2.218770600 - core[1].svIdle(17), plen 0: [] -EVENT[18802]: 2.219617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18803]: 2.219629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18804]: 2.219643250 - core[0].svIdle(17), plen 0: [] -EVENT[18805]: 2.219747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18806]: 2.219756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18807]: 2.219770600 - core[1].svIdle(17), plen 0: [] -EVENT[18808]: 2.220617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18809]: 2.220629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18810]: 2.220643175 - core[0].svIdle(17), plen 0: [] -EVENT[18811]: 2.220747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18812]: 2.220756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18813]: 2.220770600 - core[1].svIdle(17), plen 0: [] -EVENT[18814]: 2.221617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18815]: 2.221629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18816]: 2.221643125 - core[0].svIdle(17), plen 0: [] -EVENT[18817]: 2.221747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18818]: 2.221757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18819]: 2.221770775 - core[1].svIdle(17), plen 0: [] -EVENT[18820]: 2.222617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18821]: 2.222629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18822]: 2.222643125 - core[0].svIdle(17), plen 0: [] -EVENT[18823]: 2.222747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18824]: 2.222756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18825]: 2.222770600 - core[1].svIdle(17), plen 0: [] -EVENT[18826]: 2.223617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18827]: 2.223629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[18828]: 2.223638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18829]: 2.223652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[18830]: 2.223677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 150, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.223677000] HEAP: Allocated 150 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18831]: 2.223692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18832]: 2.223706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18833]: 2.223747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18834]: 2.223768950 - core[0].svPrint(26), plen 72: [msg: I (2550) example: Task[0x3ffb7f40]: allocated 150 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.223768950] LOG: I (2550) example: Task[0x3ffb7f40]: allocated 150 bytes @ 0x3ffb4b10 -EVENT[18835]: 2.223777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18836]: 2.223785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18837]: 2.223795925 - core[1].svIdle(17), plen 0: [] -EVENT[18838]: 2.223806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[18839]: 2.223819725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18840]: 2.223828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[18841]: 2.223836200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18842]: 2.223844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[18843]: 2.223857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[18844]: 2.223865750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[18845]: 2.223874050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[18846]: 2.223882925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18847]: 2.223892325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18848]: 2.223901625 - core[0].svIdle(17), plen 0: [] -EVENT[18849]: 2.223916450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18850]: 2.223965700 - core[1].svPrint(26), plen 64: [msg: I (2550) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.223965700] LOG: I (2550) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[18851]: 2.223984175 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.223984175] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18852]: 2.224002175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[18853]: 2.224014850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18854]: 2.224023650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18855]: 2.224039225 - core[1].svIdle(17), plen 0: [] -EVENT[18856]: 2.224617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18857]: 2.224629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[18858]: 2.224638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18859]: 2.224652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[18860]: 2.224677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 300, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.224677000] HEAP: Allocated 300 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18861]: 2.224689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18862]: 2.224703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18863]: 2.224747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18864]: 2.224769475 - core[0].svPrint(26), plen 72: [msg: I (2551) example: Task[0x3ffb82a0]: allocated 300 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.224769475] LOG: I (2551) example: Task[0x3ffb82a0]: allocated 300 bytes @ 0x3ffb4b10 -EVENT[18865]: 2.224780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18866]: 2.224789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18867]: 2.224798950 - core[1].svIdle(17), plen 0: [] -EVENT[18868]: 2.224809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[18869]: 2.224822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18870]: 2.224831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[18871]: 2.224839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18872]: 2.224847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[18873]: 2.224860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[18874]: 2.224868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[18875]: 2.224877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[18876]: 2.224886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18877]: 2.224895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18878]: 2.224904625 - core[0].svIdle(17), plen 0: [] -EVENT[18879]: 2.224919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18880]: 2.224968700 - core[1].svPrint(26), plen 64: [msg: I (2551) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.224968700] LOG: I (2551) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[18881]: 2.224984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.224984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18882]: 2.225005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[18883]: 2.225018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18884]: 2.225026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18885]: 2.225042425 - core[1].svIdle(17), plen 0: [] -EVENT[18886]: 2.225617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18887]: 2.225629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[18888]: 2.225638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18889]: 2.225652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[18890]: 2.225676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 450, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.225676975] HEAP: Allocated 450 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18891]: 2.225689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18892]: 2.225703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18893]: 2.225747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18894]: 2.225769450 - core[0].svPrint(26), plen 72: [msg: I (2552) example: Task[0x3ffb8600]: allocated 450 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.225769450] LOG: I (2552) example: Task[0x3ffb8600]: allocated 450 bytes @ 0x3ffb4b10 -EVENT[18895]: 2.225778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18896]: 2.225786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18897]: 2.225797075 - core[1].svIdle(17), plen 0: [] -EVENT[18898]: 2.225807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[18899]: 2.225820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18900]: 2.225829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[18901]: 2.225837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18902]: 2.225845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[18903]: 2.225858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[18904]: 2.225866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[18905]: 2.225879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[18906]: 2.225887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18907]: 2.225895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[18908]: 2.225905825 - core[0].svIdle(17), plen 0: [] -EVENT[18909]: 2.225920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[18910]: 2.225970100 - core[1].svPrint(26), plen 64: [msg: I (2552) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.225970100] LOG: I (2552) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[18911]: 2.225985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.225985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[18912]: 2.226003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[18913]: 2.226016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[18914]: 2.226025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18915]: 2.226040650 - core[1].svIdle(17), plen 0: [] -EVENT[18916]: 2.226617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18917]: 2.226629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18918]: 2.226643175 - core[0].svIdle(17), plen 0: [] -EVENT[18919]: 2.226747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18920]: 2.226756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18921]: 2.226770600 - core[1].svIdle(17), plen 0: [] -EVENT[18922]: 2.227617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18923]: 2.227629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18924]: 2.227643125 - core[0].svIdle(17), plen 0: [] -EVENT[18925]: 2.227747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18926]: 2.227757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18927]: 2.227770775 - core[1].svIdle(17), plen 0: [] -EVENT[18928]: 2.228617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18929]: 2.228629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18930]: 2.228643125 - core[0].svIdle(17), plen 0: [] -EVENT[18931]: 2.228747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18932]: 2.228756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18933]: 2.228770600 - core[1].svIdle(17), plen 0: [] -EVENT[18934]: 2.229617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18935]: 2.229629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18936]: 2.229643250 - core[0].svIdle(17), plen 0: [] -EVENT[18937]: 2.229747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18938]: 2.229756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18939]: 2.229770600 - core[1].svIdle(17), plen 0: [] -EVENT[18940]: 2.230617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18941]: 2.230632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18942]: 2.230646225 - core[0].svIdle(17), plen 0: [] -EVENT[18943]: 2.230747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18944]: 2.230756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18945]: 2.230770600 - core[1].svIdle(17), plen 0: [] -EVENT[18946]: 2.231617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18947]: 2.231629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18948]: 2.231643125 - core[0].svIdle(17), plen 0: [] -EVENT[18949]: 2.231747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18950]: 2.231757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18951]: 2.231770775 - core[1].svIdle(17), plen 0: [] -EVENT[18952]: 2.232617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18953]: 2.232629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18954]: 2.232643125 - core[0].svIdle(17), plen 0: [] -EVENT[18955]: 2.232747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18956]: 2.232756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18957]: 2.232770600 - core[1].svIdle(17), plen 0: [] -EVENT[18958]: 2.233617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18959]: 2.233629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18960]: 2.233643250 - core[0].svIdle(17), plen 0: [] -EVENT[18961]: 2.233747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18962]: 2.233756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18963]: 2.233770600 - core[1].svIdle(17), plen 0: [] -EVENT[18964]: 2.234617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18965]: 2.234629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18966]: 2.234643175 - core[0].svIdle(17), plen 0: [] -EVENT[18967]: 2.234747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18968]: 2.234756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18969]: 2.234770600 - core[1].svIdle(17), plen 0: [] -EVENT[18970]: 2.235617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18971]: 2.235629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18972]: 2.235643125 - core[0].svIdle(17), plen 0: [] -EVENT[18973]: 2.235747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18974]: 2.235757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18975]: 2.235770775 - core[1].svIdle(17), plen 0: [] -EVENT[18976]: 2.236617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18977]: 2.236629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18978]: 2.236643125 - core[0].svIdle(17), plen 0: [] -EVENT[18979]: 2.236747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18980]: 2.236756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18981]: 2.236770600 - core[1].svIdle(17), plen 0: [] -EVENT[18982]: 2.237617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18983]: 2.237629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18984]: 2.237643250 - core[0].svIdle(17), plen 0: [] -EVENT[18985]: 2.237747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18986]: 2.237756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18987]: 2.237770600 - core[1].svIdle(17), plen 0: [] -EVENT[18988]: 2.238617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18989]: 2.238629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18990]: 2.238643175 - core[0].svIdle(17), plen 0: [] -EVENT[18991]: 2.238747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18992]: 2.238756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18993]: 2.238770600 - core[1].svIdle(17), plen 0: [] -EVENT[18994]: 2.239617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18995]: 2.239629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[18996]: 2.239643125 - core[0].svIdle(17), plen 0: [] -EVENT[18997]: 2.239747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[18998]: 2.239757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[18999]: 2.239770775 - core[1].svIdle(17), plen 0: [] -EVENT[19000]: 2.240617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19001]: 2.240629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19002]: 2.240643125 - core[0].svIdle(17), plen 0: [] -EVENT[19003]: 2.240747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19004]: 2.240756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19005]: 2.240770600 - core[1].svIdle(17), plen 0: [] -EVENT[19006]: 2.241617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19007]: 2.241629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19008]: 2.241643250 - core[0].svIdle(17), plen 0: [] -EVENT[19009]: 2.241747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19010]: 2.241756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19011]: 2.241770600 - core[1].svIdle(17), plen 0: [] -EVENT[19012]: 2.242617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19013]: 2.242633975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19014]: 2.242647600 - core[0].svIdle(17), plen 0: [] -EVENT[19015]: 2.242747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19016]: 2.242756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19017]: 2.242770600 - core[1].svIdle(17), plen 0: [] -EVENT[19018]: 2.243617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19019]: 2.243629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19020]: 2.243643125 - core[0].svIdle(17), plen 0: [] -EVENT[19021]: 2.243747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19022]: 2.243757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19023]: 2.243770775 - core[1].svIdle(17), plen 0: [] -EVENT[19024]: 2.244617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19025]: 2.244629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19026]: 2.244643125 - core[0].svIdle(17), plen 0: [] -EVENT[19027]: 2.244747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19028]: 2.244756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19029]: 2.244770600 - core[1].svIdle(17), plen 0: [] -EVENT[19030]: 2.245617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19031]: 2.245629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19032]: 2.245643250 - core[0].svIdle(17), plen 0: [] -EVENT[19033]: 2.245747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19034]: 2.245756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19035]: 2.245770600 - core[1].svIdle(17), plen 0: [] -EVENT[19036]: 2.246617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19037]: 2.246629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19038]: 2.246643175 - core[0].svIdle(17), plen 0: [] -EVENT[19039]: 2.246747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19040]: 2.246756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19041]: 2.246770600 - core[1].svIdle(17), plen 0: [] -EVENT[19042]: 2.247617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19043]: 2.247629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19044]: 2.247643125 - core[0].svIdle(17), plen 0: [] -EVENT[19045]: 2.247747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19046]: 2.247757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19047]: 2.247770775 - core[1].svIdle(17), plen 0: [] -EVENT[19048]: 2.248617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19049]: 2.248629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19050]: 2.248643125 - core[0].svIdle(17), plen 0: [] -EVENT[19051]: 2.248747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19052]: 2.248756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19053]: 2.248770600 - core[1].svIdle(17), plen 0: [] -EVENT[19054]: 2.249617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19055]: 2.249629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19056]: 2.249643250 - core[0].svIdle(17), plen 0: [] -EVENT[19057]: 2.249747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19058]: 2.249756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19059]: 2.249770600 - core[1].svIdle(17), plen 0: [] -EVENT[19060]: 2.250617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19061]: 2.250629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19062]: 2.250643175 - core[0].svIdle(17), plen 0: [] -EVENT[19063]: 2.250747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19064]: 2.250756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19065]: 2.250770600 - core[1].svIdle(17), plen 0: [] -EVENT[19066]: 2.251617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19067]: 2.251629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19068]: 2.251643125 - core[0].svIdle(17), plen 0: [] -EVENT[19069]: 2.251747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19070]: 2.251757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19071]: 2.251770775 - core[1].svIdle(17), plen 0: [] -EVENT[19072]: 2.252617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19073]: 2.252629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19074]: 2.252643125 - core[0].svIdle(17), plen 0: [] -EVENT[19075]: 2.252747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19076]: 2.252756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19077]: 2.252770600 - core[1].svIdle(17), plen 0: [] -EVENT[19078]: 2.253617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19079]: 2.253629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[19080]: 2.253638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19081]: 2.253652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[19082]: 2.253677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 152, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.253677000] HEAP: Allocated 152 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19083]: 2.253692100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19084]: 2.253706100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19085]: 2.253747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19086]: 2.253768375 - core[0].svPrint(26), plen 72: [msg: I (2580) example: Task[0x3ffb7f40]: allocated 152 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.253768375] LOG: I (2580) example: Task[0x3ffb7f40]: allocated 152 bytes @ 0x3ffb4b10 -EVENT[19087]: 2.253777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19088]: 2.253785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19089]: 2.253796400 - core[1].svIdle(17), plen 0: [] -EVENT[19090]: 2.253807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[19091]: 2.253820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19092]: 2.253828750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[19093]: 2.253836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19094]: 2.253845225 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[19095]: 2.253857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[19096]: 2.253866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[19097]: 2.253874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[19098]: 2.253883425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19099]: 2.253892825 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19100]: 2.253902100 - core[0].svIdle(17), plen 0: [] -EVENT[19101]: 2.253916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19102]: 2.253966175 - core[1].svPrint(26), plen 64: [msg: I (2580) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.253966175] LOG: I (2580) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[19103]: 2.253984575 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.253984575] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19104]: 2.254002575 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[19105]: 2.254015250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19106]: 2.254024050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19107]: 2.254039625 - core[1].svIdle(17), plen 0: [] -EVENT[19108]: 2.254617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19109]: 2.254629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[19110]: 2.254638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19111]: 2.254652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[19112]: 2.254677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 304, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.254677000] HEAP: Allocated 304 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19113]: 2.254689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19114]: 2.254703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19115]: 2.254747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19116]: 2.254769475 - core[0].svPrint(26), plen 72: [msg: I (2581) example: Task[0x3ffb82a0]: allocated 304 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.254769475] LOG: I (2581) example: Task[0x3ffb82a0]: allocated 304 bytes @ 0x3ffb4b10 -EVENT[19117]: 2.254781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19118]: 2.254789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19119]: 2.254800125 - core[1].svIdle(17), plen 0: [] -EVENT[19120]: 2.254810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[19121]: 2.254823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19122]: 2.254832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[19123]: 2.254840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19124]: 2.254849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[19125]: 2.254861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[19126]: 2.254870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[19127]: 2.254878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[19128]: 2.254887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19129]: 2.254896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19130]: 2.254905800 - core[0].svIdle(17), plen 0: [] -EVENT[19131]: 2.254920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19132]: 2.254969875 - core[1].svPrint(26), plen 64: [msg: I (2581) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.254969875] LOG: I (2581) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[19133]: 2.254985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.254985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19134]: 2.255005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[19135]: 2.255018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19136]: 2.255027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19137]: 2.255042900 - core[1].svIdle(17), plen 0: [] -EVENT[19138]: 2.255617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19139]: 2.255629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[19140]: 2.255638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19141]: 2.255652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[19142]: 2.255676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 456, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.255676975] HEAP: Allocated 456 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19143]: 2.255689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19144]: 2.255703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19145]: 2.255747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19146]: 2.255769450 - core[0].svPrint(26), plen 72: [msg: I (2582) example: Task[0x3ffb8600]: allocated 456 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.255769450] LOG: I (2582) example: Task[0x3ffb8600]: allocated 456 bytes @ 0x3ffb4b10 -EVENT[19147]: 2.255778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19148]: 2.255786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19149]: 2.255797075 - core[1].svIdle(17), plen 0: [] -EVENT[19150]: 2.255807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[19151]: 2.255820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19152]: 2.255829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[19153]: 2.255837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19154]: 2.255845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[19155]: 2.255858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[19156]: 2.255866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[19157]: 2.255879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[19158]: 2.255887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19159]: 2.255895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19160]: 2.255905800 - core[0].svIdle(17), plen 0: [] -EVENT[19161]: 2.255920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19162]: 2.255970075 - core[1].svPrint(26), plen 64: [msg: I (2582) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.255970075] LOG: I (2582) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[19163]: 2.255985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.255985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19164]: 2.256003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[19165]: 2.256016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19166]: 2.256025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19167]: 2.256040625 - core[1].svIdle(17), plen 0: [] -EVENT[19168]: 2.256617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19169]: 2.256629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19170]: 2.256643175 - core[0].svIdle(17), plen 0: [] -EVENT[19171]: 2.256747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19172]: 2.256756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19173]: 2.256770600 - core[1].svIdle(17), plen 0: [] -EVENT[19174]: 2.257617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19175]: 2.257629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19176]: 2.257643125 - core[0].svIdle(17), plen 0: [] -EVENT[19177]: 2.257747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19178]: 2.257757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19179]: 2.257770775 - core[1].svIdle(17), plen 0: [] -EVENT[19180]: 2.258617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19181]: 2.258629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19182]: 2.258643125 - core[0].svIdle(17), plen 0: [] -EVENT[19183]: 2.258747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19184]: 2.258756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19185]: 2.258770600 - core[1].svIdle(17), plen 0: [] -EVENT[19186]: 2.259617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19187]: 2.259629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19188]: 2.259643250 - core[0].svIdle(17), plen 0: [] -EVENT[19189]: 2.259747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19190]: 2.259756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19191]: 2.259770600 - core[1].svIdle(17), plen 0: [] -EVENT[19192]: 2.260617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19193]: 2.260631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19194]: 2.260645550 - core[0].svIdle(17), plen 0: [] -EVENT[19195]: 2.260747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19196]: 2.260756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19197]: 2.260770600 - core[1].svIdle(17), plen 0: [] -EVENT[19198]: 2.261617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19199]: 2.261629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19200]: 2.261643125 - core[0].svIdle(17), plen 0: [] -EVENT[19201]: 2.261747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19202]: 2.261757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19203]: 2.261770775 - core[1].svIdle(17), plen 0: [] -EVENT[19204]: 2.262617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19205]: 2.262629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19206]: 2.262643125 - core[0].svIdle(17), plen 0: [] -EVENT[19207]: 2.262747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19208]: 2.262756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19209]: 2.262770600 - core[1].svIdle(17), plen 0: [] -EVENT[19210]: 2.263617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19211]: 2.263629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19212]: 2.263643250 - core[0].svIdle(17), plen 0: [] -EVENT[19213]: 2.263747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19214]: 2.263756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19215]: 2.263770600 - core[1].svIdle(17), plen 0: [] -EVENT[19216]: 2.264617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19217]: 2.264629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19218]: 2.264643175 - core[0].svIdle(17), plen 0: [] -EVENT[19219]: 2.264747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19220]: 2.264756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19221]: 2.264770600 - core[1].svIdle(17), plen 0: [] -EVENT[19222]: 2.265617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19223]: 2.265629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19224]: 2.265643125 - core[0].svIdle(17), plen 0: [] -EVENT[19225]: 2.265747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19226]: 2.265757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19227]: 2.265770775 - core[1].svIdle(17), plen 0: [] -EVENT[19228]: 2.266617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19229]: 2.266629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19230]: 2.266643125 - core[0].svIdle(17), plen 0: [] -EVENT[19231]: 2.266747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19232]: 2.266756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19233]: 2.266770600 - core[1].svIdle(17), plen 0: [] -EVENT[19234]: 2.267617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19235]: 2.267629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19236]: 2.267643250 - core[0].svIdle(17), plen 0: [] -EVENT[19237]: 2.267747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19238]: 2.267756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19239]: 2.267770600 - core[1].svIdle(17), plen 0: [] -EVENT[19240]: 2.268617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19241]: 2.268629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19242]: 2.268643175 - core[0].svIdle(17), plen 0: [] -EVENT[19243]: 2.268747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19244]: 2.268756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19245]: 2.268770600 - core[1].svIdle(17), plen 0: [] -EVENT[19246]: 2.269617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19247]: 2.269629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19248]: 2.269643125 - core[0].svIdle(17), plen 0: [] -EVENT[19249]: 2.269747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19250]: 2.269757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19251]: 2.269770775 - core[1].svIdle(17), plen 0: [] -EVENT[19252]: 2.270617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19253]: 2.270629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19254]: 2.270643125 - core[0].svIdle(17), plen 0: [] -EVENT[19255]: 2.270747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19256]: 2.270756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19257]: 2.270770600 - core[1].svIdle(17), plen 0: [] -EVENT[19258]: 2.271617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19259]: 2.271629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19260]: 2.271643250 - core[0].svIdle(17), plen 0: [] -EVENT[19261]: 2.271747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19262]: 2.271756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19263]: 2.271770600 - core[1].svIdle(17), plen 0: [] -EVENT[19264]: 2.272617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19265]: 2.272632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19266]: 2.272646225 - core[0].svIdle(17), plen 0: [] -EVENT[19267]: 2.272747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19268]: 2.272756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19269]: 2.272770600 - core[1].svIdle(17), plen 0: [] -EVENT[19270]: 2.273617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19271]: 2.273629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19272]: 2.273643125 - core[0].svIdle(17), plen 0: [] -EVENT[19273]: 2.273747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19274]: 2.273757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19275]: 2.273770775 - core[1].svIdle(17), plen 0: [] -EVENT[19276]: 2.274617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19277]: 2.274629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19278]: 2.274643125 - core[0].svIdle(17), plen 0: [] -EVENT[19279]: 2.274747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19280]: 2.274756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19281]: 2.274770600 - core[1].svIdle(17), plen 0: [] -EVENT[19282]: 2.275617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19283]: 2.275629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19284]: 2.275643250 - core[0].svIdle(17), plen 0: [] -EVENT[19285]: 2.275747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19286]: 2.275756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19287]: 2.275770600 - core[1].svIdle(17), plen 0: [] -EVENT[19288]: 2.276617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19289]: 2.276629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19290]: 2.276643175 - core[0].svIdle(17), plen 0: [] -EVENT[19291]: 2.276747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19292]: 2.276756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19293]: 2.276770600 - core[1].svIdle(17), plen 0: [] -EVENT[19294]: 2.277617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19295]: 2.277629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19296]: 2.277643125 - core[0].svIdle(17), plen 0: [] -EVENT[19297]: 2.277747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19298]: 2.277757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19299]: 2.277770775 - core[1].svIdle(17), plen 0: [] -EVENT[19300]: 2.278617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19301]: 2.278629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19302]: 2.278643125 - core[0].svIdle(17), plen 0: [] -EVENT[19303]: 2.278747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19304]: 2.278756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19305]: 2.278770600 - core[1].svIdle(17), plen 0: [] -EVENT[19306]: 2.279617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19307]: 2.279629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19308]: 2.279643250 - core[0].svIdle(17), plen 0: [] -EVENT[19309]: 2.279747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19310]: 2.279756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19311]: 2.279770600 - core[1].svIdle(17), plen 0: [] -EVENT[19312]: 2.280617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19313]: 2.280629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19314]: 2.280643175 - core[0].svIdle(17), plen 0: [] -EVENT[19315]: 2.280747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19316]: 2.280756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19317]: 2.280770600 - core[1].svIdle(17), plen 0: [] -EVENT[19318]: 2.281617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19319]: 2.281629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19320]: 2.281643125 - core[0].svIdle(17), plen 0: [] -EVENT[19321]: 2.281747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19322]: 2.281757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19323]: 2.281770775 - core[1].svIdle(17), plen 0: [] -EVENT[19324]: 2.282617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19325]: 2.282629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19326]: 2.282643125 - core[0].svIdle(17), plen 0: [] -EVENT[19327]: 2.282747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19328]: 2.282756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19329]: 2.282770600 - core[1].svIdle(17), plen 0: [] -EVENT[19330]: 2.283617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19331]: 2.283629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[19332]: 2.283638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19333]: 2.283652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[19334]: 2.283677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 154, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.283677000] HEAP: Allocated 154 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19335]: 2.283692100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19336]: 2.283706100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19337]: 2.283747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19338]: 2.283768375 - core[0].svPrint(26), plen 72: [msg: I (2610) example: Task[0x3ffb7f40]: allocated 154 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.283768375] LOG: I (2610) example: Task[0x3ffb7f40]: allocated 154 bytes @ 0x3ffb4b10 -EVENT[19339]: 2.283777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19340]: 2.283785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19341]: 2.283796400 - core[1].svIdle(17), plen 0: [] -EVENT[19342]: 2.283807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[19343]: 2.283820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19344]: 2.283828750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[19345]: 2.283836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19346]: 2.283845225 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[19347]: 2.283857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[19348]: 2.283866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[19349]: 2.283874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[19350]: 2.283883425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19351]: 2.283892825 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19352]: 2.283902100 - core[0].svIdle(17), plen 0: [] -EVENT[19353]: 2.283916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19354]: 2.283966175 - core[1].svPrint(26), plen 64: [msg: I (2610) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.283966175] LOG: I (2610) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[19355]: 2.283984575 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.283984575] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19356]: 2.284002575 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[19357]: 2.284015250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19358]: 2.284024050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19359]: 2.284039625 - core[1].svIdle(17), plen 0: [] -EVENT[19360]: 2.284617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19361]: 2.284629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[19362]: 2.284638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19363]: 2.284652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[19364]: 2.284677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 308, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.284677000] HEAP: Allocated 308 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19365]: 2.284689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19366]: 2.284703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19367]: 2.284747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19368]: 2.284769475 - core[0].svPrint(26), plen 72: [msg: I (2611) example: Task[0x3ffb82a0]: allocated 308 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.284769475] LOG: I (2611) example: Task[0x3ffb82a0]: allocated 308 bytes @ 0x3ffb4b10 -EVENT[19369]: 2.284781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19370]: 2.284789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19371]: 2.284800125 - core[1].svIdle(17), plen 0: [] -EVENT[19372]: 2.284810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[19373]: 2.284823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19374]: 2.284832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[19375]: 2.284840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19376]: 2.284849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[19377]: 2.284861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[19378]: 2.284870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[19379]: 2.284878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[19380]: 2.284887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19381]: 2.284896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19382]: 2.284905800 - core[0].svIdle(17), plen 0: [] -EVENT[19383]: 2.284920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19384]: 2.284969875 - core[1].svPrint(26), plen 64: [msg: I (2611) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.284969875] LOG: I (2611) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[19385]: 2.284985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.284985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19386]: 2.285005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[19387]: 2.285018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19388]: 2.285027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19389]: 2.285042900 - core[1].svIdle(17), plen 0: [] -EVENT[19390]: 2.285617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19391]: 2.285629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[19392]: 2.285638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19393]: 2.285652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[19394]: 2.285676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 462, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.285676975] HEAP: Allocated 462 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19395]: 2.285689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19396]: 2.285703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19397]: 2.285747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19398]: 2.285769450 - core[0].svPrint(26), plen 72: [msg: I (2612) example: Task[0x3ffb8600]: allocated 462 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.285769450] LOG: I (2612) example: Task[0x3ffb8600]: allocated 462 bytes @ 0x3ffb4b10 -EVENT[19399]: 2.285778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19400]: 2.285786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19401]: 2.285797075 - core[1].svIdle(17), plen 0: [] -EVENT[19402]: 2.285807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[19403]: 2.285820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19404]: 2.285829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[19405]: 2.285837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19406]: 2.285845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[19407]: 2.285858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[19408]: 2.285866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[19409]: 2.285879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[19410]: 2.285887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19411]: 2.285895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19412]: 2.285905800 - core[0].svIdle(17), plen 0: [] -EVENT[19413]: 2.285920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19414]: 2.285970075 - core[1].svPrint(26), plen 64: [msg: I (2612) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.285970075] LOG: I (2612) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[19415]: 2.285985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.285985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19416]: 2.286003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[19417]: 2.286016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19418]: 2.286025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19419]: 2.286040625 - core[1].svIdle(17), plen 0: [] -EVENT[19420]: 2.286617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19421]: 2.286629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19422]: 2.286643175 - core[0].svIdle(17), plen 0: [] -EVENT[19423]: 2.286747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19424]: 2.286756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19425]: 2.286770600 - core[1].svIdle(17), plen 0: [] -EVENT[19426]: 2.287617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19427]: 2.287629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19428]: 2.287643125 - core[0].svIdle(17), plen 0: [] -EVENT[19429]: 2.287747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19430]: 2.287757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19431]: 2.287770775 - core[1].svIdle(17), plen 0: [] -EVENT[19432]: 2.288617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19433]: 2.288629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19434]: 2.288643125 - core[0].svIdle(17), plen 0: [] -EVENT[19435]: 2.288747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19436]: 2.288756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19437]: 2.288770600 - core[1].svIdle(17), plen 0: [] -EVENT[19438]: 2.289617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19439]: 2.289629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19440]: 2.289643250 - core[0].svIdle(17), plen 0: [] -EVENT[19441]: 2.289747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19442]: 2.289756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19443]: 2.289770600 - core[1].svIdle(17), plen 0: [] -EVENT[19444]: 2.290617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19445]: 2.290631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19446]: 2.290645550 - core[0].svIdle(17), plen 0: [] -EVENT[19447]: 2.290747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19448]: 2.290756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19449]: 2.290770600 - core[1].svIdle(17), plen 0: [] -EVENT[19450]: 2.291617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19451]: 2.291629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19452]: 2.291643125 - core[0].svIdle(17), plen 0: [] -EVENT[19453]: 2.291747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19454]: 2.291757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19455]: 2.291770775 - core[1].svIdle(17), plen 0: [] -EVENT[19456]: 2.292617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19457]: 2.292629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19458]: 2.292643125 - core[0].svIdle(17), plen 0: [] -EVENT[19459]: 2.292747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19460]: 2.292756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19461]: 2.292770600 - core[1].svIdle(17), plen 0: [] -EVENT[19462]: 2.293617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19463]: 2.293629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19464]: 2.293643250 - core[0].svIdle(17), plen 0: [] -EVENT[19465]: 2.293747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19466]: 2.293756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19467]: 2.293770600 - core[1].svIdle(17), plen 0: [] -EVENT[19468]: 2.294617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19469]: 2.294629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19470]: 2.294643175 - core[0].svIdle(17), plen 0: [] -EVENT[19471]: 2.294747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19472]: 2.294756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19473]: 2.294770600 - core[1].svIdle(17), plen 0: [] -EVENT[19474]: 2.295617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19475]: 2.295629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19476]: 2.295643125 - core[0].svIdle(17), plen 0: [] -EVENT[19477]: 2.295747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19478]: 2.295757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19479]: 2.295770775 - core[1].svIdle(17), plen 0: [] -EVENT[19480]: 2.296617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19481]: 2.296629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19482]: 2.296643125 - core[0].svIdle(17), plen 0: [] -EVENT[19483]: 2.296747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19484]: 2.296756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19485]: 2.296770600 - core[1].svIdle(17), plen 0: [] -EVENT[19486]: 2.297617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19487]: 2.297629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19488]: 2.297643250 - core[0].svIdle(17), plen 0: [] -EVENT[19489]: 2.297747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19490]: 2.297756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19491]: 2.297770600 - core[1].svIdle(17), plen 0: [] -EVENT[19492]: 2.298617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19493]: 2.298629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19494]: 2.298643175 - core[0].svIdle(17), plen 0: [] -EVENT[19495]: 2.298747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19496]: 2.298756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19497]: 2.298770600 - core[1].svIdle(17), plen 0: [] -EVENT[19498]: 2.299617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19499]: 2.299629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19500]: 2.299643125 - core[0].svIdle(17), plen 0: [] -EVENT[19501]: 2.299747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19502]: 2.299757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19503]: 2.299770775 - core[1].svIdle(17), plen 0: [] -EVENT[19504]: 2.300617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19505]: 2.300629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19506]: 2.300643125 - core[0].svIdle(17), plen 0: [] -EVENT[19507]: 2.300747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19508]: 2.300756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19509]: 2.300770600 - core[1].svIdle(17), plen 0: [] -EVENT[19510]: 2.301617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19511]: 2.301629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19512]: 2.301643250 - core[0].svIdle(17), plen 0: [] -EVENT[19513]: 2.301747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19514]: 2.301756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19515]: 2.301770600 - core[1].svIdle(17), plen 0: [] -EVENT[19516]: 2.302617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19517]: 2.302632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19518]: 2.302646225 - core[0].svIdle(17), plen 0: [] -EVENT[19519]: 2.302747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19520]: 2.302756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19521]: 2.302770600 - core[1].svIdle(17), plen 0: [] -EVENT[19522]: 2.303617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19523]: 2.303629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19524]: 2.303643125 - core[0].svIdle(17), plen 0: [] -EVENT[19525]: 2.303747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19526]: 2.303757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19527]: 2.303770775 - core[1].svIdle(17), plen 0: [] -EVENT[19528]: 2.304617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19529]: 2.304629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19530]: 2.304643125 - core[0].svIdle(17), plen 0: [] -EVENT[19531]: 2.304747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19532]: 2.304756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19533]: 2.304770600 - core[1].svIdle(17), plen 0: [] -EVENT[19534]: 2.305617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19535]: 2.305629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19536]: 2.305643250 - core[0].svIdle(17), plen 0: [] -EVENT[19537]: 2.305747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19538]: 2.305756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19539]: 2.305770600 - core[1].svIdle(17), plen 0: [] -EVENT[19540]: 2.306617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19541]: 2.306629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19542]: 2.306643175 - core[0].svIdle(17), plen 0: [] -EVENT[19543]: 2.306747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19544]: 2.306756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19545]: 2.306770600 - core[1].svIdle(17), plen 0: [] -EVENT[19546]: 2.307617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19547]: 2.307629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19548]: 2.307643125 - core[0].svIdle(17), plen 0: [] -EVENT[19549]: 2.307747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19550]: 2.307757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19551]: 2.307770775 - core[1].svIdle(17), plen 0: [] -EVENT[19552]: 2.308617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19553]: 2.308629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19554]: 2.308643125 - core[0].svIdle(17), plen 0: [] -EVENT[19555]: 2.308747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19556]: 2.308756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19557]: 2.308770600 - core[1].svIdle(17), plen 0: [] -EVENT[19558]: 2.309617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19559]: 2.309629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19560]: 2.309643250 - core[0].svIdle(17), plen 0: [] -EVENT[19561]: 2.309747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19562]: 2.309756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19563]: 2.309770600 - core[1].svIdle(17), plen 0: [] -EVENT[19564]: 2.310617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19565]: 2.310629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19566]: 2.310643175 - core[0].svIdle(17), plen 0: [] -EVENT[19567]: 2.310747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19568]: 2.310756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19569]: 2.310770600 - core[1].svIdle(17), plen 0: [] -EVENT[19570]: 2.311617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19571]: 2.311629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19572]: 2.311643125 - core[0].svIdle(17), plen 0: [] -EVENT[19573]: 2.311747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19574]: 2.311757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19575]: 2.311770775 - core[1].svIdle(17), plen 0: [] -EVENT[19576]: 2.312617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19577]: 2.312629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19578]: 2.312643125 - core[0].svIdle(17), plen 0: [] -EVENT[19579]: 2.312747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19580]: 2.312756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19581]: 2.312770600 - core[1].svIdle(17), plen 0: [] -EVENT[19582]: 2.313617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19583]: 2.313629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[19584]: 2.313638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19585]: 2.313652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[19586]: 2.313677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 156, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.313677000] HEAP: Allocated 156 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19587]: 2.313692100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19588]: 2.313706100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19589]: 2.313747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19590]: 2.313768375 - core[0].svPrint(26), plen 72: [msg: I (2640) example: Task[0x3ffb7f40]: allocated 156 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.313768375] LOG: I (2640) example: Task[0x3ffb7f40]: allocated 156 bytes @ 0x3ffb4b10 -EVENT[19591]: 2.313777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19592]: 2.313785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19593]: 2.313796400 - core[1].svIdle(17), plen 0: [] -EVENT[19594]: 2.313807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[19595]: 2.313820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19596]: 2.313828750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[19597]: 2.313836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19598]: 2.313845225 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[19599]: 2.313857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[19600]: 2.313866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[19601]: 2.313874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[19602]: 2.313883425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19603]: 2.313892825 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19604]: 2.313902100 - core[0].svIdle(17), plen 0: [] -EVENT[19605]: 2.313916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19606]: 2.313966175 - core[1].svPrint(26), plen 64: [msg: I (2640) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.313966175] LOG: I (2640) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[19607]: 2.313984575 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.313984575] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19608]: 2.314002575 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[19609]: 2.314015250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19610]: 2.314024050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19611]: 2.314039625 - core[1].svIdle(17), plen 0: [] -EVENT[19612]: 2.314617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19613]: 2.314629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[19614]: 2.314638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19615]: 2.314652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[19616]: 2.314677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 312, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.314677000] HEAP: Allocated 312 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19617]: 2.314689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19618]: 2.314703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19619]: 2.314747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19620]: 2.314769475 - core[0].svPrint(26), plen 72: [msg: I (2641) example: Task[0x3ffb82a0]: allocated 312 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.314769475] LOG: I (2641) example: Task[0x3ffb82a0]: allocated 312 bytes @ 0x3ffb4b10 -EVENT[19621]: 2.314781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19622]: 2.314789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19623]: 2.314800125 - core[1].svIdle(17), plen 0: [] -EVENT[19624]: 2.314810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[19625]: 2.314823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19626]: 2.314832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[19627]: 2.314840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19628]: 2.314849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[19629]: 2.314861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[19630]: 2.314870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[19631]: 2.314878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[19632]: 2.314887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19633]: 2.314896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19634]: 2.314905800 - core[0].svIdle(17), plen 0: [] -EVENT[19635]: 2.314920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19636]: 2.314969875 - core[1].svPrint(26), plen 64: [msg: I (2641) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.314969875] LOG: I (2641) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[19637]: 2.314985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.314985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19638]: 2.315005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[19639]: 2.315018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19640]: 2.315027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19641]: 2.315042900 - core[1].svIdle(17), plen 0: [] -EVENT[19642]: 2.315617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19643]: 2.315629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[19644]: 2.315638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19645]: 2.315652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[19646]: 2.315676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 468, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.315676975] HEAP: Allocated 468 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19647]: 2.315689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19648]: 2.315703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19649]: 2.315747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19650]: 2.315769450 - core[0].svPrint(26), plen 72: [msg: I (2642) example: Task[0x3ffb8600]: allocated 468 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.315769450] LOG: I (2642) example: Task[0x3ffb8600]: allocated 468 bytes @ 0x3ffb4b10 -EVENT[19651]: 2.315778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19652]: 2.315786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19653]: 2.315797075 - core[1].svIdle(17), plen 0: [] -EVENT[19654]: 2.315807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[19655]: 2.315820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19656]: 2.315829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[19657]: 2.315837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19658]: 2.315845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[19659]: 2.315858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[19660]: 2.315866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[19661]: 2.315879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[19662]: 2.315887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19663]: 2.315895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19664]: 2.315905800 - core[0].svIdle(17), plen 0: [] -EVENT[19665]: 2.315920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19666]: 2.315970075 - core[1].svPrint(26), plen 64: [msg: I (2642) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.315970075] LOG: I (2642) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[19667]: 2.315985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.315985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19668]: 2.316003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[19669]: 2.316016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19670]: 2.316025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19671]: 2.316040625 - core[1].svIdle(17), plen 0: [] -EVENT[19672]: 2.316617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19673]: 2.316629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19674]: 2.316643175 - core[0].svIdle(17), plen 0: [] -EVENT[19675]: 2.316747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19676]: 2.316756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19677]: 2.316770600 - core[1].svIdle(17), plen 0: [] -EVENT[19678]: 2.317617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19679]: 2.317629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19680]: 2.317643125 - core[0].svIdle(17), plen 0: [] -EVENT[19681]: 2.317747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19682]: 2.317757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19683]: 2.317770775 - core[1].svIdle(17), plen 0: [] -EVENT[19684]: 2.318617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19685]: 2.318629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19686]: 2.318643125 - core[0].svIdle(17), plen 0: [] -EVENT[19687]: 2.318747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19688]: 2.318756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19689]: 2.318770600 - core[1].svIdle(17), plen 0: [] -EVENT[19690]: 2.319617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19691]: 2.319629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19692]: 2.319643250 - core[0].svIdle(17), plen 0: [] -EVENT[19693]: 2.319747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19694]: 2.319756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19695]: 2.319770600 - core[1].svIdle(17), plen 0: [] -EVENT[19696]: 2.320617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19697]: 2.320631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19698]: 2.320645550 - core[0].svIdle(17), plen 0: [] -EVENT[19699]: 2.320747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19700]: 2.320756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19701]: 2.320770600 - core[1].svIdle(17), plen 0: [] -EVENT[19702]: 2.321617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19703]: 2.321629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19704]: 2.321643125 - core[0].svIdle(17), plen 0: [] -EVENT[19705]: 2.321747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19706]: 2.321757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19707]: 2.321770775 - core[1].svIdle(17), plen 0: [] -EVENT[19708]: 2.322617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19709]: 2.322629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19710]: 2.322643125 - core[0].svIdle(17), plen 0: [] -EVENT[19711]: 2.322747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19712]: 2.322756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19713]: 2.322770600 - core[1].svIdle(17), plen 0: [] -EVENT[19714]: 2.323617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19715]: 2.323629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19716]: 2.323643250 - core[0].svIdle(17), plen 0: [] -EVENT[19717]: 2.323747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19718]: 2.323756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19719]: 2.323770600 - core[1].svIdle(17), plen 0: [] -EVENT[19720]: 2.324617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19721]: 2.324629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19722]: 2.324643175 - core[0].svIdle(17), plen 0: [] -EVENT[19723]: 2.324747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19724]: 2.324756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19725]: 2.324770600 - core[1].svIdle(17), plen 0: [] -EVENT[19726]: 2.325617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19727]: 2.325629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19728]: 2.325643125 - core[0].svIdle(17), plen 0: [] -EVENT[19729]: 2.325747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19730]: 2.325757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19731]: 2.325770775 - core[1].svIdle(17), plen 0: [] -EVENT[19732]: 2.326617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19733]: 2.326629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19734]: 2.326643125 - core[0].svIdle(17), plen 0: [] -EVENT[19735]: 2.326747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19736]: 2.326756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19737]: 2.326770600 - core[1].svIdle(17), plen 0: [] -EVENT[19738]: 2.327617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19739]: 2.327629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19740]: 2.327643250 - core[0].svIdle(17), plen 0: [] -EVENT[19741]: 2.327747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19742]: 2.327756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19743]: 2.327770600 - core[1].svIdle(17), plen 0: [] -EVENT[19744]: 2.328617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19745]: 2.328629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19746]: 2.328643175 - core[0].svIdle(17), plen 0: [] -EVENT[19747]: 2.328747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19748]: 2.328756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19749]: 2.328770600 - core[1].svIdle(17), plen 0: [] -EVENT[19750]: 2.329617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19751]: 2.329629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19752]: 2.329643125 - core[0].svIdle(17), plen 0: [] -EVENT[19753]: 2.329747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19754]: 2.329757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19755]: 2.329770775 - core[1].svIdle(17), plen 0: [] -EVENT[19756]: 2.330617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19757]: 2.330629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19758]: 2.330643125 - core[0].svIdle(17), plen 0: [] -EVENT[19759]: 2.330747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19760]: 2.330756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19761]: 2.330770600 - core[1].svIdle(17), plen 0: [] -EVENT[19762]: 2.331617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19763]: 2.331629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19764]: 2.331643250 - core[0].svIdle(17), plen 0: [] -EVENT[19765]: 2.331747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19766]: 2.331756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19767]: 2.331770600 - core[1].svIdle(17), plen 0: [] -EVENT[19768]: 2.332617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19769]: 2.332632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19770]: 2.332646225 - core[0].svIdle(17), plen 0: [] -EVENT[19771]: 2.332747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19772]: 2.332756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19773]: 2.332770600 - core[1].svIdle(17), plen 0: [] -EVENT[19774]: 2.333617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19775]: 2.333629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19776]: 2.333643125 - core[0].svIdle(17), plen 0: [] -EVENT[19777]: 2.333747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19778]: 2.333757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19779]: 2.333770775 - core[1].svIdle(17), plen 0: [] -EVENT[19780]: 2.334617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19781]: 2.334629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19782]: 2.334643125 - core[0].svIdle(17), plen 0: [] -EVENT[19783]: 2.334747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19784]: 2.334756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19785]: 2.334770600 - core[1].svIdle(17), plen 0: [] -EVENT[19786]: 2.335617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19787]: 2.335629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19788]: 2.335643250 - core[0].svIdle(17), plen 0: [] -EVENT[19789]: 2.335747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19790]: 2.335756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19791]: 2.335770600 - core[1].svIdle(17), plen 0: [] -EVENT[19792]: 2.336617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19793]: 2.336629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19794]: 2.336643175 - core[0].svIdle(17), plen 0: [] -EVENT[19795]: 2.336747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19796]: 2.336756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19797]: 2.336770600 - core[1].svIdle(17), plen 0: [] -EVENT[19798]: 2.337617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19799]: 2.337629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19800]: 2.337643125 - core[0].svIdle(17), plen 0: [] -EVENT[19801]: 2.337747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19802]: 2.337757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19803]: 2.337770775 - core[1].svIdle(17), plen 0: [] -EVENT[19804]: 2.338617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19805]: 2.338629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19806]: 2.338643125 - core[0].svIdle(17), plen 0: [] -EVENT[19807]: 2.338747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19808]: 2.338756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19809]: 2.338770600 - core[1].svIdle(17), plen 0: [] -EVENT[19810]: 2.339617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19811]: 2.339629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19812]: 2.339643250 - core[0].svIdle(17), plen 0: [] -EVENT[19813]: 2.339747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19814]: 2.339756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19815]: 2.339770600 - core[1].svIdle(17), plen 0: [] -EVENT[19816]: 2.340617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19817]: 2.340629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19818]: 2.340643175 - core[0].svIdle(17), plen 0: [] -EVENT[19819]: 2.340747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19820]: 2.340756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19821]: 2.340770600 - core[1].svIdle(17), plen 0: [] -EVENT[19822]: 2.341617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19823]: 2.341629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19824]: 2.341643125 - core[0].svIdle(17), plen 0: [] -EVENT[19825]: 2.341747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19826]: 2.341757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19827]: 2.341770775 - core[1].svIdle(17), plen 0: [] -EVENT[19828]: 2.342617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19829]: 2.342629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19830]: 2.342643125 - core[0].svIdle(17), plen 0: [] -EVENT[19831]: 2.342747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19832]: 2.342756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19833]: 2.342770600 - core[1].svIdle(17), plen 0: [] -EVENT[19834]: 2.343617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19835]: 2.343629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[19836]: 2.343638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19837]: 2.343652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[19838]: 2.343677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 158, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.343677000] HEAP: Allocated 158 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19839]: 2.343692100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19840]: 2.343706100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19841]: 2.343747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19842]: 2.343768375 - core[0].svPrint(26), plen 72: [msg: I (2670) example: Task[0x3ffb7f40]: allocated 158 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.343768375] LOG: I (2670) example: Task[0x3ffb7f40]: allocated 158 bytes @ 0x3ffb4b10 -EVENT[19843]: 2.343777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19844]: 2.343785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19845]: 2.343796400 - core[1].svIdle(17), plen 0: [] -EVENT[19846]: 2.343807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[19847]: 2.343820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19848]: 2.343828750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[19849]: 2.343836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19850]: 2.343845225 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[19851]: 2.343857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[19852]: 2.343866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[19853]: 2.343874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[19854]: 2.343883425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19855]: 2.343892825 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19856]: 2.343902100 - core[0].svIdle(17), plen 0: [] -EVENT[19857]: 2.343916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19858]: 2.343966175 - core[1].svPrint(26), plen 64: [msg: I (2670) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.343966175] LOG: I (2670) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[19859]: 2.343984575 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.343984575] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19860]: 2.344002575 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[19861]: 2.344015250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19862]: 2.344024050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19863]: 2.344039625 - core[1].svIdle(17), plen 0: [] -EVENT[19864]: 2.344617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19865]: 2.344629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[19866]: 2.344638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19867]: 2.344652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[19868]: 2.344677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 316, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.344677000] HEAP: Allocated 316 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19869]: 2.344689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19870]: 2.344703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19871]: 2.344747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19872]: 2.344769475 - core[0].svPrint(26), plen 72: [msg: I (2671) example: Task[0x3ffb82a0]: allocated 316 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.344769475] LOG: I (2671) example: Task[0x3ffb82a0]: allocated 316 bytes @ 0x3ffb4b10 -EVENT[19873]: 2.344781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19874]: 2.344789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19875]: 2.344800125 - core[1].svIdle(17), plen 0: [] -EVENT[19876]: 2.344810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[19877]: 2.344823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19878]: 2.344832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[19879]: 2.344840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19880]: 2.344849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[19881]: 2.344861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[19882]: 2.344870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[19883]: 2.344878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[19884]: 2.344887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19885]: 2.344896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19886]: 2.344905800 - core[0].svIdle(17), plen 0: [] -EVENT[19887]: 2.344920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19888]: 2.344969875 - core[1].svPrint(26), plen 64: [msg: I (2671) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.344969875] LOG: I (2671) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[19889]: 2.344985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.344985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19890]: 2.345005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[19891]: 2.345018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19892]: 2.345027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19893]: 2.345042900 - core[1].svIdle(17), plen 0: [] -EVENT[19894]: 2.345617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19895]: 2.345629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[19896]: 2.345638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19897]: 2.345652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[19898]: 2.345676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 474, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.345676975] HEAP: Allocated 474 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19899]: 2.345689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19900]: 2.345703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19901]: 2.345747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19902]: 2.345769450 - core[0].svPrint(26), plen 72: [msg: I (2672) example: Task[0x3ffb8600]: allocated 474 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.345769450] LOG: I (2672) example: Task[0x3ffb8600]: allocated 474 bytes @ 0x3ffb4b10 -EVENT[19903]: 2.345778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19904]: 2.345786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19905]: 2.345797075 - core[1].svIdle(17), plen 0: [] -EVENT[19906]: 2.345807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[19907]: 2.345820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19908]: 2.345829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[19909]: 2.345837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19910]: 2.345845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[19911]: 2.345858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[19912]: 2.345866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[19913]: 2.345879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[19914]: 2.345887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19915]: 2.345895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[19916]: 2.345905800 - core[0].svIdle(17), plen 0: [] -EVENT[19917]: 2.345920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[19918]: 2.345970075 - core[1].svPrint(26), plen 64: [msg: I (2672) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.345970075] LOG: I (2672) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[19919]: 2.345985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.345985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[19920]: 2.346003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[19921]: 2.346016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[19922]: 2.346025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19923]: 2.346040625 - core[1].svIdle(17), plen 0: [] -EVENT[19924]: 2.346617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19925]: 2.346629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19926]: 2.346643175 - core[0].svIdle(17), plen 0: [] -EVENT[19927]: 2.346747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19928]: 2.346756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19929]: 2.346770600 - core[1].svIdle(17), plen 0: [] -EVENT[19930]: 2.347617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19931]: 2.347629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19932]: 2.347643125 - core[0].svIdle(17), plen 0: [] -EVENT[19933]: 2.347747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19934]: 2.347757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19935]: 2.347770775 - core[1].svIdle(17), plen 0: [] -EVENT[19936]: 2.348617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19937]: 2.348629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19938]: 2.348643125 - core[0].svIdle(17), plen 0: [] -EVENT[19939]: 2.348747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19940]: 2.348756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19941]: 2.348770600 - core[1].svIdle(17), plen 0: [] -EVENT[19942]: 2.349617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19943]: 2.349629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19944]: 2.349643250 - core[0].svIdle(17), plen 0: [] -EVENT[19945]: 2.349747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19946]: 2.349756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19947]: 2.349770600 - core[1].svIdle(17), plen 0: [] -EVENT[19948]: 2.350617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19949]: 2.350631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19950]: 2.350645550 - core[0].svIdle(17), plen 0: [] -EVENT[19951]: 2.350747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19952]: 2.350756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19953]: 2.350770600 - core[1].svIdle(17), plen 0: [] -EVENT[19954]: 2.351617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19955]: 2.351629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19956]: 2.351643125 - core[0].svIdle(17), plen 0: [] -EVENT[19957]: 2.351747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19958]: 2.351757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19959]: 2.351770775 - core[1].svIdle(17), plen 0: [] -EVENT[19960]: 2.352617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19961]: 2.352629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19962]: 2.352643125 - core[0].svIdle(17), plen 0: [] -EVENT[19963]: 2.352747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19964]: 2.352756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19965]: 2.352770600 - core[1].svIdle(17), plen 0: [] -EVENT[19966]: 2.353617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19967]: 2.353629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19968]: 2.353643250 - core[0].svIdle(17), plen 0: [] -EVENT[19969]: 2.353747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19970]: 2.353756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19971]: 2.353770600 - core[1].svIdle(17), plen 0: [] -EVENT[19972]: 2.354617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19973]: 2.354629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19974]: 2.354643175 - core[0].svIdle(17), plen 0: [] -EVENT[19975]: 2.354747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19976]: 2.354756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19977]: 2.354770600 - core[1].svIdle(17), plen 0: [] -EVENT[19978]: 2.355617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19979]: 2.355629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19980]: 2.355643125 - core[0].svIdle(17), plen 0: [] -EVENT[19981]: 2.355747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19982]: 2.355757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19983]: 2.355770775 - core[1].svIdle(17), plen 0: [] -EVENT[19984]: 2.356617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19985]: 2.356629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19986]: 2.356643125 - core[0].svIdle(17), plen 0: [] -EVENT[19987]: 2.356747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19988]: 2.356756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19989]: 2.356770600 - core[1].svIdle(17), plen 0: [] -EVENT[19990]: 2.357617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19991]: 2.357629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19992]: 2.357643250 - core[0].svIdle(17), plen 0: [] -EVENT[19993]: 2.357747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19994]: 2.357756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[19995]: 2.357770600 - core[1].svIdle(17), plen 0: [] -EVENT[19996]: 2.358617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[19997]: 2.358629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[19998]: 2.358643175 - core[0].svIdle(17), plen 0: [] -EVENT[19999]: 2.358747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20000]: 2.358756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20001]: 2.358770600 - core[1].svIdle(17), plen 0: [] -EVENT[20002]: 2.359617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20003]: 2.359629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20004]: 2.359643125 - core[0].svIdle(17), plen 0: [] -EVENT[20005]: 2.359747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20006]: 2.359757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20007]: 2.359770775 - core[1].svIdle(17), plen 0: [] -EVENT[20008]: 2.360617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20009]: 2.360629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20010]: 2.360643125 - core[0].svIdle(17), plen 0: [] -EVENT[20011]: 2.360747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20012]: 2.360756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20013]: 2.360770600 - core[1].svIdle(17), plen 0: [] -EVENT[20014]: 2.361617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20015]: 2.361629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20016]: 2.361643250 - core[0].svIdle(17), plen 0: [] -EVENT[20017]: 2.361747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20018]: 2.361756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20019]: 2.361770600 - core[1].svIdle(17), plen 0: [] -EVENT[20020]: 2.362617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20021]: 2.362632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20022]: 2.362646225 - core[0].svIdle(17), plen 0: [] -EVENT[20023]: 2.362747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20024]: 2.362756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20025]: 2.362770600 - core[1].svIdle(17), plen 0: [] -EVENT[20026]: 2.363617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20027]: 2.363629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20028]: 2.363643125 - core[0].svIdle(17), plen 0: [] -EVENT[20029]: 2.363747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20030]: 2.363757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20031]: 2.363770775 - core[1].svIdle(17), plen 0: [] -EVENT[20032]: 2.364617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20033]: 2.364629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20034]: 2.364643125 - core[0].svIdle(17), plen 0: [] -EVENT[20035]: 2.364747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20036]: 2.364756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20037]: 2.364770600 - core[1].svIdle(17), plen 0: [] -EVENT[20038]: 2.365617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20039]: 2.365629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20040]: 2.365643250 - core[0].svIdle(17), plen 0: [] -EVENT[20041]: 2.365747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20042]: 2.365756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20043]: 2.365770600 - core[1].svIdle(17), plen 0: [] -EVENT[20044]: 2.366617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20045]: 2.366629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20046]: 2.366643175 - core[0].svIdle(17), plen 0: [] -EVENT[20047]: 2.366747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20048]: 2.366756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20049]: 2.366770600 - core[1].svIdle(17), plen 0: [] -EVENT[20050]: 2.367617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20051]: 2.367629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20052]: 2.367643125 - core[0].svIdle(17), plen 0: [] -EVENT[20053]: 2.367747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20054]: 2.367757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20055]: 2.367770775 - core[1].svIdle(17), plen 0: [] -EVENT[20056]: 2.368617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20057]: 2.368629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20058]: 2.368643125 - core[0].svIdle(17), plen 0: [] -EVENT[20059]: 2.368747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20060]: 2.368756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20061]: 2.368770600 - core[1].svIdle(17), plen 0: [] -EVENT[20062]: 2.369617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20063]: 2.369629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20064]: 2.369643250 - core[0].svIdle(17), plen 0: [] -EVENT[20065]: 2.369747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20066]: 2.369756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20067]: 2.369770600 - core[1].svIdle(17), plen 0: [] -EVENT[20068]: 2.370617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20069]: 2.370629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20070]: 2.370643175 - core[0].svIdle(17), plen 0: [] -EVENT[20071]: 2.370747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20072]: 2.370756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20073]: 2.370770600 - core[1].svIdle(17), plen 0: [] -EVENT[20074]: 2.371617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20075]: 2.371629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20076]: 2.371643125 - core[0].svIdle(17), plen 0: [] -EVENT[20077]: 2.371747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20078]: 2.371757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20079]: 2.371770775 - core[1].svIdle(17), plen 0: [] -EVENT[20080]: 2.372617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20081]: 2.372629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20082]: 2.372643125 - core[0].svIdle(17), plen 0: [] -EVENT[20083]: 2.372747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20084]: 2.372756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20085]: 2.372770600 - core[1].svIdle(17), plen 0: [] -EVENT[20086]: 2.373617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20087]: 2.373629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[20088]: 2.373638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20089]: 2.373652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[20090]: 2.373677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 160, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.373677000] HEAP: Allocated 160 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20091]: 2.373692100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20092]: 2.373706100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20093]: 2.373747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20094]: 2.373768375 - core[0].svPrint(26), plen 72: [msg: I (2700) example: Task[0x3ffb7f40]: allocated 160 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.373768375] LOG: I (2700) example: Task[0x3ffb7f40]: allocated 160 bytes @ 0x3ffb4b10 -EVENT[20095]: 2.373777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20096]: 2.373785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20097]: 2.373796400 - core[1].svIdle(17), plen 0: [] -EVENT[20098]: 2.373807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[20099]: 2.373820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20100]: 2.373828750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[20101]: 2.373836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20102]: 2.373845225 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[20103]: 2.373857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[20104]: 2.373866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[20105]: 2.373874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[20106]: 2.373883425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20107]: 2.373892825 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20108]: 2.373902100 - core[0].svIdle(17), plen 0: [] -EVENT[20109]: 2.373916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20110]: 2.373966175 - core[1].svPrint(26), plen 64: [msg: I (2700) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.373966175] LOG: I (2700) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[20111]: 2.373984575 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.373984575] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20112]: 2.374002575 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[20113]: 2.374015250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20114]: 2.374024050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20115]: 2.374039625 - core[1].svIdle(17), plen 0: [] -EVENT[20116]: 2.374617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20117]: 2.374629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[20118]: 2.374638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20119]: 2.374652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[20120]: 2.374677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 320, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.374677000] HEAP: Allocated 320 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20121]: 2.374689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20122]: 2.374703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20123]: 2.374747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20124]: 2.374769475 - core[0].svPrint(26), plen 72: [msg: I (2701) example: Task[0x3ffb82a0]: allocated 320 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.374769475] LOG: I (2701) example: Task[0x3ffb82a0]: allocated 320 bytes @ 0x3ffb4b10 -EVENT[20125]: 2.374781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20126]: 2.374789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20127]: 2.374800125 - core[1].svIdle(17), plen 0: [] -EVENT[20128]: 2.374810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[20129]: 2.374823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20130]: 2.374832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[20131]: 2.374840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20132]: 2.374849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[20133]: 2.374861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[20134]: 2.374870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[20135]: 2.374878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[20136]: 2.374887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20137]: 2.374896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20138]: 2.374905800 - core[0].svIdle(17), plen 0: [] -EVENT[20139]: 2.374920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20140]: 2.374969875 - core[1].svPrint(26), plen 64: [msg: I (2701) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.374969875] LOG: I (2701) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[20141]: 2.374985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.374985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20142]: 2.375005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[20143]: 2.375018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20144]: 2.375027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20145]: 2.375042900 - core[1].svIdle(17), plen 0: [] -EVENT[20146]: 2.375617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20147]: 2.375629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[20148]: 2.375638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20149]: 2.375652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[20150]: 2.375676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 480, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.375676975] HEAP: Allocated 480 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20151]: 2.375689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20152]: 2.375703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20153]: 2.375747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20154]: 2.375769450 - core[0].svPrint(26), plen 72: [msg: I (2702) example: Task[0x3ffb8600]: allocated 480 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.375769450] LOG: I (2702) example: Task[0x3ffb8600]: allocated 480 bytes @ 0x3ffb4b10 -EVENT[20155]: 2.375778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20156]: 2.375786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20157]: 2.375797075 - core[1].svIdle(17), plen 0: [] -EVENT[20158]: 2.375807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[20159]: 2.375820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20160]: 2.375829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[20161]: 2.375837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20162]: 2.375845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[20163]: 2.375858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[20164]: 2.375866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[20165]: 2.375879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[20166]: 2.375887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20167]: 2.375895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20168]: 2.375905800 - core[0].svIdle(17), plen 0: [] -EVENT[20169]: 2.375920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20170]: 2.375970075 - core[1].svPrint(26), plen 64: [msg: I (2702) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.375970075] LOG: I (2702) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[20171]: 2.375985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.375985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20172]: 2.376003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[20173]: 2.376016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20174]: 2.376025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20175]: 2.376040625 - core[1].svIdle(17), plen 0: [] -EVENT[20176]: 2.376617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20177]: 2.376629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20178]: 2.376643175 - core[0].svIdle(17), plen 0: [] -EVENT[20179]: 2.376747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20180]: 2.376756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20181]: 2.376770600 - core[1].svIdle(17), plen 0: [] -EVENT[20182]: 2.377617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20183]: 2.377629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20184]: 2.377643125 - core[0].svIdle(17), plen 0: [] -EVENT[20185]: 2.377747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20186]: 2.377757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20187]: 2.377770775 - core[1].svIdle(17), plen 0: [] -EVENT[20188]: 2.378617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20189]: 2.378629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20190]: 2.378643125 - core[0].svIdle(17), plen 0: [] -EVENT[20191]: 2.378747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20192]: 2.378756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20193]: 2.378770600 - core[1].svIdle(17), plen 0: [] -EVENT[20194]: 2.379617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20195]: 2.379629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20196]: 2.379643250 - core[0].svIdle(17), plen 0: [] -EVENT[20197]: 2.379747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20198]: 2.379756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20199]: 2.379770600 - core[1].svIdle(17), plen 0: [] -EVENT[20200]: 2.380617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20201]: 2.380631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20202]: 2.380645550 - core[0].svIdle(17), plen 0: [] -EVENT[20203]: 2.380747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20204]: 2.380756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20205]: 2.380770600 - core[1].svIdle(17), plen 0: [] -EVENT[20206]: 2.381617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20207]: 2.381629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20208]: 2.381643125 - core[0].svIdle(17), plen 0: [] -EVENT[20209]: 2.381747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20210]: 2.381757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20211]: 2.381770775 - core[1].svIdle(17), plen 0: [] -EVENT[20212]: 2.382617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20213]: 2.382629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20214]: 2.382643125 - core[0].svIdle(17), plen 0: [] -EVENT[20215]: 2.382747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20216]: 2.382756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20217]: 2.382770600 - core[1].svIdle(17), plen 0: [] -EVENT[20218]: 2.383617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20219]: 2.383629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20220]: 2.383643250 - core[0].svIdle(17), plen 0: [] -EVENT[20221]: 2.383747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20222]: 2.383756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20223]: 2.383770600 - core[1].svIdle(17), plen 0: [] -EVENT[20224]: 2.384617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20225]: 2.384629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20226]: 2.384643175 - core[0].svIdle(17), plen 0: [] -EVENT[20227]: 2.384747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20228]: 2.384756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20229]: 2.384770600 - core[1].svIdle(17), plen 0: [] -EVENT[20230]: 2.385617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20231]: 2.385629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20232]: 2.385643125 - core[0].svIdle(17), plen 0: [] -EVENT[20233]: 2.385747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20234]: 2.385757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20235]: 2.385770775 - core[1].svIdle(17), plen 0: [] -EVENT[20236]: 2.386617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20237]: 2.386629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20238]: 2.386643125 - core[0].svIdle(17), plen 0: [] -EVENT[20239]: 2.386747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20240]: 2.386756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20241]: 2.386770600 - core[1].svIdle(17), plen 0: [] -EVENT[20242]: 2.387617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20243]: 2.387629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20244]: 2.387643250 - core[0].svIdle(17), plen 0: [] -EVENT[20245]: 2.387747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20246]: 2.387756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20247]: 2.387770600 - core[1].svIdle(17), plen 0: [] -EVENT[20248]: 2.388617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20249]: 2.388629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20250]: 2.388643175 - core[0].svIdle(17), plen 0: [] -EVENT[20251]: 2.388747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20252]: 2.388756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20253]: 2.388770600 - core[1].svIdle(17), plen 0: [] -EVENT[20254]: 2.389617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20255]: 2.389629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20256]: 2.389643125 - core[0].svIdle(17), plen 0: [] -EVENT[20257]: 2.389747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20258]: 2.389757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20259]: 2.389770775 - core[1].svIdle(17), plen 0: [] -EVENT[20260]: 2.390617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20261]: 2.390629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20262]: 2.390643125 - core[0].svIdle(17), plen 0: [] -EVENT[20263]: 2.390747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20264]: 2.390756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20265]: 2.390770600 - core[1].svIdle(17), plen 0: [] -EVENT[20266]: 2.391617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20267]: 2.391629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20268]: 2.391643250 - core[0].svIdle(17), plen 0: [] -EVENT[20269]: 2.391747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20270]: 2.391756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20271]: 2.391770600 - core[1].svIdle(17), plen 0: [] -EVENT[20272]: 2.392617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20273]: 2.392632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20274]: 2.392646225 - core[0].svIdle(17), plen 0: [] -EVENT[20275]: 2.392747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20276]: 2.392756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20277]: 2.392770600 - core[1].svIdle(17), plen 0: [] -EVENT[20278]: 2.393617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20279]: 2.393629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20280]: 2.393643125 - core[0].svIdle(17), plen 0: [] -EVENT[20281]: 2.393747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20282]: 2.393757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20283]: 2.393770775 - core[1].svIdle(17), plen 0: [] -EVENT[20284]: 2.394617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20285]: 2.394629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20286]: 2.394643125 - core[0].svIdle(17), plen 0: [] -EVENT[20287]: 2.394747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20288]: 2.394756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20289]: 2.394770600 - core[1].svIdle(17), plen 0: [] -EVENT[20290]: 2.395617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20291]: 2.395629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20292]: 2.395643250 - core[0].svIdle(17), plen 0: [] -EVENT[20293]: 2.395747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20294]: 2.395756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20295]: 2.395770600 - core[1].svIdle(17), plen 0: [] -EVENT[20296]: 2.396617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20297]: 2.396629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20298]: 2.396643175 - core[0].svIdle(17), plen 0: [] -EVENT[20299]: 2.396747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20300]: 2.396756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20301]: 2.396770600 - core[1].svIdle(17), plen 0: [] -EVENT[20302]: 2.397617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20303]: 2.397629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20304]: 2.397643125 - core[0].svIdle(17), plen 0: [] -EVENT[20305]: 2.397747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20306]: 2.397757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20307]: 2.397770775 - core[1].svIdle(17), plen 0: [] -EVENT[20308]: 2.398617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20309]: 2.398629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20310]: 2.398643125 - core[0].svIdle(17), plen 0: [] -EVENT[20311]: 2.398747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20312]: 2.398756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20313]: 2.398770600 - core[1].svIdle(17), plen 0: [] -EVENT[20314]: 2.399617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20315]: 2.399629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20316]: 2.399643250 - core[0].svIdle(17), plen 0: [] -EVENT[20317]: 2.399747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20318]: 2.399756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20319]: 2.399770600 - core[1].svIdle(17), plen 0: [] -EVENT[20320]: 2.400617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20321]: 2.400629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20322]: 2.400643175 - core[0].svIdle(17), plen 0: [] -EVENT[20323]: 2.400747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20324]: 2.400756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20325]: 2.400770600 - core[1].svIdle(17), plen 0: [] -EVENT[20326]: 2.401617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20327]: 2.401629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20328]: 2.401643125 - core[0].svIdle(17), plen 0: [] -EVENT[20329]: 2.401747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20330]: 2.401757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20331]: 2.401770775 - core[1].svIdle(17), plen 0: [] -EVENT[20332]: 2.402617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20333]: 2.402629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20334]: 2.402643125 - core[0].svIdle(17), plen 0: [] -EVENT[20335]: 2.402747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20336]: 2.402756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20337]: 2.402770600 - core[1].svIdle(17), plen 0: [] -EVENT[20338]: 2.403617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20339]: 2.403629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[20340]: 2.403638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20341]: 2.403652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[20342]: 2.403677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 162, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.403677000] HEAP: Allocated 162 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20343]: 2.403692100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20344]: 2.403706100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20345]: 2.403747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20346]: 2.403768375 - core[0].svPrint(26), plen 72: [msg: I (2730) example: Task[0x3ffb7f40]: allocated 162 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.403768375] LOG: I (2730) example: Task[0x3ffb7f40]: allocated 162 bytes @ 0x3ffb4b10 -EVENT[20347]: 2.403777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20348]: 2.403785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20349]: 2.403796400 - core[1].svIdle(17), plen 0: [] -EVENT[20350]: 2.403807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[20351]: 2.403820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20352]: 2.403828750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[20353]: 2.403836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20354]: 2.403845225 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[20355]: 2.403857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[20356]: 2.403866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[20357]: 2.403874475 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[20358]: 2.403883350 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20359]: 2.403892725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20360]: 2.403902025 - core[0].svIdle(17), plen 0: [] -EVENT[20361]: 2.403916850 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20362]: 2.403966100 - core[1].svPrint(26), plen 64: [msg: I (2730) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.403966100] LOG: I (2730) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[20363]: 2.403984475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.403984475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20364]: 2.404002475 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[20365]: 2.404015175 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20366]: 2.404023975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20367]: 2.404039550 - core[1].svIdle(17), plen 0: [] -EVENT[20368]: 2.404617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20369]: 2.404629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[20370]: 2.404638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20371]: 2.404652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[20372]: 2.404677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 324, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.404677000] HEAP: Allocated 324 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20373]: 2.404689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20374]: 2.404703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20375]: 2.404747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20376]: 2.404769475 - core[0].svPrint(26), plen 72: [msg: I (2731) example: Task[0x3ffb82a0]: allocated 324 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.404769475] LOG: I (2731) example: Task[0x3ffb82a0]: allocated 324 bytes @ 0x3ffb4b10 -EVENT[20377]: 2.404781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20378]: 2.404789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20379]: 2.404800125 - core[1].svIdle(17), plen 0: [] -EVENT[20380]: 2.404810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[20381]: 2.404823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20382]: 2.404832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[20383]: 2.404840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20384]: 2.404849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[20385]: 2.404861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[20386]: 2.404870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[20387]: 2.404878275 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[20388]: 2.404887150 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20389]: 2.404896525 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20390]: 2.404905700 - core[0].svIdle(17), plen 0: [] -EVENT[20391]: 2.404920525 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20392]: 2.404969775 - core[1].svPrint(26), plen 64: [msg: I (2731) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.404969775] LOG: I (2731) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[20393]: 2.404985375 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.404985375] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20394]: 2.405005750 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[20395]: 2.405018425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20396]: 2.405027225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20397]: 2.405042800 - core[1].svIdle(17), plen 0: [] -EVENT[20398]: 2.405617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20399]: 2.405629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[20400]: 2.405638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20401]: 2.405652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[20402]: 2.405676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 486, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.405676975] HEAP: Allocated 486 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20403]: 2.405689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20404]: 2.405703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20405]: 2.405747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20406]: 2.405769450 - core[0].svPrint(26), plen 72: [msg: I (2732) example: Task[0x3ffb8600]: allocated 486 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.405769450] LOG: I (2732) example: Task[0x3ffb8600]: allocated 486 bytes @ 0x3ffb4b10 -EVENT[20407]: 2.405778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20408]: 2.405786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20409]: 2.405797075 - core[1].svIdle(17), plen 0: [] -EVENT[20410]: 2.405807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[20411]: 2.405820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20412]: 2.405829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[20413]: 2.405837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20414]: 2.405845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[20415]: 2.405858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[20416]: 2.405866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[20417]: 2.405879175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[20418]: 2.405887200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20419]: 2.405895650 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20420]: 2.405905750 - core[0].svIdle(17), plen 0: [] -EVENT[20421]: 2.405920675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20422]: 2.405970025 - core[1].svPrint(26), plen 64: [msg: I (2732) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.405970025] LOG: I (2732) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[20423]: 2.405985400 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.405985400] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20424]: 2.406003525 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[20425]: 2.406016350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20426]: 2.406025125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20427]: 2.406040575 - core[1].svIdle(17), plen 0: [] -EVENT[20428]: 2.406617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20429]: 2.406629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20430]: 2.406643175 - core[0].svIdle(17), plen 0: [] -EVENT[20431]: 2.406747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20432]: 2.406756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20433]: 2.406770600 - core[1].svIdle(17), plen 0: [] -EVENT[20434]: 2.407617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20435]: 2.407629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20436]: 2.407643125 - core[0].svIdle(17), plen 0: [] -EVENT[20437]: 2.407747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20438]: 2.407757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20439]: 2.407770775 - core[1].svIdle(17), plen 0: [] -EVENT[20440]: 2.408617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20441]: 2.408629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20442]: 2.408643125 - core[0].svIdle(17), plen 0: [] -EVENT[20443]: 2.408747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20444]: 2.408756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20445]: 2.408770600 - core[1].svIdle(17), plen 0: [] -EVENT[20446]: 2.409617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20447]: 2.409629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20448]: 2.409643250 - core[0].svIdle(17), plen 0: [] -EVENT[20449]: 2.409747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20450]: 2.409756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20451]: 2.409770600 - core[1].svIdle(17), plen 0: [] -EVENT[20452]: 2.410617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20453]: 2.410631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20454]: 2.410645550 - core[0].svIdle(17), plen 0: [] -EVENT[20455]: 2.410747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20456]: 2.410756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20457]: 2.410770600 - core[1].svIdle(17), plen 0: [] -EVENT[20458]: 2.411617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20459]: 2.411629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20460]: 2.411643125 - core[0].svIdle(17), plen 0: [] -EVENT[20461]: 2.411747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20462]: 2.411757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20463]: 2.411770775 - core[1].svIdle(17), plen 0: [] -EVENT[20464]: 2.412617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20465]: 2.412629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20466]: 2.412643125 - core[0].svIdle(17), plen 0: [] -EVENT[20467]: 2.412747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20468]: 2.412756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20469]: 2.412770600 - core[1].svIdle(17), plen 0: [] -EVENT[20470]: 2.413617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20471]: 2.413629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20472]: 2.413643250 - core[0].svIdle(17), plen 0: [] -EVENT[20473]: 2.413747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20474]: 2.413756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20475]: 2.413770600 - core[1].svIdle(17), plen 0: [] -EVENT[20476]: 2.414617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20477]: 2.414629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20478]: 2.414643175 - core[0].svIdle(17), plen 0: [] -EVENT[20479]: 2.414747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20480]: 2.414756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20481]: 2.414770600 - core[1].svIdle(17), plen 0: [] -EVENT[20482]: 2.415617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20483]: 2.415629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20484]: 2.415643125 - core[0].svIdle(17), plen 0: [] -EVENT[20485]: 2.415747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20486]: 2.415757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20487]: 2.415770775 - core[1].svIdle(17), plen 0: [] -EVENT[20488]: 2.416617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20489]: 2.416629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20490]: 2.416643125 - core[0].svIdle(17), plen 0: [] -EVENT[20491]: 2.416747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20492]: 2.416756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20493]: 2.416770600 - core[1].svIdle(17), plen 0: [] -EVENT[20494]: 2.417617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20495]: 2.417629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20496]: 2.417643250 - core[0].svIdle(17), plen 0: [] -EVENT[20497]: 2.417747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20498]: 2.417756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20499]: 2.417770600 - core[1].svIdle(17), plen 0: [] -EVENT[20500]: 2.418617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20501]: 2.418629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20502]: 2.418643175 - core[0].svIdle(17), plen 0: [] -EVENT[20503]: 2.418747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20504]: 2.418756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20505]: 2.418770600 - core[1].svIdle(17), plen 0: [] -EVENT[20506]: 2.419617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20507]: 2.419629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20508]: 2.419643125 - core[0].svIdle(17), plen 0: [] -EVENT[20509]: 2.419747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20510]: 2.419757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20511]: 2.419770775 - core[1].svIdle(17), plen 0: [] -EVENT[20512]: 2.420617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20513]: 2.420629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20514]: 2.420643125 - core[0].svIdle(17), plen 0: [] -EVENT[20515]: 2.420747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20516]: 2.420756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20517]: 2.420770600 - core[1].svIdle(17), plen 0: [] -EVENT[20518]: 2.421617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20519]: 2.421629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20520]: 2.421643250 - core[0].svIdle(17), plen 0: [] -EVENT[20521]: 2.421747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20522]: 2.421756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20523]: 2.421770600 - core[1].svIdle(17), plen 0: [] -EVENT[20524]: 2.422617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20525]: 2.422632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20526]: 2.422646225 - core[0].svIdle(17), plen 0: [] -EVENT[20527]: 2.422747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20528]: 2.422756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20529]: 2.422770600 - core[1].svIdle(17), plen 0: [] -EVENT[20530]: 2.423617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20531]: 2.423629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20532]: 2.423643125 - core[0].svIdle(17), plen 0: [] -EVENT[20533]: 2.423747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20534]: 2.423757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20535]: 2.423770775 - core[1].svIdle(17), plen 0: [] -EVENT[20536]: 2.424617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20537]: 2.424629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20538]: 2.424643125 - core[0].svIdle(17), plen 0: [] -EVENT[20539]: 2.424747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20540]: 2.424756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20541]: 2.424770600 - core[1].svIdle(17), plen 0: [] -EVENT[20542]: 2.425617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20543]: 2.425629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20544]: 2.425643250 - core[0].svIdle(17), plen 0: [] -EVENT[20545]: 2.425747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20546]: 2.425756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20547]: 2.425770600 - core[1].svIdle(17), plen 0: [] -EVENT[20548]: 2.426617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20549]: 2.426629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20550]: 2.426643175 - core[0].svIdle(17), plen 0: [] -EVENT[20551]: 2.426747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20552]: 2.426756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20553]: 2.426770600 - core[1].svIdle(17), plen 0: [] -EVENT[20554]: 2.427617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20555]: 2.427629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20556]: 2.427643125 - core[0].svIdle(17), plen 0: [] -EVENT[20557]: 2.427747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20558]: 2.427757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20559]: 2.427770775 - core[1].svIdle(17), plen 0: [] -EVENT[20560]: 2.428617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20561]: 2.428629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20562]: 2.428643125 - core[0].svIdle(17), plen 0: [] -EVENT[20563]: 2.428747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20564]: 2.428756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20565]: 2.428770600 - core[1].svIdle(17), plen 0: [] -EVENT[20566]: 2.429617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20567]: 2.429629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20568]: 2.429643250 - core[0].svIdle(17), plen 0: [] -EVENT[20569]: 2.429747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20570]: 2.429756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20571]: 2.429770600 - core[1].svIdle(17), plen 0: [] -EVENT[20572]: 2.430617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20573]: 2.430629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20574]: 2.430643175 - core[0].svIdle(17), plen 0: [] -EVENT[20575]: 2.430747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20576]: 2.430756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20577]: 2.430770600 - core[1].svIdle(17), plen 0: [] -EVENT[20578]: 2.431617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20579]: 2.431629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20580]: 2.431643125 - core[0].svIdle(17), plen 0: [] -EVENT[20581]: 2.431747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20582]: 2.431757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20583]: 2.431770775 - core[1].svIdle(17), plen 0: [] -EVENT[20584]: 2.432617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20585]: 2.432629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20586]: 2.432643125 - core[0].svIdle(17), plen 0: [] -EVENT[20587]: 2.432747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20588]: 2.432756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20589]: 2.432770600 - core[1].svIdle(17), plen 0: [] -EVENT[20590]: 2.433617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20591]: 2.433629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[20592]: 2.433638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20593]: 2.433652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[20594]: 2.433677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 164, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.433677000] HEAP: Allocated 164 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20595]: 2.433692100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20596]: 2.433706100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20597]: 2.433747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20598]: 2.433768375 - core[0].svPrint(26), plen 72: [msg: I (2760) example: Task[0x3ffb7f40]: allocated 164 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.433768375] LOG: I (2760) example: Task[0x3ffb7f40]: allocated 164 bytes @ 0x3ffb4b10 -EVENT[20599]: 2.433777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20600]: 2.433785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20601]: 2.433796400 - core[1].svIdle(17), plen 0: [] -EVENT[20602]: 2.433807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[20603]: 2.433820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20604]: 2.433828750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[20605]: 2.433836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20606]: 2.433845225 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[20607]: 2.433857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[20608]: 2.433866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[20609]: 2.433874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[20610]: 2.433883425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20611]: 2.433892825 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20612]: 2.433902100 - core[0].svIdle(17), plen 0: [] -EVENT[20613]: 2.433916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20614]: 2.433966175 - core[1].svPrint(26), plen 64: [msg: I (2760) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.433966175] LOG: I (2760) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[20615]: 2.433984575 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.433984575] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20616]: 2.434002575 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[20617]: 2.434015250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20618]: 2.434024050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20619]: 2.434039625 - core[1].svIdle(17), plen 0: [] -EVENT[20620]: 2.434617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20621]: 2.434629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[20622]: 2.434638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20623]: 2.434652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[20624]: 2.434677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 328, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.434677000] HEAP: Allocated 328 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20625]: 2.434689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20626]: 2.434703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20627]: 2.434747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20628]: 2.434769475 - core[0].svPrint(26), plen 72: [msg: I (2761) example: Task[0x3ffb82a0]: allocated 328 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.434769475] LOG: I (2761) example: Task[0x3ffb82a0]: allocated 328 bytes @ 0x3ffb4b10 -EVENT[20629]: 2.434781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20630]: 2.434789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20631]: 2.434800125 - core[1].svIdle(17), plen 0: [] -EVENT[20632]: 2.434810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[20633]: 2.434823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20634]: 2.434832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[20635]: 2.434840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20636]: 2.434849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[20637]: 2.434861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[20638]: 2.434870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[20639]: 2.434878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[20640]: 2.434887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20641]: 2.434896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20642]: 2.434905800 - core[0].svIdle(17), plen 0: [] -EVENT[20643]: 2.434920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20644]: 2.434969875 - core[1].svPrint(26), plen 64: [msg: I (2761) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.434969875] LOG: I (2761) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[20645]: 2.434985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.434985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20646]: 2.435005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[20647]: 2.435018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20648]: 2.435027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20649]: 2.435042900 - core[1].svIdle(17), plen 0: [] -EVENT[20650]: 2.435617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20651]: 2.435629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[20652]: 2.435638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20653]: 2.435652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[20654]: 2.435676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 492, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.435676975] HEAP: Allocated 492 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20655]: 2.435689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20656]: 2.435703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20657]: 2.435747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20658]: 2.435769450 - core[0].svPrint(26), plen 72: [msg: I (2762) example: Task[0x3ffb8600]: allocated 492 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.435769450] LOG: I (2762) example: Task[0x3ffb8600]: allocated 492 bytes @ 0x3ffb4b10 -EVENT[20659]: 2.435778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20660]: 2.435786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20661]: 2.435797075 - core[1].svIdle(17), plen 0: [] -EVENT[20662]: 2.435807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[20663]: 2.435820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20664]: 2.435829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[20665]: 2.435837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20666]: 2.435845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[20667]: 2.435858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[20668]: 2.435866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[20669]: 2.435879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[20670]: 2.435887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20671]: 2.435895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20672]: 2.435905800 - core[0].svIdle(17), plen 0: [] -EVENT[20673]: 2.435920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20674]: 2.435970075 - core[1].svPrint(26), plen 64: [msg: I (2762) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.435970075] LOG: I (2762) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[20675]: 2.435985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.435985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20676]: 2.436003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[20677]: 2.436016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20678]: 2.436025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20679]: 2.436040625 - core[1].svIdle(17), plen 0: [] -EVENT[20680]: 2.436617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20681]: 2.436629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20682]: 2.436643175 - core[0].svIdle(17), plen 0: [] -EVENT[20683]: 2.436747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20684]: 2.436756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20685]: 2.436770600 - core[1].svIdle(17), plen 0: [] -EVENT[20686]: 2.437617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20687]: 2.437629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20688]: 2.437643125 - core[0].svIdle(17), plen 0: [] -EVENT[20689]: 2.437747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20690]: 2.437757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20691]: 2.437770775 - core[1].svIdle(17), plen 0: [] -EVENT[20692]: 2.438617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20693]: 2.438629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20694]: 2.438643125 - core[0].svIdle(17), plen 0: [] -EVENT[20695]: 2.438747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20696]: 2.438756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20697]: 2.438770600 - core[1].svIdle(17), plen 0: [] -EVENT[20698]: 2.439617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20699]: 2.439629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20700]: 2.439643250 - core[0].svIdle(17), plen 0: [] -EVENT[20701]: 2.439747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20702]: 2.439756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20703]: 2.439770600 - core[1].svIdle(17), plen 0: [] -EVENT[20704]: 2.440617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20705]: 2.440631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20706]: 2.440645550 - core[0].svIdle(17), plen 0: [] -EVENT[20707]: 2.440747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20708]: 2.440756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20709]: 2.440770600 - core[1].svIdle(17), plen 0: [] -EVENT[20710]: 2.441617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20711]: 2.441629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20712]: 2.441643125 - core[0].svIdle(17), plen 0: [] -EVENT[20713]: 2.441747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20714]: 2.441757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20715]: 2.441770775 - core[1].svIdle(17), plen 0: [] -EVENT[20716]: 2.442617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20717]: 2.442629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20718]: 2.442643125 - core[0].svIdle(17), plen 0: [] -EVENT[20719]: 2.442747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20720]: 2.442756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20721]: 2.442770600 - core[1].svIdle(17), plen 0: [] -EVENT[20722]: 2.443617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20723]: 2.443629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20724]: 2.443643250 - core[0].svIdle(17), plen 0: [] -EVENT[20725]: 2.443747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20726]: 2.443756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20727]: 2.443770600 - core[1].svIdle(17), plen 0: [] -EVENT[20728]: 2.444617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20729]: 2.444629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20730]: 2.444643175 - core[0].svIdle(17), plen 0: [] -EVENT[20731]: 2.444747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20732]: 2.444756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20733]: 2.444770600 - core[1].svIdle(17), plen 0: [] -EVENT[20734]: 2.445617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20735]: 2.445629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20736]: 2.445643125 - core[0].svIdle(17), plen 0: [] -EVENT[20737]: 2.445747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20738]: 2.445757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20739]: 2.445770775 - core[1].svIdle(17), plen 0: [] -EVENT[20740]: 2.446617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20741]: 2.446629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20742]: 2.446643125 - core[0].svIdle(17), plen 0: [] -EVENT[20743]: 2.446747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20744]: 2.446756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20745]: 2.446770600 - core[1].svIdle(17), plen 0: [] -EVENT[20746]: 2.447617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20747]: 2.447629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20748]: 2.447643250 - core[0].svIdle(17), plen 0: [] -EVENT[20749]: 2.447747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20750]: 2.447756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20751]: 2.447770600 - core[1].svIdle(17), plen 0: [] -EVENT[20752]: 2.448617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20753]: 2.448629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20754]: 2.448643175 - core[0].svIdle(17), plen 0: [] -EVENT[20755]: 2.448747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20756]: 2.448756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20757]: 2.448770600 - core[1].svIdle(17), plen 0: [] -EVENT[20758]: 2.449617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20759]: 2.449629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20760]: 2.449643125 - core[0].svIdle(17), plen 0: [] -EVENT[20761]: 2.449747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20762]: 2.449757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20763]: 2.449770775 - core[1].svIdle(17), plen 0: [] -EVENT[20764]: 2.450617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20765]: 2.450629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20766]: 2.450643125 - core[0].svIdle(17), plen 0: [] -EVENT[20767]: 2.450747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20768]: 2.450756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20769]: 2.450770600 - core[1].svIdle(17), plen 0: [] -EVENT[20770]: 2.451617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20771]: 2.451629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20772]: 2.451643250 - core[0].svIdle(17), plen 0: [] -EVENT[20773]: 2.451747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20774]: 2.451756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20775]: 2.451770600 - core[1].svIdle(17), plen 0: [] -EVENT[20776]: 2.452617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20777]: 2.452632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20778]: 2.452646225 - core[0].svIdle(17), plen 0: [] -EVENT[20779]: 2.452747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20780]: 2.452756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20781]: 2.452770600 - core[1].svIdle(17), plen 0: [] -EVENT[20782]: 2.453617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20783]: 2.453629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20784]: 2.453643125 - core[0].svIdle(17), plen 0: [] -EVENT[20785]: 2.453747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20786]: 2.453757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20787]: 2.453770775 - core[1].svIdle(17), plen 0: [] -EVENT[20788]: 2.454617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20789]: 2.454629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20790]: 2.454643125 - core[0].svIdle(17), plen 0: [] -EVENT[20791]: 2.454747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20792]: 2.454756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20793]: 2.454770600 - core[1].svIdle(17), plen 0: [] -EVENT[20794]: 2.455617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20795]: 2.455629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20796]: 2.455643250 - core[0].svIdle(17), plen 0: [] -EVENT[20797]: 2.455747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20798]: 2.455756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20799]: 2.455770600 - core[1].svIdle(17), plen 0: [] -EVENT[20800]: 2.456617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20801]: 2.456629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20802]: 2.456643175 - core[0].svIdle(17), plen 0: [] -EVENT[20803]: 2.456747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20804]: 2.456756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20805]: 2.456770600 - core[1].svIdle(17), plen 0: [] -EVENT[20806]: 2.457617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20807]: 2.457629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20808]: 2.457643125 - core[0].svIdle(17), plen 0: [] -EVENT[20809]: 2.457747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20810]: 2.457757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20811]: 2.457770775 - core[1].svIdle(17), plen 0: [] -EVENT[20812]: 2.458617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20813]: 2.458629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20814]: 2.458643125 - core[0].svIdle(17), plen 0: [] -EVENT[20815]: 2.458747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20816]: 2.458756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20817]: 2.458770600 - core[1].svIdle(17), plen 0: [] -EVENT[20818]: 2.459617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20819]: 2.459629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20820]: 2.459643250 - core[0].svIdle(17), plen 0: [] -EVENT[20821]: 2.459747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20822]: 2.459756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20823]: 2.459770600 - core[1].svIdle(17), plen 0: [] -EVENT[20824]: 2.460617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20825]: 2.460629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20826]: 2.460643175 - core[0].svIdle(17), plen 0: [] -EVENT[20827]: 2.460747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20828]: 2.460756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20829]: 2.460770600 - core[1].svIdle(17), plen 0: [] -EVENT[20830]: 2.461617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20831]: 2.461629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20832]: 2.461643125 - core[0].svIdle(17), plen 0: [] -EVENT[20833]: 2.461747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20834]: 2.461757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20835]: 2.461770775 - core[1].svIdle(17), plen 0: [] -EVENT[20836]: 2.462617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20837]: 2.462629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20838]: 2.462643125 - core[0].svIdle(17), plen 0: [] -EVENT[20839]: 2.462747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20840]: 2.462756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20841]: 2.462770600 - core[1].svIdle(17), plen 0: [] -EVENT[20842]: 2.463617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20843]: 2.463629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[20844]: 2.463638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20845]: 2.463652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[20846]: 2.463677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 166, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.463677000] HEAP: Allocated 166 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20847]: 2.463692100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20848]: 2.463706100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20849]: 2.463747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20850]: 2.463768375 - core[0].svPrint(26), plen 72: [msg: I (2790) example: Task[0x3ffb7f40]: allocated 166 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.463768375] LOG: I (2790) example: Task[0x3ffb7f40]: allocated 166 bytes @ 0x3ffb4b10 -EVENT[20851]: 2.463777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20852]: 2.463785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20853]: 2.463796400 - core[1].svIdle(17), plen 0: [] -EVENT[20854]: 2.463807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[20855]: 2.463820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20856]: 2.463828750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[20857]: 2.463836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20858]: 2.463845225 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[20859]: 2.463857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[20860]: 2.463866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[20861]: 2.463874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[20862]: 2.463883425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20863]: 2.463892825 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20864]: 2.463902100 - core[0].svIdle(17), plen 0: [] -EVENT[20865]: 2.463916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20866]: 2.463966175 - core[1].svPrint(26), plen 64: [msg: I (2790) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.463966175] LOG: I (2790) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[20867]: 2.463984575 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.463984575] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20868]: 2.464002575 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[20869]: 2.464015250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20870]: 2.464024050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20871]: 2.464039625 - core[1].svIdle(17), plen 0: [] -EVENT[20872]: 2.464617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20873]: 2.464629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[20874]: 2.464638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20875]: 2.464652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[20876]: 2.464677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 332, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.464677000] HEAP: Allocated 332 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20877]: 2.464689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20878]: 2.464703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20879]: 2.464747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20880]: 2.464769475 - core[0].svPrint(26), plen 72: [msg: I (2791) example: Task[0x3ffb82a0]: allocated 332 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.464769475] LOG: I (2791) example: Task[0x3ffb82a0]: allocated 332 bytes @ 0x3ffb4b10 -EVENT[20881]: 2.464781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20882]: 2.464789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20883]: 2.464800125 - core[1].svIdle(17), plen 0: [] -EVENT[20884]: 2.464810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[20885]: 2.464823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20886]: 2.464832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[20887]: 2.464840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20888]: 2.464849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[20889]: 2.464861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[20890]: 2.464870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[20891]: 2.464878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[20892]: 2.464887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20893]: 2.464896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20894]: 2.464905800 - core[0].svIdle(17), plen 0: [] -EVENT[20895]: 2.464920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20896]: 2.464969875 - core[1].svPrint(26), plen 64: [msg: I (2791) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.464969875] LOG: I (2791) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[20897]: 2.464985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.464985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20898]: 2.465005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[20899]: 2.465018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20900]: 2.465027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20901]: 2.465042900 - core[1].svIdle(17), plen 0: [] -EVENT[20902]: 2.465617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20903]: 2.465629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[20904]: 2.465638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20905]: 2.465652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[20906]: 2.465676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 498, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.465676975] HEAP: Allocated 498 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20907]: 2.465689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20908]: 2.465703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20909]: 2.465747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20910]: 2.465769450 - core[0].svPrint(26), plen 72: [msg: I (2792) example: Task[0x3ffb8600]: allocated 498 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.465769450] LOG: I (2792) example: Task[0x3ffb8600]: allocated 498 bytes @ 0x3ffb4b10 -EVENT[20911]: 2.465778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20912]: 2.465786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20913]: 2.465797075 - core[1].svIdle(17), plen 0: [] -EVENT[20914]: 2.465807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[20915]: 2.465820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20916]: 2.465829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[20917]: 2.465837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20918]: 2.465845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[20919]: 2.465858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[20920]: 2.465866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[20921]: 2.465879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[20922]: 2.465887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20923]: 2.465895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[20924]: 2.465905800 - core[0].svIdle(17), plen 0: [] -EVENT[20925]: 2.465920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[20926]: 2.465970075 - core[1].svPrint(26), plen 64: [msg: I (2792) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.465970075] LOG: I (2792) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[20927]: 2.465985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.465985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[20928]: 2.466003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[20929]: 2.466016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[20930]: 2.466025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20931]: 2.466040625 - core[1].svIdle(17), plen 0: [] -EVENT[20932]: 2.466617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20933]: 2.466629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20934]: 2.466643175 - core[0].svIdle(17), plen 0: [] -EVENT[20935]: 2.466747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20936]: 2.466756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20937]: 2.466770600 - core[1].svIdle(17), plen 0: [] -EVENT[20938]: 2.467617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20939]: 2.467629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20940]: 2.467643125 - core[0].svIdle(17), plen 0: [] -EVENT[20941]: 2.467747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20942]: 2.467757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20943]: 2.467770775 - core[1].svIdle(17), plen 0: [] -EVENT[20944]: 2.468617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20945]: 2.468629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20946]: 2.468643125 - core[0].svIdle(17), plen 0: [] -EVENT[20947]: 2.468747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20948]: 2.468756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20949]: 2.468770600 - core[1].svIdle(17), plen 0: [] -EVENT[20950]: 2.469617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20951]: 2.469629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20952]: 2.469643250 - core[0].svIdle(17), plen 0: [] -EVENT[20953]: 2.469747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20954]: 2.469756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20955]: 2.469770600 - core[1].svIdle(17), plen 0: [] -EVENT[20956]: 2.470617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20957]: 2.470631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20958]: 2.470645550 - core[0].svIdle(17), plen 0: [] -EVENT[20959]: 2.470747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20960]: 2.470756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20961]: 2.470770600 - core[1].svIdle(17), plen 0: [] -EVENT[20962]: 2.471617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20963]: 2.471629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20964]: 2.471643125 - core[0].svIdle(17), plen 0: [] -EVENT[20965]: 2.471747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20966]: 2.471757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20967]: 2.471770775 - core[1].svIdle(17), plen 0: [] -EVENT[20968]: 2.472617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20969]: 2.472629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20970]: 2.472643125 - core[0].svIdle(17), plen 0: [] -EVENT[20971]: 2.472747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20972]: 2.472756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20973]: 2.472770600 - core[1].svIdle(17), plen 0: [] -EVENT[20974]: 2.473617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20975]: 2.473629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20976]: 2.473643250 - core[0].svIdle(17), plen 0: [] -EVENT[20977]: 2.473747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20978]: 2.473756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20979]: 2.473770600 - core[1].svIdle(17), plen 0: [] -EVENT[20980]: 2.474617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20981]: 2.474629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20982]: 2.474643175 - core[0].svIdle(17), plen 0: [] -EVENT[20983]: 2.474747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20984]: 2.474756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20985]: 2.474770600 - core[1].svIdle(17), plen 0: [] -EVENT[20986]: 2.475617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20987]: 2.475629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20988]: 2.475643125 - core[0].svIdle(17), plen 0: [] -EVENT[20989]: 2.475747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20990]: 2.475757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20991]: 2.475770775 - core[1].svIdle(17), plen 0: [] -EVENT[20992]: 2.476617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20993]: 2.476629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[20994]: 2.476643125 - core[0].svIdle(17), plen 0: [] -EVENT[20995]: 2.476747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20996]: 2.476756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[20997]: 2.476770600 - core[1].svIdle(17), plen 0: [] -EVENT[20998]: 2.477617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[20999]: 2.477629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21000]: 2.477643250 - core[0].svIdle(17), plen 0: [] -EVENT[21001]: 2.477747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21002]: 2.477756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21003]: 2.477770600 - core[1].svIdle(17), plen 0: [] -EVENT[21004]: 2.478617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21005]: 2.478629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21006]: 2.478643175 - core[0].svIdle(17), plen 0: [] -EVENT[21007]: 2.478747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21008]: 2.478756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21009]: 2.478770600 - core[1].svIdle(17), plen 0: [] -EVENT[21010]: 2.479617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21011]: 2.479629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21012]: 2.479643125 - core[0].svIdle(17), plen 0: [] -EVENT[21013]: 2.479747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21014]: 2.479757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21015]: 2.479770775 - core[1].svIdle(17), plen 0: [] -EVENT[21016]: 2.480617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21017]: 2.480629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21018]: 2.480643125 - core[0].svIdle(17), plen 0: [] -EVENT[21019]: 2.480747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21020]: 2.480756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21021]: 2.480770600 - core[1].svIdle(17), plen 0: [] -EVENT[21022]: 2.481617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21023]: 2.481629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21024]: 2.481643250 - core[0].svIdle(17), plen 0: [] -EVENT[21025]: 2.481747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21026]: 2.481756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21027]: 2.481770600 - core[1].svIdle(17), plen 0: [] -EVENT[21028]: 2.482617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21029]: 2.482632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21030]: 2.482646225 - core[0].svIdle(17), plen 0: [] -EVENT[21031]: 2.482747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21032]: 2.482756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21033]: 2.482770600 - core[1].svIdle(17), plen 0: [] -EVENT[21034]: 2.483617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21035]: 2.483629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21036]: 2.483643125 - core[0].svIdle(17), plen 0: [] -EVENT[21037]: 2.483747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21038]: 2.483757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21039]: 2.483770775 - core[1].svIdle(17), plen 0: [] -EVENT[21040]: 2.484617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21041]: 2.484629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21042]: 2.484643125 - core[0].svIdle(17), plen 0: [] -EVENT[21043]: 2.484747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21044]: 2.484756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21045]: 2.484770600 - core[1].svIdle(17), plen 0: [] -EVENT[21046]: 2.485617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21047]: 2.485629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21048]: 2.485643250 - core[0].svIdle(17), plen 0: [] -EVENT[21049]: 2.485747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21050]: 2.485756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21051]: 2.485770600 - core[1].svIdle(17), plen 0: [] -EVENT[21052]: 2.486617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21053]: 2.486629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21054]: 2.486643175 - core[0].svIdle(17), plen 0: [] -EVENT[21055]: 2.486747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21056]: 2.486756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21057]: 2.486770600 - core[1].svIdle(17), plen 0: [] -EVENT[21058]: 2.487617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21059]: 2.487629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21060]: 2.487643125 - core[0].svIdle(17), plen 0: [] -EVENT[21061]: 2.487747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21062]: 2.487757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21063]: 2.487770775 - core[1].svIdle(17), plen 0: [] -EVENT[21064]: 2.488617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21065]: 2.488629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21066]: 2.488643125 - core[0].svIdle(17), plen 0: [] -EVENT[21067]: 2.488747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21068]: 2.488756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21069]: 2.488770600 - core[1].svIdle(17), plen 0: [] -EVENT[21070]: 2.489617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21071]: 2.489629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21072]: 2.489643250 - core[0].svIdle(17), plen 0: [] -EVENT[21073]: 2.489747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21074]: 2.489756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21075]: 2.489770600 - core[1].svIdle(17), plen 0: [] -EVENT[21076]: 2.490617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21077]: 2.490629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21078]: 2.490643175 - core[0].svIdle(17), plen 0: [] -EVENT[21079]: 2.490747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21080]: 2.490756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21081]: 2.490770600 - core[1].svIdle(17), plen 0: [] -EVENT[21082]: 2.491617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21083]: 2.491629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21084]: 2.491643125 - core[0].svIdle(17), plen 0: [] -EVENT[21085]: 2.491747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21086]: 2.491757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21087]: 2.491770775 - core[1].svIdle(17), plen 0: [] -EVENT[21088]: 2.492617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21089]: 2.492629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21090]: 2.492643125 - core[0].svIdle(17), plen 0: [] -EVENT[21091]: 2.492747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21092]: 2.492756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21093]: 2.492770600 - core[1].svIdle(17), plen 0: [] -EVENT[21094]: 2.493617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21095]: 2.493629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[21096]: 2.493638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21097]: 2.493652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[21098]: 2.493677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 168, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.493677000] HEAP: Allocated 168 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21099]: 2.493692100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21100]: 2.493706100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21101]: 2.493747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21102]: 2.493768375 - core[0].svPrint(26), plen 72: [msg: I (2820) example: Task[0x3ffb7f40]: allocated 168 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.493768375] LOG: I (2820) example: Task[0x3ffb7f40]: allocated 168 bytes @ 0x3ffb4b10 -EVENT[21103]: 2.493777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21104]: 2.493785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21105]: 2.493796400 - core[1].svIdle(17), plen 0: [] -EVENT[21106]: 2.493807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[21107]: 2.493820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21108]: 2.493828750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[21109]: 2.493836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21110]: 2.493845225 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[21111]: 2.493857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[21112]: 2.493866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[21113]: 2.493874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[21114]: 2.493883425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21115]: 2.493892825 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21116]: 2.493902100 - core[0].svIdle(17), plen 0: [] -EVENT[21117]: 2.493916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21118]: 2.493966175 - core[1].svPrint(26), plen 64: [msg: I (2820) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.493966175] LOG: I (2820) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[21119]: 2.493984575 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.493984575] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21120]: 2.494002575 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[21121]: 2.494015250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21122]: 2.494024050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21123]: 2.494039625 - core[1].svIdle(17), plen 0: [] -EVENT[21124]: 2.494617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21125]: 2.494629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[21126]: 2.494638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21127]: 2.494652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[21128]: 2.494677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 336, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.494677000] HEAP: Allocated 336 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21129]: 2.494689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21130]: 2.494703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21131]: 2.494747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21132]: 2.494769475 - core[0].svPrint(26), plen 72: [msg: I (2821) example: Task[0x3ffb82a0]: allocated 336 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.494769475] LOG: I (2821) example: Task[0x3ffb82a0]: allocated 336 bytes @ 0x3ffb4b10 -EVENT[21133]: 2.494781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21134]: 2.494789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21135]: 2.494800125 - core[1].svIdle(17), plen 0: [] -EVENT[21136]: 2.494810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[21137]: 2.494823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21138]: 2.494832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[21139]: 2.494840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21140]: 2.494849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[21141]: 2.494861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[21142]: 2.494870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[21143]: 2.494878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[21144]: 2.494887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21145]: 2.494896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21146]: 2.494905800 - core[0].svIdle(17), plen 0: [] -EVENT[21147]: 2.494920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21148]: 2.494969875 - core[1].svPrint(26), plen 64: [msg: I (2821) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.494969875] LOG: I (2821) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[21149]: 2.494985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.494985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21150]: 2.495005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[21151]: 2.495018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21152]: 2.495027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21153]: 2.495042900 - core[1].svIdle(17), plen 0: [] -EVENT[21154]: 2.495617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21155]: 2.495629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[21156]: 2.495638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21157]: 2.495652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[21158]: 2.495676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 504, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.495676975] HEAP: Allocated 504 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21159]: 2.495689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21160]: 2.495703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21161]: 2.495747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21162]: 2.495769450 - core[0].svPrint(26), plen 72: [msg: I (2822) example: Task[0x3ffb8600]: allocated 504 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.495769450] LOG: I (2822) example: Task[0x3ffb8600]: allocated 504 bytes @ 0x3ffb4b10 -EVENT[21163]: 2.495778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21164]: 2.495786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21165]: 2.495797075 - core[1].svIdle(17), plen 0: [] -EVENT[21166]: 2.495807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[21167]: 2.495820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21168]: 2.495829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[21169]: 2.495837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21170]: 2.495845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[21171]: 2.495858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[21172]: 2.495866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[21173]: 2.495879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[21174]: 2.495887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21175]: 2.495895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21176]: 2.495905800 - core[0].svIdle(17), plen 0: [] -EVENT[21177]: 2.495920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21178]: 2.495970075 - core[1].svPrint(26), plen 64: [msg: I (2822) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.495970075] LOG: I (2822) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[21179]: 2.495985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.495985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21180]: 2.496003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[21181]: 2.496016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21182]: 2.496025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21183]: 2.496040625 - core[1].svIdle(17), plen 0: [] -EVENT[21184]: 2.496617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21185]: 2.496629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21186]: 2.496643175 - core[0].svIdle(17), plen 0: [] -EVENT[21187]: 2.496747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21188]: 2.496756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21189]: 2.496770600 - core[1].svIdle(17), plen 0: [] -EVENT[21190]: 2.497617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21191]: 2.497629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21192]: 2.497643125 - core[0].svIdle(17), plen 0: [] -EVENT[21193]: 2.497747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21194]: 2.497757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21195]: 2.497770775 - core[1].svIdle(17), plen 0: [] -EVENT[21196]: 2.498617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21197]: 2.498629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21198]: 2.498643125 - core[0].svIdle(17), plen 0: [] -EVENT[21199]: 2.498747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21200]: 2.498756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21201]: 2.498770600 - core[1].svIdle(17), plen 0: [] -EVENT[21202]: 2.499617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21203]: 2.499629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21204]: 2.499643250 - core[0].svIdle(17), plen 0: [] -EVENT[21205]: 2.499747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21206]: 2.499756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21207]: 2.499770600 - core[1].svIdle(17), plen 0: [] -EVENT[21208]: 2.500617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21209]: 2.500631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21210]: 2.500645550 - core[0].svIdle(17), plen 0: [] -EVENT[21211]: 2.500747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21212]: 2.500756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21213]: 2.500770600 - core[1].svIdle(17), plen 0: [] -EVENT[21214]: 2.501617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21215]: 2.501629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21216]: 2.501643125 - core[0].svIdle(17), plen 0: [] -EVENT[21217]: 2.501747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21218]: 2.501757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21219]: 2.501770775 - core[1].svIdle(17), plen 0: [] -EVENT[21220]: 2.502617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21221]: 2.502629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21222]: 2.502643125 - core[0].svIdle(17), plen 0: [] -EVENT[21223]: 2.502747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21224]: 2.502756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21225]: 2.502770600 - core[1].svIdle(17), plen 0: [] -EVENT[21226]: 2.503617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21227]: 2.503629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21228]: 2.503643250 - core[0].svIdle(17), plen 0: [] -EVENT[21229]: 2.503747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21230]: 2.503756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21231]: 2.503770600 - core[1].svIdle(17), plen 0: [] -EVENT[21232]: 2.504617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21233]: 2.504629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21234]: 2.504643175 - core[0].svIdle(17), plen 0: [] -EVENT[21235]: 2.504747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21236]: 2.504756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21237]: 2.504770600 - core[1].svIdle(17), plen 0: [] -EVENT[21238]: 2.505617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21239]: 2.505629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21240]: 2.505643125 - core[0].svIdle(17), plen 0: [] -EVENT[21241]: 2.505747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21242]: 2.505757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21243]: 2.505770775 - core[1].svIdle(17), plen 0: [] -EVENT[21244]: 2.506617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21245]: 2.506629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21246]: 2.506643125 - core[0].svIdle(17), plen 0: [] -EVENT[21247]: 2.506747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21248]: 2.506756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21249]: 2.506770600 - core[1].svIdle(17), plen 0: [] -EVENT[21250]: 2.507617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21251]: 2.507629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21252]: 2.507643250 - core[0].svIdle(17), plen 0: [] -EVENT[21253]: 2.507747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21254]: 2.507756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21255]: 2.507770600 - core[1].svIdle(17), plen 0: [] -EVENT[21256]: 2.508617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21257]: 2.508629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21258]: 2.508643175 - core[0].svIdle(17), plen 0: [] -EVENT[21259]: 2.508747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21260]: 2.508756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21261]: 2.508770600 - core[1].svIdle(17), plen 0: [] -EVENT[21262]: 2.509617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21263]: 2.509629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21264]: 2.509643125 - core[0].svIdle(17), plen 0: [] -EVENT[21265]: 2.509747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21266]: 2.509757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21267]: 2.509770775 - core[1].svIdle(17), plen 0: [] -EVENT[21268]: 2.510617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21269]: 2.510629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21270]: 2.510643125 - core[0].svIdle(17), plen 0: [] -EVENT[21271]: 2.510747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21272]: 2.510756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21273]: 2.510770600 - core[1].svIdle(17), plen 0: [] -EVENT[21274]: 2.511617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21275]: 2.511629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21276]: 2.511643250 - core[0].svIdle(17), plen 0: [] -EVENT[21277]: 2.511747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21278]: 2.511756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21279]: 2.511770600 - core[1].svIdle(17), plen 0: [] -EVENT[21280]: 2.512617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21281]: 2.512632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21282]: 2.512646225 - core[0].svIdle(17), plen 0: [] -EVENT[21283]: 2.512747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21284]: 2.512756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21285]: 2.512770600 - core[1].svIdle(17), plen 0: [] -EVENT[21286]: 2.513617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21287]: 2.513629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21288]: 2.513643125 - core[0].svIdle(17), plen 0: [] -EVENT[21289]: 2.513747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21290]: 2.513757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21291]: 2.513770775 - core[1].svIdle(17), plen 0: [] -EVENT[21292]: 2.514617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21293]: 2.514629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21294]: 2.514643125 - core[0].svIdle(17), plen 0: [] -EVENT[21295]: 2.514747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21296]: 2.514756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21297]: 2.514770600 - core[1].svIdle(17), plen 0: [] -EVENT[21298]: 2.515617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21299]: 2.515629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21300]: 2.515643250 - core[0].svIdle(17), plen 0: [] -EVENT[21301]: 2.515747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21302]: 2.515756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21303]: 2.515770600 - core[1].svIdle(17), plen 0: [] -EVENT[21304]: 2.516617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21305]: 2.516629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21306]: 2.516643175 - core[0].svIdle(17), plen 0: [] -EVENT[21307]: 2.516747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21308]: 2.516756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21309]: 2.516770600 - core[1].svIdle(17), plen 0: [] -EVENT[21310]: 2.517617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21311]: 2.517629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21312]: 2.517643125 - core[0].svIdle(17), plen 0: [] -EVENT[21313]: 2.517747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21314]: 2.517757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21315]: 2.517770775 - core[1].svIdle(17), plen 0: [] -EVENT[21316]: 2.518617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21317]: 2.518629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21318]: 2.518643125 - core[0].svIdle(17), plen 0: [] -EVENT[21319]: 2.518747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21320]: 2.518756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21321]: 2.518770600 - core[1].svIdle(17), plen 0: [] -EVENT[21322]: 2.519617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21323]: 2.519629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21324]: 2.519643250 - core[0].svIdle(17), plen 0: [] -EVENT[21325]: 2.519747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21326]: 2.519756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21327]: 2.519770600 - core[1].svIdle(17), plen 0: [] -EVENT[21328]: 2.520617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21329]: 2.520629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21330]: 2.520643175 - core[0].svIdle(17), plen 0: [] -EVENT[21331]: 2.520747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21332]: 2.520756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21333]: 2.520770600 - core[1].svIdle(17), plen 0: [] -EVENT[21334]: 2.521617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21335]: 2.521629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21336]: 2.521643125 - core[0].svIdle(17), plen 0: [] -EVENT[21337]: 2.521747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21338]: 2.521757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21339]: 2.521770775 - core[1].svIdle(17), plen 0: [] -EVENT[21340]: 2.522617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21341]: 2.522629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21342]: 2.522643125 - core[0].svIdle(17), plen 0: [] -EVENT[21343]: 2.522747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21344]: 2.522756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21345]: 2.522770600 - core[1].svIdle(17), plen 0: [] -EVENT[21346]: 2.523617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21347]: 2.523629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[21348]: 2.523638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21349]: 2.523652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[21350]: 2.523677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 170, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.523677000] HEAP: Allocated 170 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21351]: 2.523692100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21352]: 2.523706100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21353]: 2.523747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21354]: 2.523768375 - core[0].svPrint(26), plen 72: [msg: I (2850) example: Task[0x3ffb7f40]: allocated 170 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.523768375] LOG: I (2850) example: Task[0x3ffb7f40]: allocated 170 bytes @ 0x3ffb4b10 -EVENT[21355]: 2.523777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21356]: 2.523785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21357]: 2.523796400 - core[1].svIdle(17), plen 0: [] -EVENT[21358]: 2.523807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[21359]: 2.523820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21360]: 2.523828750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[21361]: 2.523836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21362]: 2.523845225 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[21363]: 2.523857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[21364]: 2.523866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[21365]: 2.523874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[21366]: 2.523883425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21367]: 2.523892825 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21368]: 2.523902100 - core[0].svIdle(17), plen 0: [] -EVENT[21369]: 2.523916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21370]: 2.523966175 - core[1].svPrint(26), plen 64: [msg: I (2850) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.523966175] LOG: I (2850) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[21371]: 2.523984575 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.523984575] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21372]: 2.524002575 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[21373]: 2.524015250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21374]: 2.524024050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21375]: 2.524039625 - core[1].svIdle(17), plen 0: [] -EVENT[21376]: 2.524617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21377]: 2.524629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[21378]: 2.524638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21379]: 2.524652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[21380]: 2.524677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 340, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.524677000] HEAP: Allocated 340 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21381]: 2.524689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21382]: 2.524703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21383]: 2.524747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21384]: 2.524769475 - core[0].svPrint(26), plen 72: [msg: I (2851) example: Task[0x3ffb82a0]: allocated 340 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.524769475] LOG: I (2851) example: Task[0x3ffb82a0]: allocated 340 bytes @ 0x3ffb4b10 -EVENT[21385]: 2.524781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21386]: 2.524789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21387]: 2.524800125 - core[1].svIdle(17), plen 0: [] -EVENT[21388]: 2.524810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[21389]: 2.524823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21390]: 2.524832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[21391]: 2.524840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21392]: 2.524849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[21393]: 2.524861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[21394]: 2.524870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[21395]: 2.524878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[21396]: 2.524887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21397]: 2.524896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21398]: 2.524905800 - core[0].svIdle(17), plen 0: [] -EVENT[21399]: 2.524920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21400]: 2.524969875 - core[1].svPrint(26), plen 64: [msg: I (2851) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.524969875] LOG: I (2851) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[21401]: 2.524985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.524985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21402]: 2.525007925 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[21403]: 2.525020600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21404]: 2.525029400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21405]: 2.525044975 - core[1].svIdle(17), plen 0: [] -EVENT[21406]: 2.525617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21407]: 2.525629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[21408]: 2.525638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21409]: 2.525652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[21410]: 2.525676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 510, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.525676975] HEAP: Allocated 510 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21411]: 2.525689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21412]: 2.525703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21413]: 2.525747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21414]: 2.525769450 - core[0].svPrint(26), plen 72: [msg: I (2852) example: Task[0x3ffb8600]: allocated 510 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.525769450] LOG: I (2852) example: Task[0x3ffb8600]: allocated 510 bytes @ 0x3ffb4b10 -EVENT[21415]: 2.525778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21416]: 2.525786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21417]: 2.525797075 - core[1].svIdle(17), plen 0: [] -EVENT[21418]: 2.525807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[21419]: 2.525820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21420]: 2.525829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[21421]: 2.525837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21422]: 2.525845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[21423]: 2.525858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[21424]: 2.525866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[21425]: 2.525879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[21426]: 2.525887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21427]: 2.525895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21428]: 2.525905825 - core[0].svIdle(17), plen 0: [] -EVENT[21429]: 2.525920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21430]: 2.525970100 - core[1].svPrint(26), plen 64: [msg: I (2852) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.525970100] LOG: I (2852) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[21431]: 2.525985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.525985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21432]: 2.526003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[21433]: 2.526016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21434]: 2.526025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21435]: 2.526040650 - core[1].svIdle(17), plen 0: [] -EVENT[21436]: 2.526617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21437]: 2.526629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21438]: 2.526643175 - core[0].svIdle(17), plen 0: [] -EVENT[21439]: 2.526747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21440]: 2.526756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21441]: 2.526770600 - core[1].svIdle(17), plen 0: [] -EVENT[21442]: 2.527617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21443]: 2.527629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21444]: 2.527643125 - core[0].svIdle(17), plen 0: [] -EVENT[21445]: 2.527747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21446]: 2.527757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21447]: 2.527770775 - core[1].svIdle(17), plen 0: [] -EVENT[21448]: 2.528617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21449]: 2.528629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21450]: 2.528643125 - core[0].svIdle(17), plen 0: [] -EVENT[21451]: 2.528747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21452]: 2.528756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21453]: 2.528770600 - core[1].svIdle(17), plen 0: [] -EVENT[21454]: 2.529617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21455]: 2.529629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21456]: 2.529643250 - core[0].svIdle(17), plen 0: [] -EVENT[21457]: 2.529747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21458]: 2.529756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21459]: 2.529770600 - core[1].svIdle(17), plen 0: [] -EVENT[21460]: 2.530617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21461]: 2.530632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21462]: 2.530646225 - core[0].svIdle(17), plen 0: [] -EVENT[21463]: 2.530747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21464]: 2.530756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21465]: 2.530770600 - core[1].svIdle(17), plen 0: [] -EVENT[21466]: 2.531617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21467]: 2.531629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21468]: 2.531643125 - core[0].svIdle(17), plen 0: [] -EVENT[21469]: 2.531747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21470]: 2.531757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21471]: 2.531770775 - core[1].svIdle(17), plen 0: [] -EVENT[21472]: 2.532617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21473]: 2.532629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21474]: 2.532643125 - core[0].svIdle(17), plen 0: [] -EVENT[21475]: 2.532747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21476]: 2.532756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21477]: 2.532770600 - core[1].svIdle(17), plen 0: [] -EVENT[21478]: 2.533617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21479]: 2.533629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21480]: 2.533643250 - core[0].svIdle(17), plen 0: [] -EVENT[21481]: 2.533747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21482]: 2.533756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21483]: 2.533770600 - core[1].svIdle(17), plen 0: [] -EVENT[21484]: 2.534617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21485]: 2.534629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21486]: 2.534643175 - core[0].svIdle(17), plen 0: [] -EVENT[21487]: 2.534747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21488]: 2.534756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21489]: 2.534770600 - core[1].svIdle(17), plen 0: [] -EVENT[21490]: 2.535617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21491]: 2.535629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21492]: 2.535643125 - core[0].svIdle(17), plen 0: [] -EVENT[21493]: 2.535747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21494]: 2.535757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21495]: 2.535770775 - core[1].svIdle(17), plen 0: [] -EVENT[21496]: 2.536617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21497]: 2.536629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21498]: 2.536643125 - core[0].svIdle(17), plen 0: [] -EVENT[21499]: 2.536747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21500]: 2.536756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21501]: 2.536770600 - core[1].svIdle(17), plen 0: [] -EVENT[21502]: 2.537617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21503]: 2.537629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21504]: 2.537643250 - core[0].svIdle(17), plen 0: [] -EVENT[21505]: 2.537747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21506]: 2.537756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21507]: 2.537770600 - core[1].svIdle(17), plen 0: [] -EVENT[21508]: 2.538617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21509]: 2.538629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21510]: 2.538643175 - core[0].svIdle(17), plen 0: [] -EVENT[21511]: 2.538747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21512]: 2.538756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21513]: 2.538770600 - core[1].svIdle(17), plen 0: [] -EVENT[21514]: 2.539617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21515]: 2.539629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21516]: 2.539643125 - core[0].svIdle(17), plen 0: [] -EVENT[21517]: 2.539747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21518]: 2.539757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21519]: 2.539770775 - core[1].svIdle(17), plen 0: [] -EVENT[21520]: 2.540617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21521]: 2.540629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21522]: 2.540643125 - core[0].svIdle(17), plen 0: [] -EVENT[21523]: 2.540747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21524]: 2.540756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21525]: 2.540770600 - core[1].svIdle(17), plen 0: [] -EVENT[21526]: 2.541617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21527]: 2.541629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21528]: 2.541643250 - core[0].svIdle(17), plen 0: [] -EVENT[21529]: 2.541747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21530]: 2.541756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21531]: 2.541770600 - core[1].svIdle(17), plen 0: [] -EVENT[21532]: 2.542617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21533]: 2.542631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21534]: 2.542645550 - core[0].svIdle(17), plen 0: [] -EVENT[21535]: 2.542747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21536]: 2.542756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21537]: 2.542770600 - core[1].svIdle(17), plen 0: [] -EVENT[21538]: 2.543617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21539]: 2.543629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21540]: 2.543643125 - core[0].svIdle(17), plen 0: [] -EVENT[21541]: 2.543747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21542]: 2.543757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21543]: 2.543770775 - core[1].svIdle(17), plen 0: [] -EVENT[21544]: 2.544617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21545]: 2.544629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21546]: 2.544643125 - core[0].svIdle(17), plen 0: [] -EVENT[21547]: 2.544747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21548]: 2.544756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21549]: 2.544770600 - core[1].svIdle(17), plen 0: [] -EVENT[21550]: 2.545617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21551]: 2.545629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21552]: 2.545643250 - core[0].svIdle(17), plen 0: [] -EVENT[21553]: 2.545747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21554]: 2.545756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21555]: 2.545770600 - core[1].svIdle(17), plen 0: [] -EVENT[21556]: 2.546617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21557]: 2.546629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21558]: 2.546643175 - core[0].svIdle(17), plen 0: [] -EVENT[21559]: 2.546747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21560]: 2.546756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21561]: 2.546770600 - core[1].svIdle(17), plen 0: [] -EVENT[21562]: 2.547617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21563]: 2.547629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21564]: 2.547643125 - core[0].svIdle(17), plen 0: [] -EVENT[21565]: 2.547747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21566]: 2.547757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21567]: 2.547770775 - core[1].svIdle(17), plen 0: [] -EVENT[21568]: 2.548617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21569]: 2.548629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21570]: 2.548643125 - core[0].svIdle(17), plen 0: [] -EVENT[21571]: 2.548747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21572]: 2.548756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21573]: 2.548770600 - core[1].svIdle(17), plen 0: [] -EVENT[21574]: 2.549617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21575]: 2.549629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21576]: 2.549643250 - core[0].svIdle(17), plen 0: [] -EVENT[21577]: 2.549747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21578]: 2.549756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21579]: 2.549770600 - core[1].svIdle(17), plen 0: [] -EVENT[21580]: 2.550617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21581]: 2.550629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21582]: 2.550643175 - core[0].svIdle(17), plen 0: [] -EVENT[21583]: 2.550747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21584]: 2.550756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21585]: 2.550770600 - core[1].svIdle(17), plen 0: [] -EVENT[21586]: 2.551617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21587]: 2.551629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21588]: 2.551643125 - core[0].svIdle(17), plen 0: [] -EVENT[21589]: 2.551747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21590]: 2.551757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21591]: 2.551770775 - core[1].svIdle(17), plen 0: [] -EVENT[21592]: 2.552617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21593]: 2.552629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21594]: 2.552643125 - core[0].svIdle(17), plen 0: [] -EVENT[21595]: 2.552747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21596]: 2.552756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21597]: 2.552770600 - core[1].svIdle(17), plen 0: [] -EVENT[21598]: 2.553617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21599]: 2.553629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[21600]: 2.553638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21601]: 2.553652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[21602]: 2.553677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 172, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.553677000] HEAP: Allocated 172 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21603]: 2.553692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21604]: 2.553706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21605]: 2.553747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21606]: 2.553768950 - core[0].svPrint(26), plen 72: [msg: I (2880) example: Task[0x3ffb7f40]: allocated 172 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.553768950] LOG: I (2880) example: Task[0x3ffb7f40]: allocated 172 bytes @ 0x3ffb4b10 -EVENT[21607]: 2.553777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21608]: 2.553785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21609]: 2.553795925 - core[1].svIdle(17), plen 0: [] -EVENT[21610]: 2.553806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[21611]: 2.553819725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21612]: 2.553828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[21613]: 2.553836200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21614]: 2.553844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[21615]: 2.553857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[21616]: 2.553865750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[21617]: 2.553874050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[21618]: 2.553882925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21619]: 2.553892325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21620]: 2.553901625 - core[0].svIdle(17), plen 0: [] -EVENT[21621]: 2.553916450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21622]: 2.553965700 - core[1].svPrint(26), plen 64: [msg: I (2880) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.553965700] LOG: I (2880) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[21623]: 2.553984175 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.553984175] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21624]: 2.554002175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[21625]: 2.554014850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21626]: 2.554023650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21627]: 2.554039225 - core[1].svIdle(17), plen 0: [] -EVENT[21628]: 2.554617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21629]: 2.554629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[21630]: 2.554638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21631]: 2.554652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[21632]: 2.554677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 344, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.554677000] HEAP: Allocated 344 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21633]: 2.554689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21634]: 2.554703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21635]: 2.554747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21636]: 2.554769475 - core[0].svPrint(26), plen 72: [msg: I (2881) example: Task[0x3ffb82a0]: allocated 344 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.554769475] LOG: I (2881) example: Task[0x3ffb82a0]: allocated 344 bytes @ 0x3ffb4b10 -EVENT[21637]: 2.554780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21638]: 2.554789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21639]: 2.554798950 - core[1].svIdle(17), plen 0: [] -EVENT[21640]: 2.554809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[21641]: 2.554822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21642]: 2.554831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[21643]: 2.554839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21644]: 2.554847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[21645]: 2.554860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[21646]: 2.554868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[21647]: 2.554877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[21648]: 2.554886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21649]: 2.554895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21650]: 2.554904625 - core[0].svIdle(17), plen 0: [] -EVENT[21651]: 2.554919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21652]: 2.554968700 - core[1].svPrint(26), plen 64: [msg: I (2881) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.554968700] LOG: I (2881) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[21653]: 2.554984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.554984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21654]: 2.555005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[21655]: 2.555018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21656]: 2.555026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21657]: 2.555042425 - core[1].svIdle(17), plen 0: [] -EVENT[21658]: 2.555617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21659]: 2.555629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[21660]: 2.555638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21661]: 2.555652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[21662]: 2.555676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 516, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.555676975] HEAP: Allocated 516 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21663]: 2.555689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21664]: 2.555703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21665]: 2.555747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21666]: 2.555769450 - core[0].svPrint(26), plen 72: [msg: I (2882) example: Task[0x3ffb8600]: allocated 516 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.555769450] LOG: I (2882) example: Task[0x3ffb8600]: allocated 516 bytes @ 0x3ffb4b10 -EVENT[21667]: 2.555778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21668]: 2.555786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21669]: 2.555797075 - core[1].svIdle(17), plen 0: [] -EVENT[21670]: 2.555807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[21671]: 2.555820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21672]: 2.555829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[21673]: 2.555837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21674]: 2.555845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[21675]: 2.555858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[21676]: 2.555866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[21677]: 2.555879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[21678]: 2.555887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21679]: 2.555895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21680]: 2.555905825 - core[0].svIdle(17), plen 0: [] -EVENT[21681]: 2.555920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21682]: 2.555970100 - core[1].svPrint(26), plen 64: [msg: I (2882) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.555970100] LOG: I (2882) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[21683]: 2.555985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.555985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21684]: 2.556003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[21685]: 2.556016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21686]: 2.556025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21687]: 2.556040650 - core[1].svIdle(17), plen 0: [] -EVENT[21688]: 2.556617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21689]: 2.556629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21690]: 2.556643175 - core[0].svIdle(17), plen 0: [] -EVENT[21691]: 2.556747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21692]: 2.556756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21693]: 2.556770600 - core[1].svIdle(17), plen 0: [] -EVENT[21694]: 2.557617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21695]: 2.557629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21696]: 2.557643125 - core[0].svIdle(17), plen 0: [] -EVENT[21697]: 2.557747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21698]: 2.557757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21699]: 2.557770775 - core[1].svIdle(17), plen 0: [] -EVENT[21700]: 2.558617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21701]: 2.558629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21702]: 2.558643125 - core[0].svIdle(17), plen 0: [] -EVENT[21703]: 2.558747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21704]: 2.558756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21705]: 2.558770600 - core[1].svIdle(17), plen 0: [] -EVENT[21706]: 2.559617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21707]: 2.559629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21708]: 2.559643250 - core[0].svIdle(17), plen 0: [] -EVENT[21709]: 2.559747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21710]: 2.559756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21711]: 2.559770600 - core[1].svIdle(17), plen 0: [] -EVENT[21712]: 2.560617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21713]: 2.560632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21714]: 2.560646225 - core[0].svIdle(17), plen 0: [] -EVENT[21715]: 2.560747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21716]: 2.560756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21717]: 2.560770600 - core[1].svIdle(17), plen 0: [] -EVENT[21718]: 2.561617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21719]: 2.561629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21720]: 2.561643125 - core[0].svIdle(17), plen 0: [] -EVENT[21721]: 2.561747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21722]: 2.561757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21723]: 2.561770775 - core[1].svIdle(17), plen 0: [] -EVENT[21724]: 2.562617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21725]: 2.562629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21726]: 2.562643125 - core[0].svIdle(17), plen 0: [] -EVENT[21727]: 2.562747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21728]: 2.562756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21729]: 2.562770600 - core[1].svIdle(17), plen 0: [] -EVENT[21730]: 2.563617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21731]: 2.563629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21732]: 2.563643250 - core[0].svIdle(17), plen 0: [] -EVENT[21733]: 2.563747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21734]: 2.563756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21735]: 2.563770600 - core[1].svIdle(17), plen 0: [] -EVENT[21736]: 2.564617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21737]: 2.564629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21738]: 2.564643175 - core[0].svIdle(17), plen 0: [] -EVENT[21739]: 2.564747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21740]: 2.564756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21741]: 2.564770600 - core[1].svIdle(17), plen 0: [] -EVENT[21742]: 2.565617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21743]: 2.565629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21744]: 2.565643125 - core[0].svIdle(17), plen 0: [] -EVENT[21745]: 2.565747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21746]: 2.565757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21747]: 2.565770775 - core[1].svIdle(17), plen 0: [] -EVENT[21748]: 2.566617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21749]: 2.566629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21750]: 2.566643125 - core[0].svIdle(17), plen 0: [] -EVENT[21751]: 2.566747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21752]: 2.566756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21753]: 2.566770600 - core[1].svIdle(17), plen 0: [] -EVENT[21754]: 2.567617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21755]: 2.567629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21756]: 2.567643250 - core[0].svIdle(17), plen 0: [] -EVENT[21757]: 2.567747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21758]: 2.567756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21759]: 2.567770600 - core[1].svIdle(17), plen 0: [] -EVENT[21760]: 2.568617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21761]: 2.568629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21762]: 2.568643175 - core[0].svIdle(17), plen 0: [] -EVENT[21763]: 2.568747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21764]: 2.568756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21765]: 2.568770600 - core[1].svIdle(17), plen 0: [] -EVENT[21766]: 2.569617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21767]: 2.569629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21768]: 2.569643125 - core[0].svIdle(17), plen 0: [] -EVENT[21769]: 2.569747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21770]: 2.569757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21771]: 2.569770775 - core[1].svIdle(17), plen 0: [] -EVENT[21772]: 2.570617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21773]: 2.570629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21774]: 2.570643125 - core[0].svIdle(17), plen 0: [] -EVENT[21775]: 2.570747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21776]: 2.570756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21777]: 2.570770600 - core[1].svIdle(17), plen 0: [] -EVENT[21778]: 2.571617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21779]: 2.571629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21780]: 2.571643250 - core[0].svIdle(17), plen 0: [] -EVENT[21781]: 2.571747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21782]: 2.571756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21783]: 2.571770600 - core[1].svIdle(17), plen 0: [] -EVENT[21784]: 2.572617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21785]: 2.572631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21786]: 2.572645550 - core[0].svIdle(17), plen 0: [] -EVENT[21787]: 2.572747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21788]: 2.572756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21789]: 2.572770600 - core[1].svIdle(17), plen 0: [] -EVENT[21790]: 2.573617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21791]: 2.573629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21792]: 2.573643125 - core[0].svIdle(17), plen 0: [] -EVENT[21793]: 2.573747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21794]: 2.573757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21795]: 2.573770775 - core[1].svIdle(17), plen 0: [] -EVENT[21796]: 2.574617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21797]: 2.574629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21798]: 2.574643125 - core[0].svIdle(17), plen 0: [] -EVENT[21799]: 2.574747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21800]: 2.574756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21801]: 2.574770600 - core[1].svIdle(17), plen 0: [] -EVENT[21802]: 2.575617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21803]: 2.575629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21804]: 2.575643250 - core[0].svIdle(17), plen 0: [] -EVENT[21805]: 2.575747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21806]: 2.575756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21807]: 2.575770600 - core[1].svIdle(17), plen 0: [] -EVENT[21808]: 2.576617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21809]: 2.576629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21810]: 2.576643175 - core[0].svIdle(17), plen 0: [] -EVENT[21811]: 2.576747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21812]: 2.576756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21813]: 2.576770600 - core[1].svIdle(17), plen 0: [] -EVENT[21814]: 2.577617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21815]: 2.577629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21816]: 2.577643125 - core[0].svIdle(17), plen 0: [] -EVENT[21817]: 2.577747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21818]: 2.577757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21819]: 2.577770775 - core[1].svIdle(17), plen 0: [] -EVENT[21820]: 2.578617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21821]: 2.578629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21822]: 2.578643125 - core[0].svIdle(17), plen 0: [] -EVENT[21823]: 2.578747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21824]: 2.578756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21825]: 2.578770600 - core[1].svIdle(17), plen 0: [] -EVENT[21826]: 2.579617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21827]: 2.579629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21828]: 2.579643250 - core[0].svIdle(17), plen 0: [] -EVENT[21829]: 2.579747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21830]: 2.579756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21831]: 2.579770600 - core[1].svIdle(17), plen 0: [] -EVENT[21832]: 2.580617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21833]: 2.580629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21834]: 2.580643175 - core[0].svIdle(17), plen 0: [] -EVENT[21835]: 2.580747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21836]: 2.580756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21837]: 2.580770600 - core[1].svIdle(17), plen 0: [] -EVENT[21838]: 2.581617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21839]: 2.581629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21840]: 2.581643125 - core[0].svIdle(17), plen 0: [] -EVENT[21841]: 2.581747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21842]: 2.581757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21843]: 2.581770775 - core[1].svIdle(17), plen 0: [] -EVENT[21844]: 2.582617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21845]: 2.582629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21846]: 2.582643125 - core[0].svIdle(17), plen 0: [] -EVENT[21847]: 2.582747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21848]: 2.582756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21849]: 2.582770600 - core[1].svIdle(17), plen 0: [] -EVENT[21850]: 2.583617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21851]: 2.583629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[21852]: 2.583638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21853]: 2.583652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[21854]: 2.583677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 174, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.583677000] HEAP: Allocated 174 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21855]: 2.583692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21856]: 2.583706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21857]: 2.583747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21858]: 2.583768950 - core[0].svPrint(26), plen 72: [msg: I (2910) example: Task[0x3ffb7f40]: allocated 174 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.583768950] LOG: I (2910) example: Task[0x3ffb7f40]: allocated 174 bytes @ 0x3ffb4b10 -EVENT[21859]: 2.583777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21860]: 2.583785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21861]: 2.583795925 - core[1].svIdle(17), plen 0: [] -EVENT[21862]: 2.583806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[21863]: 2.583819725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21864]: 2.583828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[21865]: 2.583836200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21866]: 2.583844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[21867]: 2.583857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[21868]: 2.583865750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[21869]: 2.583874050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[21870]: 2.583882925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21871]: 2.583892325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21872]: 2.583901625 - core[0].svIdle(17), plen 0: [] -EVENT[21873]: 2.583916450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21874]: 2.583965700 - core[1].svPrint(26), plen 64: [msg: I (2910) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.583965700] LOG: I (2910) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[21875]: 2.583984175 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.583984175] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21876]: 2.584002175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[21877]: 2.584014850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21878]: 2.584023650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21879]: 2.584039225 - core[1].svIdle(17), plen 0: [] -EVENT[21880]: 2.584617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21881]: 2.584629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[21882]: 2.584638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21883]: 2.584652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[21884]: 2.584677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 348, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.584677000] HEAP: Allocated 348 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21885]: 2.584689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21886]: 2.584703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21887]: 2.584747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21888]: 2.584769475 - core[0].svPrint(26), plen 72: [msg: I (2911) example: Task[0x3ffb82a0]: allocated 348 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.584769475] LOG: I (2911) example: Task[0x3ffb82a0]: allocated 348 bytes @ 0x3ffb4b10 -EVENT[21889]: 2.584780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21890]: 2.584789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21891]: 2.584798950 - core[1].svIdle(17), plen 0: [] -EVENT[21892]: 2.584809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[21893]: 2.584822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21894]: 2.584831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[21895]: 2.584839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21896]: 2.584847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[21897]: 2.584860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[21898]: 2.584868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[21899]: 2.584877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[21900]: 2.584886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21901]: 2.584895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21902]: 2.584904625 - core[0].svIdle(17), plen 0: [] -EVENT[21903]: 2.584919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21904]: 2.584968700 - core[1].svPrint(26), plen 64: [msg: I (2911) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.584968700] LOG: I (2911) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[21905]: 2.584984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.584984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21906]: 2.585005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[21907]: 2.585018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21908]: 2.585026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21909]: 2.585042425 - core[1].svIdle(17), plen 0: [] -EVENT[21910]: 2.585617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21911]: 2.585629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[21912]: 2.585638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21913]: 2.585652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[21914]: 2.585676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 522, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.585676975] HEAP: Allocated 522 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21915]: 2.585689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21916]: 2.585703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21917]: 2.585747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21918]: 2.585769450 - core[0].svPrint(26), plen 72: [msg: I (2912) example: Task[0x3ffb8600]: allocated 522 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.585769450] LOG: I (2912) example: Task[0x3ffb8600]: allocated 522 bytes @ 0x3ffb4b10 -EVENT[21919]: 2.585778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21920]: 2.585786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21921]: 2.585797075 - core[1].svIdle(17), plen 0: [] -EVENT[21922]: 2.585807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[21923]: 2.585820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21924]: 2.585829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[21925]: 2.585837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21926]: 2.585845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[21927]: 2.585858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[21928]: 2.585866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[21929]: 2.585879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[21930]: 2.585887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21931]: 2.585895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[21932]: 2.585905825 - core[0].svIdle(17), plen 0: [] -EVENT[21933]: 2.585920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[21934]: 2.585970100 - core[1].svPrint(26), plen 64: [msg: I (2912) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.585970100] LOG: I (2912) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[21935]: 2.585985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.585985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[21936]: 2.586003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[21937]: 2.586016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[21938]: 2.586025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21939]: 2.586040650 - core[1].svIdle(17), plen 0: [] -EVENT[21940]: 2.586617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21941]: 2.586629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21942]: 2.586643175 - core[0].svIdle(17), plen 0: [] -EVENT[21943]: 2.586747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21944]: 2.586756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21945]: 2.586770600 - core[1].svIdle(17), plen 0: [] -EVENT[21946]: 2.587617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21947]: 2.587629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21948]: 2.587643125 - core[0].svIdle(17), plen 0: [] -EVENT[21949]: 2.587747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21950]: 2.587757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21951]: 2.587770775 - core[1].svIdle(17), plen 0: [] -EVENT[21952]: 2.588617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21953]: 2.588629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21954]: 2.588643125 - core[0].svIdle(17), plen 0: [] -EVENT[21955]: 2.588747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21956]: 2.588756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21957]: 2.588770600 - core[1].svIdle(17), plen 0: [] -EVENT[21958]: 2.589617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21959]: 2.589629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21960]: 2.589643250 - core[0].svIdle(17), plen 0: [] -EVENT[21961]: 2.589747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21962]: 2.589756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21963]: 2.589770600 - core[1].svIdle(17), plen 0: [] -EVENT[21964]: 2.590617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21965]: 2.590632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21966]: 2.590646225 - core[0].svIdle(17), plen 0: [] -EVENT[21967]: 2.590747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21968]: 2.590756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21969]: 2.590770600 - core[1].svIdle(17), plen 0: [] -EVENT[21970]: 2.591617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21971]: 2.591629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21972]: 2.591643125 - core[0].svIdle(17), plen 0: [] -EVENT[21973]: 2.591747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21974]: 2.591757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21975]: 2.591770775 - core[1].svIdle(17), plen 0: [] -EVENT[21976]: 2.592617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21977]: 2.592629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21978]: 2.592643125 - core[0].svIdle(17), plen 0: [] -EVENT[21979]: 2.592747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21980]: 2.592756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21981]: 2.592770600 - core[1].svIdle(17), plen 0: [] -EVENT[21982]: 2.593617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21983]: 2.593629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21984]: 2.593643250 - core[0].svIdle(17), plen 0: [] -EVENT[21985]: 2.593747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21986]: 2.593756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21987]: 2.593770600 - core[1].svIdle(17), plen 0: [] -EVENT[21988]: 2.594617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21989]: 2.594629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21990]: 2.594643175 - core[0].svIdle(17), plen 0: [] -EVENT[21991]: 2.594747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21992]: 2.594756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21993]: 2.594770600 - core[1].svIdle(17), plen 0: [] -EVENT[21994]: 2.595617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21995]: 2.595629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[21996]: 2.595643125 - core[0].svIdle(17), plen 0: [] -EVENT[21997]: 2.595747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[21998]: 2.595757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[21999]: 2.595770775 - core[1].svIdle(17), plen 0: [] -EVENT[22000]: 2.596617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22001]: 2.596629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22002]: 2.596643125 - core[0].svIdle(17), plen 0: [] -EVENT[22003]: 2.596747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22004]: 2.596756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22005]: 2.596770600 - core[1].svIdle(17), plen 0: [] -EVENT[22006]: 2.597617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22007]: 2.597629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22008]: 2.597643250 - core[0].svIdle(17), plen 0: [] -EVENT[22009]: 2.597747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22010]: 2.597756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22011]: 2.597770600 - core[1].svIdle(17), plen 0: [] -EVENT[22012]: 2.598617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22013]: 2.598629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22014]: 2.598643175 - core[0].svIdle(17), plen 0: [] -EVENT[22015]: 2.598747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22016]: 2.598756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22017]: 2.598770600 - core[1].svIdle(17), plen 0: [] -EVENT[22018]: 2.599617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22019]: 2.599629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22020]: 2.599643125 - core[0].svIdle(17), plen 0: [] -EVENT[22021]: 2.599747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22022]: 2.599757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22023]: 2.599770775 - core[1].svIdle(17), plen 0: [] -EVENT[22024]: 2.600617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22025]: 2.600629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22026]: 2.600643125 - core[0].svIdle(17), plen 0: [] -EVENT[22027]: 2.600747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22028]: 2.600756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22029]: 2.600770600 - core[1].svIdle(17), plen 0: [] -EVENT[22030]: 2.601617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22031]: 2.601629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22032]: 2.601643250 - core[0].svIdle(17), plen 0: [] -EVENT[22033]: 2.601747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22034]: 2.601756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22035]: 2.601770600 - core[1].svIdle(17), plen 0: [] -EVENT[22036]: 2.602617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22037]: 2.602631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22038]: 2.602645550 - core[0].svIdle(17), plen 0: [] -EVENT[22039]: 2.602747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22040]: 2.602756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22041]: 2.602770600 - core[1].svIdle(17), plen 0: [] -EVENT[22042]: 2.603617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22043]: 2.603629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22044]: 2.603643125 - core[0].svIdle(17), plen 0: [] -EVENT[22045]: 2.603747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22046]: 2.603757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22047]: 2.603770775 - core[1].svIdle(17), plen 0: [] -EVENT[22048]: 2.604617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22049]: 2.604629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22050]: 2.604643125 - core[0].svIdle(17), plen 0: [] -EVENT[22051]: 2.604747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22052]: 2.604756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22053]: 2.604770600 - core[1].svIdle(17), plen 0: [] -EVENT[22054]: 2.605617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22055]: 2.605629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22056]: 2.605643250 - core[0].svIdle(17), plen 0: [] -EVENT[22057]: 2.605747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22058]: 2.605756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22059]: 2.605770600 - core[1].svIdle(17), plen 0: [] -EVENT[22060]: 2.606617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22061]: 2.606629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22062]: 2.606643175 - core[0].svIdle(17), plen 0: [] -EVENT[22063]: 2.606747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22064]: 2.606756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22065]: 2.606770600 - core[1].svIdle(17), plen 0: [] -EVENT[22066]: 2.607617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22067]: 2.607629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22068]: 2.607643125 - core[0].svIdle(17), plen 0: [] -EVENT[22069]: 2.607747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22070]: 2.607757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22071]: 2.607770775 - core[1].svIdle(17), plen 0: [] -EVENT[22072]: 2.608617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22073]: 2.608629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22074]: 2.608643125 - core[0].svIdle(17), plen 0: [] -EVENT[22075]: 2.608747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22076]: 2.608756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22077]: 2.608770600 - core[1].svIdle(17), plen 0: [] -EVENT[22078]: 2.609617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22079]: 2.609629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22080]: 2.609643250 - core[0].svIdle(17), plen 0: [] -EVENT[22081]: 2.609747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22082]: 2.609756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22083]: 2.609770600 - core[1].svIdle(17), plen 0: [] -EVENT[22084]: 2.610617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22085]: 2.610629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22086]: 2.610643175 - core[0].svIdle(17), plen 0: [] -EVENT[22087]: 2.610747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22088]: 2.610756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22089]: 2.610770600 - core[1].svIdle(17), plen 0: [] -EVENT[22090]: 2.611617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22091]: 2.611629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22092]: 2.611643125 - core[0].svIdle(17), plen 0: [] -EVENT[22093]: 2.611747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22094]: 2.611757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22095]: 2.611770775 - core[1].svIdle(17), plen 0: [] -EVENT[22096]: 2.612617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22097]: 2.612629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22098]: 2.612643125 - core[0].svIdle(17), plen 0: [] -EVENT[22099]: 2.612747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22100]: 2.612756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22101]: 2.612770600 - core[1].svIdle(17), plen 0: [] -EVENT[22102]: 2.613617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22103]: 2.613629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[22104]: 2.613638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22105]: 2.613652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[22106]: 2.613677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 176, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.613677000] HEAP: Allocated 176 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22107]: 2.613692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22108]: 2.613706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22109]: 2.613747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22110]: 2.613768950 - core[0].svPrint(26), plen 72: [msg: I (2940) example: Task[0x3ffb7f40]: allocated 176 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.613768950] LOG: I (2940) example: Task[0x3ffb7f40]: allocated 176 bytes @ 0x3ffb4b10 -EVENT[22111]: 2.613777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22112]: 2.613785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22113]: 2.613795925 - core[1].svIdle(17), plen 0: [] -EVENT[22114]: 2.613806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[22115]: 2.613819725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22116]: 2.613828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[22117]: 2.613836200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22118]: 2.613844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[22119]: 2.613857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[22120]: 2.613865750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[22121]: 2.613874050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[22122]: 2.613882925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22123]: 2.613892325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22124]: 2.613901625 - core[0].svIdle(17), plen 0: [] -EVENT[22125]: 2.613916450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22126]: 2.613965700 - core[1].svPrint(26), plen 64: [msg: I (2940) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.613965700] LOG: I (2940) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[22127]: 2.613984175 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.613984175] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22128]: 2.614002175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[22129]: 2.614014850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22130]: 2.614023650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22131]: 2.614039225 - core[1].svIdle(17), plen 0: [] -EVENT[22132]: 2.614617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22133]: 2.614629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[22134]: 2.614638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22135]: 2.614652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[22136]: 2.614677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 352, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.614677000] HEAP: Allocated 352 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22137]: 2.614689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22138]: 2.614703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22139]: 2.614747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22140]: 2.614769475 - core[0].svPrint(26), plen 72: [msg: I (2941) example: Task[0x3ffb82a0]: allocated 352 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.614769475] LOG: I (2941) example: Task[0x3ffb82a0]: allocated 352 bytes @ 0x3ffb4b10 -EVENT[22141]: 2.614780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22142]: 2.614789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22143]: 2.614798950 - core[1].svIdle(17), plen 0: [] -EVENT[22144]: 2.614809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[22145]: 2.614822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22146]: 2.614831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[22147]: 2.614839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22148]: 2.614847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[22149]: 2.614860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[22150]: 2.614868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[22151]: 2.614877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[22152]: 2.614886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22153]: 2.614895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22154]: 2.614904625 - core[0].svIdle(17), plen 0: [] -EVENT[22155]: 2.614919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22156]: 2.614968700 - core[1].svPrint(26), plen 64: [msg: I (2941) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.614968700] LOG: I (2941) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[22157]: 2.614984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.614984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22158]: 2.615005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[22159]: 2.615018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22160]: 2.615026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22161]: 2.615042425 - core[1].svIdle(17), plen 0: [] -EVENT[22162]: 2.615617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22163]: 2.615629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[22164]: 2.615638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22165]: 2.615652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[22166]: 2.615676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 528, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.615676975] HEAP: Allocated 528 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22167]: 2.615689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22168]: 2.615703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22169]: 2.615747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22170]: 2.615769450 - core[0].svPrint(26), plen 72: [msg: I (2942) example: Task[0x3ffb8600]: allocated 528 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.615769450] LOG: I (2942) example: Task[0x3ffb8600]: allocated 528 bytes @ 0x3ffb4b10 -EVENT[22171]: 2.615778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22172]: 2.615786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22173]: 2.615797075 - core[1].svIdle(17), plen 0: [] -EVENT[22174]: 2.615807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[22175]: 2.615820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22176]: 2.615829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[22177]: 2.615837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22178]: 2.615845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[22179]: 2.615858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[22180]: 2.615866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[22181]: 2.615879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[22182]: 2.615887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22183]: 2.615895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22184]: 2.615905825 - core[0].svIdle(17), plen 0: [] -EVENT[22185]: 2.615920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22186]: 2.615970100 - core[1].svPrint(26), plen 64: [msg: I (2942) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.615970100] LOG: I (2942) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[22187]: 2.615985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.615985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22188]: 2.616003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[22189]: 2.616016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22190]: 2.616025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22191]: 2.616040650 - core[1].svIdle(17), plen 0: [] -EVENT[22192]: 2.616617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22193]: 2.616629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22194]: 2.616643175 - core[0].svIdle(17), plen 0: [] -EVENT[22195]: 2.616747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22196]: 2.616756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22197]: 2.616770600 - core[1].svIdle(17), plen 0: [] -EVENT[22198]: 2.617617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22199]: 2.617629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22200]: 2.617643125 - core[0].svIdle(17), plen 0: [] -EVENT[22201]: 2.617747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22202]: 2.617757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22203]: 2.617770775 - core[1].svIdle(17), plen 0: [] -EVENT[22204]: 2.618617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22205]: 2.618629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22206]: 2.618643125 - core[0].svIdle(17), plen 0: [] -EVENT[22207]: 2.618747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22208]: 2.618756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22209]: 2.618770600 - core[1].svIdle(17), plen 0: [] -EVENT[22210]: 2.619617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22211]: 2.619629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22212]: 2.619643250 - core[0].svIdle(17), plen 0: [] -EVENT[22213]: 2.619747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22214]: 2.619756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22215]: 2.619770600 - core[1].svIdle(17), plen 0: [] -EVENT[22216]: 2.620617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22217]: 2.620632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22218]: 2.620646225 - core[0].svIdle(17), plen 0: [] -EVENT[22219]: 2.620747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22220]: 2.620756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22221]: 2.620770600 - core[1].svIdle(17), plen 0: [] -EVENT[22222]: 2.621617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22223]: 2.621629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22224]: 2.621643125 - core[0].svIdle(17), plen 0: [] -EVENT[22225]: 2.621747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22226]: 2.621757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22227]: 2.621770775 - core[1].svIdle(17), plen 0: [] -EVENT[22228]: 2.622617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22229]: 2.622629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22230]: 2.622643125 - core[0].svIdle(17), plen 0: [] -EVENT[22231]: 2.622747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22232]: 2.622756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22233]: 2.622770600 - core[1].svIdle(17), plen 0: [] -EVENT[22234]: 2.623617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22235]: 2.623629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22236]: 2.623643250 - core[0].svIdle(17), plen 0: [] -EVENT[22237]: 2.623747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22238]: 2.623756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22239]: 2.623770600 - core[1].svIdle(17), plen 0: [] -EVENT[22240]: 2.624617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22241]: 2.624629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22242]: 2.624643175 - core[0].svIdle(17), plen 0: [] -EVENT[22243]: 2.624747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22244]: 2.624756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22245]: 2.624770600 - core[1].svIdle(17), plen 0: [] -EVENT[22246]: 2.625617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22247]: 2.625629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22248]: 2.625643125 - core[0].svIdle(17), plen 0: [] -EVENT[22249]: 2.625747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22250]: 2.625757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22251]: 2.625770775 - core[1].svIdle(17), plen 0: [] -EVENT[22252]: 2.626617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22253]: 2.626629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22254]: 2.626643125 - core[0].svIdle(17), plen 0: [] -EVENT[22255]: 2.626747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22256]: 2.626756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22257]: 2.626770600 - core[1].svIdle(17), plen 0: [] -EVENT[22258]: 2.627617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22259]: 2.627629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22260]: 2.627643250 - core[0].svIdle(17), plen 0: [] -EVENT[22261]: 2.627747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22262]: 2.627756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22263]: 2.627770600 - core[1].svIdle(17), plen 0: [] -EVENT[22264]: 2.628617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22265]: 2.628629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22266]: 2.628643175 - core[0].svIdle(17), plen 0: [] -EVENT[22267]: 2.628747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22268]: 2.628756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22269]: 2.628770600 - core[1].svIdle(17), plen 0: [] -EVENT[22270]: 2.629617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22271]: 2.629629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22272]: 2.629643125 - core[0].svIdle(17), plen 0: [] -EVENT[22273]: 2.629747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22274]: 2.629757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22275]: 2.629770775 - core[1].svIdle(17), plen 0: [] -EVENT[22276]: 2.630617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22277]: 2.630629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22278]: 2.630643125 - core[0].svIdle(17), plen 0: [] -EVENT[22279]: 2.630747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22280]: 2.630756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22281]: 2.630770600 - core[1].svIdle(17), plen 0: [] -EVENT[22282]: 2.631617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22283]: 2.631629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22284]: 2.631643250 - core[0].svIdle(17), plen 0: [] -EVENT[22285]: 2.631747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22286]: 2.631756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22287]: 2.631770600 - core[1].svIdle(17), plen 0: [] -EVENT[22288]: 2.632617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22289]: 2.632631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22290]: 2.632645550 - core[0].svIdle(17), plen 0: [] -EVENT[22291]: 2.632747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22292]: 2.632756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22293]: 2.632770600 - core[1].svIdle(17), plen 0: [] -EVENT[22294]: 2.633617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22295]: 2.633629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22296]: 2.633643125 - core[0].svIdle(17), plen 0: [] -EVENT[22297]: 2.633747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22298]: 2.633757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22299]: 2.633770775 - core[1].svIdle(17), plen 0: [] -EVENT[22300]: 2.634617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22301]: 2.634629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22302]: 2.634643125 - core[0].svIdle(17), plen 0: [] -EVENT[22303]: 2.634747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22304]: 2.634756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22305]: 2.634770600 - core[1].svIdle(17), plen 0: [] -EVENT[22306]: 2.635617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22307]: 2.635629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22308]: 2.635643250 - core[0].svIdle(17), plen 0: [] -EVENT[22309]: 2.635747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22310]: 2.635756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22311]: 2.635770600 - core[1].svIdle(17), plen 0: [] -EVENT[22312]: 2.636617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22313]: 2.636629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22314]: 2.636643175 - core[0].svIdle(17), plen 0: [] -EVENT[22315]: 2.636747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22316]: 2.636756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22317]: 2.636770600 - core[1].svIdle(17), plen 0: [] -EVENT[22318]: 2.637617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22319]: 2.637629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22320]: 2.637643125 - core[0].svIdle(17), plen 0: [] -EVENT[22321]: 2.637747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22322]: 2.637757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22323]: 2.637770775 - core[1].svIdle(17), plen 0: [] -EVENT[22324]: 2.638617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22325]: 2.638629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22326]: 2.638643125 - core[0].svIdle(17), plen 0: [] -EVENT[22327]: 2.638747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22328]: 2.638756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22329]: 2.638770600 - core[1].svIdle(17), plen 0: [] -EVENT[22330]: 2.639617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22331]: 2.639629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22332]: 2.639643250 - core[0].svIdle(17), plen 0: [] -EVENT[22333]: 2.639747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22334]: 2.639756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22335]: 2.639770600 - core[1].svIdle(17), plen 0: [] -EVENT[22336]: 2.640617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22337]: 2.640629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22338]: 2.640643175 - core[0].svIdle(17), plen 0: [] -EVENT[22339]: 2.640747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22340]: 2.640756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22341]: 2.640770600 - core[1].svIdle(17), plen 0: [] -EVENT[22342]: 2.641617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22343]: 2.641629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22344]: 2.641643125 - core[0].svIdle(17), plen 0: [] -EVENT[22345]: 2.641747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22346]: 2.641757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22347]: 2.641770775 - core[1].svIdle(17), plen 0: [] -EVENT[22348]: 2.642617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22349]: 2.642629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22350]: 2.642643125 - core[0].svIdle(17), plen 0: [] -EVENT[22351]: 2.642747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22352]: 2.642756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22353]: 2.642770600 - core[1].svIdle(17), plen 0: [] -EVENT[22354]: 2.643617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22355]: 2.643629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[22356]: 2.643638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22357]: 2.643652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[22358]: 2.643677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 178, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.643677000] HEAP: Allocated 178 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22359]: 2.643692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22360]: 2.643706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22361]: 2.643747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22362]: 2.643768950 - core[0].svPrint(26), plen 72: [msg: I (2970) example: Task[0x3ffb7f40]: allocated 178 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.643768950] LOG: I (2970) example: Task[0x3ffb7f40]: allocated 178 bytes @ 0x3ffb4b10 -EVENT[22363]: 2.643777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22364]: 2.643785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22365]: 2.643795925 - core[1].svIdle(17), plen 0: [] -EVENT[22366]: 2.643806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[22367]: 2.643819725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22368]: 2.643828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[22369]: 2.643836200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22370]: 2.643844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[22371]: 2.643857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[22372]: 2.643865750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[22373]: 2.643874050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[22374]: 2.643882925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22375]: 2.643892325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22376]: 2.643901625 - core[0].svIdle(17), plen 0: [] -EVENT[22377]: 2.643916450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22378]: 2.643965700 - core[1].svPrint(26), plen 64: [msg: I (2970) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.643965700] LOG: I (2970) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[22379]: 2.643984175 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.643984175] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22380]: 2.644002175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[22381]: 2.644014850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22382]: 2.644023650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22383]: 2.644039225 - core[1].svIdle(17), plen 0: [] -EVENT[22384]: 2.644617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22385]: 2.644629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[22386]: 2.644638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22387]: 2.644652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[22388]: 2.644677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 356, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.644677000] HEAP: Allocated 356 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22389]: 2.644689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22390]: 2.644703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22391]: 2.644747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22392]: 2.644769475 - core[0].svPrint(26), plen 72: [msg: I (2971) example: Task[0x3ffb82a0]: allocated 356 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.644769475] LOG: I (2971) example: Task[0x3ffb82a0]: allocated 356 bytes @ 0x3ffb4b10 -EVENT[22393]: 2.644780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22394]: 2.644789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22395]: 2.644798950 - core[1].svIdle(17), plen 0: [] -EVENT[22396]: 2.644809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[22397]: 2.644822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22398]: 2.644831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[22399]: 2.644839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22400]: 2.644847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[22401]: 2.644860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[22402]: 2.644868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[22403]: 2.644877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[22404]: 2.644886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22405]: 2.644895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22406]: 2.644904625 - core[0].svIdle(17), plen 0: [] -EVENT[22407]: 2.644919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22408]: 2.644968700 - core[1].svPrint(26), plen 64: [msg: I (2971) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.644968700] LOG: I (2971) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[22409]: 2.644984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.644984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22410]: 2.645005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[22411]: 2.645018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22412]: 2.645026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22413]: 2.645042425 - core[1].svIdle(17), plen 0: [] -EVENT[22414]: 2.645617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22415]: 2.645629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[22416]: 2.645638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22417]: 2.645652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[22418]: 2.645676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 534, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.645676975] HEAP: Allocated 534 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22419]: 2.645689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22420]: 2.645703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22421]: 2.645747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22422]: 2.645769450 - core[0].svPrint(26), plen 72: [msg: I (2972) example: Task[0x3ffb8600]: allocated 534 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.645769450] LOG: I (2972) example: Task[0x3ffb8600]: allocated 534 bytes @ 0x3ffb4b10 -EVENT[22423]: 2.645778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22424]: 2.645786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22425]: 2.645797075 - core[1].svIdle(17), plen 0: [] -EVENT[22426]: 2.645807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[22427]: 2.645820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22428]: 2.645829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[22429]: 2.645837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22430]: 2.645845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[22431]: 2.645858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[22432]: 2.645866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[22433]: 2.645879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[22434]: 2.645887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22435]: 2.645895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22436]: 2.645905825 - core[0].svIdle(17), plen 0: [] -EVENT[22437]: 2.645920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22438]: 2.645970100 - core[1].svPrint(26), plen 64: [msg: I (2972) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.645970100] LOG: I (2972) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[22439]: 2.645985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.645985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22440]: 2.646003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[22441]: 2.646016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22442]: 2.646025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22443]: 2.646040650 - core[1].svIdle(17), plen 0: [] -EVENT[22444]: 2.646617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22445]: 2.646629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22446]: 2.646643175 - core[0].svIdle(17), plen 0: [] -EVENT[22447]: 2.646747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22448]: 2.646756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22449]: 2.646770600 - core[1].svIdle(17), plen 0: [] -EVENT[22450]: 2.647617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22451]: 2.647629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22452]: 2.647643125 - core[0].svIdle(17), plen 0: [] -EVENT[22453]: 2.647747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22454]: 2.647757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22455]: 2.647770775 - core[1].svIdle(17), plen 0: [] -EVENT[22456]: 2.648617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22457]: 2.648629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22458]: 2.648643125 - core[0].svIdle(17), plen 0: [] -EVENT[22459]: 2.648747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22460]: 2.648756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22461]: 2.648770600 - core[1].svIdle(17), plen 0: [] -EVENT[22462]: 2.649617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22463]: 2.649629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22464]: 2.649643250 - core[0].svIdle(17), plen 0: [] -EVENT[22465]: 2.649747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22466]: 2.649756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22467]: 2.649770600 - core[1].svIdle(17), plen 0: [] -EVENT[22468]: 2.650617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22469]: 2.650632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22470]: 2.650646225 - core[0].svIdle(17), plen 0: [] -EVENT[22471]: 2.650747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22472]: 2.650756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22473]: 2.650770600 - core[1].svIdle(17), plen 0: [] -EVENT[22474]: 2.651617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22475]: 2.651629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22476]: 2.651643125 - core[0].svIdle(17), plen 0: [] -EVENT[22477]: 2.651747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22478]: 2.651757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22479]: 2.651770775 - core[1].svIdle(17), plen 0: [] -EVENT[22480]: 2.652617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22481]: 2.652629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22482]: 2.652643125 - core[0].svIdle(17), plen 0: [] -EVENT[22483]: 2.652747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22484]: 2.652756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22485]: 2.652770600 - core[1].svIdle(17), plen 0: [] -EVENT[22486]: 2.653617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22487]: 2.653629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22488]: 2.653643250 - core[0].svIdle(17), plen 0: [] -EVENT[22489]: 2.653747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22490]: 2.653756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22491]: 2.653770600 - core[1].svIdle(17), plen 0: [] -EVENT[22492]: 2.654617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22493]: 2.654629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22494]: 2.654643175 - core[0].svIdle(17), plen 0: [] -EVENT[22495]: 2.654747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22496]: 2.654756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22497]: 2.654770600 - core[1].svIdle(17), plen 0: [] -EVENT[22498]: 2.655617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22499]: 2.655629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22500]: 2.655643125 - core[0].svIdle(17), plen 0: [] -EVENT[22501]: 2.655747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22502]: 2.655757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22503]: 2.655770775 - core[1].svIdle(17), plen 0: [] -EVENT[22504]: 2.656617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22505]: 2.656629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22506]: 2.656643125 - core[0].svIdle(17), plen 0: [] -EVENT[22507]: 2.656747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22508]: 2.656756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22509]: 2.656770600 - core[1].svIdle(17), plen 0: [] -EVENT[22510]: 2.657617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22511]: 2.657629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22512]: 2.657643250 - core[0].svIdle(17), plen 0: [] -EVENT[22513]: 2.657747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22514]: 2.657756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22515]: 2.657770600 - core[1].svIdle(17), plen 0: [] -EVENT[22516]: 2.658617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22517]: 2.658629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22518]: 2.658643175 - core[0].svIdle(17), plen 0: [] -EVENT[22519]: 2.658747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22520]: 2.658756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22521]: 2.658770600 - core[1].svIdle(17), plen 0: [] -EVENT[22522]: 2.659617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22523]: 2.659629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22524]: 2.659643125 - core[0].svIdle(17), plen 0: [] -EVENT[22525]: 2.659747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22526]: 2.659757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22527]: 2.659770775 - core[1].svIdle(17), plen 0: [] -EVENT[22528]: 2.660617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22529]: 2.660629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22530]: 2.660643125 - core[0].svIdle(17), plen 0: [] -EVENT[22531]: 2.660747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22532]: 2.660756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22533]: 2.660770600 - core[1].svIdle(17), plen 0: [] -EVENT[22534]: 2.661617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22535]: 2.661629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22536]: 2.661643250 - core[0].svIdle(17), plen 0: [] -EVENT[22537]: 2.661747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22538]: 2.661756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22539]: 2.661770600 - core[1].svIdle(17), plen 0: [] -EVENT[22540]: 2.662617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22541]: 2.662631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22542]: 2.662645550 - core[0].svIdle(17), plen 0: [] -EVENT[22543]: 2.662747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22544]: 2.662756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22545]: 2.662770600 - core[1].svIdle(17), plen 0: [] -EVENT[22546]: 2.663617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22547]: 2.663629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22548]: 2.663643125 - core[0].svIdle(17), plen 0: [] -EVENT[22549]: 2.663747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22550]: 2.663757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22551]: 2.663770775 - core[1].svIdle(17), plen 0: [] -EVENT[22552]: 2.664617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22553]: 2.664629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22554]: 2.664643125 - core[0].svIdle(17), plen 0: [] -EVENT[22555]: 2.664747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22556]: 2.664756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22557]: 2.664770600 - core[1].svIdle(17), plen 0: [] -EVENT[22558]: 2.665617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22559]: 2.665629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22560]: 2.665643250 - core[0].svIdle(17), plen 0: [] -EVENT[22561]: 2.665747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22562]: 2.665756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22563]: 2.665770600 - core[1].svIdle(17), plen 0: [] -EVENT[22564]: 2.666617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22565]: 2.666629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22566]: 2.666643175 - core[0].svIdle(17), plen 0: [] -EVENT[22567]: 2.666747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22568]: 2.666756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22569]: 2.666770600 - core[1].svIdle(17), plen 0: [] -EVENT[22570]: 2.667617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22571]: 2.667629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22572]: 2.667643125 - core[0].svIdle(17), plen 0: [] -EVENT[22573]: 2.667747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22574]: 2.667757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22575]: 2.667770775 - core[1].svIdle(17), plen 0: [] -EVENT[22576]: 2.668617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22577]: 2.668629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22578]: 2.668643125 - core[0].svIdle(17), plen 0: [] -EVENT[22579]: 2.668747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22580]: 2.668756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22581]: 2.668770600 - core[1].svIdle(17), plen 0: [] -EVENT[22582]: 2.669617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22583]: 2.669629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22584]: 2.669643250 - core[0].svIdle(17), plen 0: [] -EVENT[22585]: 2.669747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22586]: 2.669756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22587]: 2.669770600 - core[1].svIdle(17), plen 0: [] -EVENT[22588]: 2.670617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22589]: 2.670629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22590]: 2.670643175 - core[0].svIdle(17), plen 0: [] -EVENT[22591]: 2.670747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22592]: 2.670756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22593]: 2.670770600 - core[1].svIdle(17), plen 0: [] -EVENT[22594]: 2.671617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22595]: 2.671629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22596]: 2.671643125 - core[0].svIdle(17), plen 0: [] -EVENT[22597]: 2.671747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22598]: 2.671757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22599]: 2.671770775 - core[1].svIdle(17), plen 0: [] -EVENT[22600]: 2.672617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22601]: 2.672629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22602]: 2.672643125 - core[0].svIdle(17), plen 0: [] -EVENT[22603]: 2.672747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22604]: 2.672756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22605]: 2.672770600 - core[1].svIdle(17), plen 0: [] -EVENT[22606]: 2.673617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22607]: 2.673629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[22608]: 2.673638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22609]: 2.673652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[22610]: 2.673677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 180, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.673677000] HEAP: Allocated 180 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22611]: 2.673692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22612]: 2.673706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22613]: 2.673747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22614]: 2.673768950 - core[0].svPrint(26), plen 72: [msg: I (3000) example: Task[0x3ffb7f40]: allocated 180 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.673768950] LOG: I (3000) example: Task[0x3ffb7f40]: allocated 180 bytes @ 0x3ffb4b10 -EVENT[22615]: 2.673777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22616]: 2.673785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22617]: 2.673795900 - core[1].svIdle(17), plen 0: [] -EVENT[22618]: 2.673806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[22619]: 2.673819700 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22620]: 2.673828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[22621]: 2.673836175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22622]: 2.673844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[22623]: 2.673857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[22624]: 2.673865725 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[22625]: 2.673874050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[22626]: 2.673882925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22627]: 2.673892325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22628]: 2.673901600 - core[0].svIdle(17), plen 0: [] -EVENT[22629]: 2.673916425 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22630]: 2.673965675 - core[1].svPrint(26), plen 64: [msg: I (3000) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.673965675] LOG: I (3000) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[22631]: 2.673984150 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.673984150] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22632]: 2.674002150 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[22633]: 2.674014850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22634]: 2.674023650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22635]: 2.674039225 - core[1].svIdle(17), plen 0: [] -EVENT[22636]: 2.674617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22637]: 2.674629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[22638]: 2.674638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22639]: 2.674652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[22640]: 2.674677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 360, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.674677000] HEAP: Allocated 360 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22641]: 2.674689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22642]: 2.674703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22643]: 2.674747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22644]: 2.674769475 - core[0].svPrint(26), plen 72: [msg: I (3001) example: Task[0x3ffb82a0]: allocated 360 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.674769475] LOG: I (3001) example: Task[0x3ffb82a0]: allocated 360 bytes @ 0x3ffb4b10 -EVENT[22645]: 2.674780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22646]: 2.674789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22647]: 2.674798950 - core[1].svIdle(17), plen 0: [] -EVENT[22648]: 2.674809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[22649]: 2.674822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22650]: 2.674831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[22651]: 2.674839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22652]: 2.674847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[22653]: 2.674860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[22654]: 2.674868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[22655]: 2.674877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[22656]: 2.674886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22657]: 2.674895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22658]: 2.674904625 - core[0].svIdle(17), plen 0: [] -EVENT[22659]: 2.674919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22660]: 2.674968700 - core[1].svPrint(26), plen 64: [msg: I (3001) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.674968700] LOG: I (3001) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[22661]: 2.674984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.674984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22662]: 2.675005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[22663]: 2.675018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22664]: 2.675026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22665]: 2.675042425 - core[1].svIdle(17), plen 0: [] -EVENT[22666]: 2.675617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22667]: 2.675629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[22668]: 2.675638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22669]: 2.675652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[22670]: 2.675676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 540, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.675676975] HEAP: Allocated 540 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22671]: 2.675689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22672]: 2.675703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22673]: 2.675747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22674]: 2.675769450 - core[0].svPrint(26), plen 72: [msg: I (3002) example: Task[0x3ffb8600]: allocated 540 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.675769450] LOG: I (3002) example: Task[0x3ffb8600]: allocated 540 bytes @ 0x3ffb4b10 -EVENT[22675]: 2.675778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22676]: 2.675786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22677]: 2.675797075 - core[1].svIdle(17), plen 0: [] -EVENT[22678]: 2.675807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[22679]: 2.675820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22680]: 2.675829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[22681]: 2.675837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22682]: 2.675845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[22683]: 2.675858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[22684]: 2.675866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[22685]: 2.675879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[22686]: 2.675887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22687]: 2.675895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22688]: 2.675905825 - core[0].svIdle(17), plen 0: [] -EVENT[22689]: 2.675920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22690]: 2.675970100 - core[1].svPrint(26), plen 64: [msg: I (3002) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.675970100] LOG: I (3002) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[22691]: 2.675985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.675985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22692]: 2.676003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[22693]: 2.676016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22694]: 2.676025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22695]: 2.676040650 - core[1].svIdle(17), plen 0: [] -EVENT[22696]: 2.676617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22697]: 2.676629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22698]: 2.676643175 - core[0].svIdle(17), plen 0: [] -EVENT[22699]: 2.676747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22700]: 2.676756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22701]: 2.676770600 - core[1].svIdle(17), plen 0: [] -EVENT[22702]: 2.677617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22703]: 2.677629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22704]: 2.677643125 - core[0].svIdle(17), plen 0: [] -EVENT[22705]: 2.677747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22706]: 2.677757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22707]: 2.677770775 - core[1].svIdle(17), plen 0: [] -EVENT[22708]: 2.678617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22709]: 2.678629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22710]: 2.678643125 - core[0].svIdle(17), plen 0: [] -EVENT[22711]: 2.678747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22712]: 2.678756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22713]: 2.678770600 - core[1].svIdle(17), plen 0: [] -EVENT[22714]: 2.679617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22715]: 2.679629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22716]: 2.679643250 - core[0].svIdle(17), plen 0: [] -EVENT[22717]: 2.679747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22718]: 2.679756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22719]: 2.679770600 - core[1].svIdle(17), plen 0: [] -EVENT[22720]: 2.680617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22721]: 2.680632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22722]: 2.680646225 - core[0].svIdle(17), plen 0: [] -EVENT[22723]: 2.680747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22724]: 2.680756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22725]: 2.680770600 - core[1].svIdle(17), plen 0: [] -EVENT[22726]: 2.681617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22727]: 2.681629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22728]: 2.681643125 - core[0].svIdle(17), plen 0: [] -EVENT[22729]: 2.681747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22730]: 2.681757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22731]: 2.681770775 - core[1].svIdle(17), plen 0: [] -EVENT[22732]: 2.682617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22733]: 2.682629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22734]: 2.682643125 - core[0].svIdle(17), plen 0: [] -EVENT[22735]: 2.682747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22736]: 2.682756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22737]: 2.682770600 - core[1].svIdle(17), plen 0: [] -EVENT[22738]: 2.683617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22739]: 2.683629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22740]: 2.683643250 - core[0].svIdle(17), plen 0: [] -EVENT[22741]: 2.683747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22742]: 2.683756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22743]: 2.683770600 - core[1].svIdle(17), plen 0: [] -EVENT[22744]: 2.684617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22745]: 2.684629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22746]: 2.684643175 - core[0].svIdle(17), plen 0: [] -EVENT[22747]: 2.684747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22748]: 2.684756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22749]: 2.684770600 - core[1].svIdle(17), plen 0: [] -EVENT[22750]: 2.685617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22751]: 2.685629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22752]: 2.685643125 - core[0].svIdle(17), plen 0: [] -EVENT[22753]: 2.685747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22754]: 2.685757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22755]: 2.685770775 - core[1].svIdle(17), plen 0: [] -EVENT[22756]: 2.686617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22757]: 2.686629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22758]: 2.686643125 - core[0].svIdle(17), plen 0: [] -EVENT[22759]: 2.686747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22760]: 2.686756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22761]: 2.686770600 - core[1].svIdle(17), plen 0: [] -EVENT[22762]: 2.687617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22763]: 2.687629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22764]: 2.687643250 - core[0].svIdle(17), plen 0: [] -EVENT[22765]: 2.687747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22766]: 2.687756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22767]: 2.687770600 - core[1].svIdle(17), plen 0: [] -EVENT[22768]: 2.688617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22769]: 2.688629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22770]: 2.688643175 - core[0].svIdle(17), plen 0: [] -EVENT[22771]: 2.688747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22772]: 2.688756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22773]: 2.688770600 - core[1].svIdle(17), plen 0: [] -EVENT[22774]: 2.689617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22775]: 2.689629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22776]: 2.689643125 - core[0].svIdle(17), plen 0: [] -EVENT[22777]: 2.689747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22778]: 2.689757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22779]: 2.689770775 - core[1].svIdle(17), plen 0: [] -EVENT[22780]: 2.690617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22781]: 2.690629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22782]: 2.690643125 - core[0].svIdle(17), plen 0: [] -EVENT[22783]: 2.690747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22784]: 2.690756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22785]: 2.690770600 - core[1].svIdle(17), plen 0: [] -EVENT[22786]: 2.691617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22787]: 2.691629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22788]: 2.691643250 - core[0].svIdle(17), plen 0: [] -EVENT[22789]: 2.691747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22790]: 2.691756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22791]: 2.691770600 - core[1].svIdle(17), plen 0: [] -EVENT[22792]: 2.692617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22793]: 2.692631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22794]: 2.692645550 - core[0].svIdle(17), plen 0: [] -EVENT[22795]: 2.692747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22796]: 2.692756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22797]: 2.692770600 - core[1].svIdle(17), plen 0: [] -EVENT[22798]: 2.693617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22799]: 2.693629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22800]: 2.693643125 - core[0].svIdle(17), plen 0: [] -EVENT[22801]: 2.693747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22802]: 2.693757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22803]: 2.693770775 - core[1].svIdle(17), plen 0: [] -EVENT[22804]: 2.694617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22805]: 2.694629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22806]: 2.694643125 - core[0].svIdle(17), plen 0: [] -EVENT[22807]: 2.694747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22808]: 2.694756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22809]: 2.694770600 - core[1].svIdle(17), plen 0: [] -EVENT[22810]: 2.695617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22811]: 2.695629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22812]: 2.695643250 - core[0].svIdle(17), plen 0: [] -EVENT[22813]: 2.695747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22814]: 2.695756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22815]: 2.695770600 - core[1].svIdle(17), plen 0: [] -EVENT[22816]: 2.696617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22817]: 2.696629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22818]: 2.696643175 - core[0].svIdle(17), plen 0: [] -EVENT[22819]: 2.696747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22820]: 2.696756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22821]: 2.696770600 - core[1].svIdle(17), plen 0: [] -EVENT[22822]: 2.697617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22823]: 2.697629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22824]: 2.697643125 - core[0].svIdle(17), plen 0: [] -EVENT[22825]: 2.697747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22826]: 2.697757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22827]: 2.697770775 - core[1].svIdle(17), plen 0: [] -EVENT[22828]: 2.698617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22829]: 2.698629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22830]: 2.698643125 - core[0].svIdle(17), plen 0: [] -EVENT[22831]: 2.698747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22832]: 2.698756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22833]: 2.698770600 - core[1].svIdle(17), plen 0: [] -EVENT[22834]: 2.699617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22835]: 2.699629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22836]: 2.699643250 - core[0].svIdle(17), plen 0: [] -EVENT[22837]: 2.699747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22838]: 2.699756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22839]: 2.699770600 - core[1].svIdle(17), plen 0: [] -EVENT[22840]: 2.700617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22841]: 2.700629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22842]: 2.700643175 - core[0].svIdle(17), plen 0: [] -EVENT[22843]: 2.700747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22844]: 2.700756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22845]: 2.700770600 - core[1].svIdle(17), plen 0: [] -EVENT[22846]: 2.701617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22847]: 2.701629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22848]: 2.701643125 - core[0].svIdle(17), plen 0: [] -EVENT[22849]: 2.701747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22850]: 2.701757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22851]: 2.701770775 - core[1].svIdle(17), plen 0: [] -EVENT[22852]: 2.702617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22853]: 2.702629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22854]: 2.702643125 - core[0].svIdle(17), plen 0: [] -EVENT[22855]: 2.702747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22856]: 2.702756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22857]: 2.702770600 - core[1].svIdle(17), plen 0: [] -EVENT[22858]: 2.703617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22859]: 2.703629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[22860]: 2.703638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22861]: 2.703652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[22862]: 2.703677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 182, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.703677000] HEAP: Allocated 182 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22863]: 2.703692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22864]: 2.703706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22865]: 2.703747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22866]: 2.703768950 - core[0].svPrint(26), plen 72: [msg: I (3030) example: Task[0x3ffb7f40]: allocated 182 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.703768950] LOG: I (3030) example: Task[0x3ffb7f40]: allocated 182 bytes @ 0x3ffb4b10 -EVENT[22867]: 2.703777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22868]: 2.703785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22869]: 2.703795925 - core[1].svIdle(17), plen 0: [] -EVENT[22870]: 2.703806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[22871]: 2.703819725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22872]: 2.703828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[22873]: 2.703836200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22874]: 2.703844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[22875]: 2.703857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[22876]: 2.703865750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[22877]: 2.703874000 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[22878]: 2.703882875 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22879]: 2.703892250 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22880]: 2.703901525 - core[0].svIdle(17), plen 0: [] -EVENT[22881]: 2.703916350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22882]: 2.703965600 - core[1].svPrint(26), plen 64: [msg: I (3030) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.703965600] LOG: I (3030) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[22883]: 2.703984075 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.703984075] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22884]: 2.704002075 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[22885]: 2.704014775 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22886]: 2.704023575 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22887]: 2.704039150 - core[1].svIdle(17), plen 0: [] -EVENT[22888]: 2.704617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22889]: 2.704629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[22890]: 2.704638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22891]: 2.704652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[22892]: 2.704677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 364, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.704677000] HEAP: Allocated 364 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22893]: 2.704689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22894]: 2.704703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22895]: 2.704747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22896]: 2.704769475 - core[0].svPrint(26), plen 72: [msg: I (3031) example: Task[0x3ffb82a0]: allocated 364 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.704769475] LOG: I (3031) example: Task[0x3ffb82a0]: allocated 364 bytes @ 0x3ffb4b10 -EVENT[22897]: 2.704780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22898]: 2.704789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22899]: 2.704798950 - core[1].svIdle(17), plen 0: [] -EVENT[22900]: 2.704809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[22901]: 2.704822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22902]: 2.704831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[22903]: 2.704839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22904]: 2.704847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[22905]: 2.704860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[22906]: 2.704868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[22907]: 2.704877100 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[22908]: 2.704885975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22909]: 2.704895350 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22910]: 2.704904525 - core[0].svIdle(17), plen 0: [] -EVENT[22911]: 2.704919350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22912]: 2.704968600 - core[1].svPrint(26), plen 64: [msg: I (3031) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.704968600] LOG: I (3031) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[22913]: 2.704984200 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.704984200] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22914]: 2.705005275 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[22915]: 2.705017950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22916]: 2.705026750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22917]: 2.705042325 - core[1].svIdle(17), plen 0: [] -EVENT[22918]: 2.705617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22919]: 2.705629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[22920]: 2.705638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22921]: 2.705652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[22922]: 2.705676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 546, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.705676975] HEAP: Allocated 546 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22923]: 2.705689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22924]: 2.705703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22925]: 2.705747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22926]: 2.705769450 - core[0].svPrint(26), plen 72: [msg: I (3032) example: Task[0x3ffb8600]: allocated 546 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.705769450] LOG: I (3032) example: Task[0x3ffb8600]: allocated 546 bytes @ 0x3ffb4b10 -EVENT[22927]: 2.705778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22928]: 2.705786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22929]: 2.705797075 - core[1].svIdle(17), plen 0: [] -EVENT[22930]: 2.705807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[22931]: 2.705820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22932]: 2.705829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[22933]: 2.705837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22934]: 2.705845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[22935]: 2.705858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[22936]: 2.705866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[22937]: 2.705879175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[22938]: 2.705887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22939]: 2.705895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[22940]: 2.705905775 - core[0].svIdle(17), plen 0: [] -EVENT[22941]: 2.705920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[22942]: 2.705970075 - core[1].svPrint(26), plen 64: [msg: I (3032) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.705970075] LOG: I (3032) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[22943]: 2.705985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.705985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[22944]: 2.706003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[22945]: 2.706016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[22946]: 2.706025150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22947]: 2.706040600 - core[1].svIdle(17), plen 0: [] -EVENT[22948]: 2.706617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22949]: 2.706629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22950]: 2.706643175 - core[0].svIdle(17), plen 0: [] -EVENT[22951]: 2.706747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22952]: 2.706756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22953]: 2.706770600 - core[1].svIdle(17), plen 0: [] -EVENT[22954]: 2.707617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22955]: 2.707629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22956]: 2.707643125 - core[0].svIdle(17), plen 0: [] -EVENT[22957]: 2.707747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22958]: 2.707757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22959]: 2.707770775 - core[1].svIdle(17), plen 0: [] -EVENT[22960]: 2.708617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22961]: 2.708629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22962]: 2.708643125 - core[0].svIdle(17), plen 0: [] -EVENT[22963]: 2.708747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22964]: 2.708756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22965]: 2.708770600 - core[1].svIdle(17), plen 0: [] -EVENT[22966]: 2.709617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22967]: 2.709629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22968]: 2.709643250 - core[0].svIdle(17), plen 0: [] -EVENT[22969]: 2.709747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22970]: 2.709756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22971]: 2.709770600 - core[1].svIdle(17), plen 0: [] -EVENT[22972]: 2.710617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22973]: 2.710632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22974]: 2.710646225 - core[0].svIdle(17), plen 0: [] -EVENT[22975]: 2.710747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22976]: 2.710756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22977]: 2.710770600 - core[1].svIdle(17), plen 0: [] -EVENT[22978]: 2.711617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22979]: 2.711629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22980]: 2.711643125 - core[0].svIdle(17), plen 0: [] -EVENT[22981]: 2.711747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22982]: 2.711757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22983]: 2.711770775 - core[1].svIdle(17), plen 0: [] -EVENT[22984]: 2.712617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22985]: 2.712629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22986]: 2.712643125 - core[0].svIdle(17), plen 0: [] -EVENT[22987]: 2.712747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22988]: 2.712756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22989]: 2.712770600 - core[1].svIdle(17), plen 0: [] -EVENT[22990]: 2.713617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22991]: 2.713629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22992]: 2.713643250 - core[0].svIdle(17), plen 0: [] -EVENT[22993]: 2.713747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22994]: 2.713756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[22995]: 2.713770600 - core[1].svIdle(17), plen 0: [] -EVENT[22996]: 2.714617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[22997]: 2.714629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[22998]: 2.714643175 - core[0].svIdle(17), plen 0: [] -EVENT[22999]: 2.714747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23000]: 2.714756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23001]: 2.714770600 - core[1].svIdle(17), plen 0: [] -EVENT[23002]: 2.715617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23003]: 2.715629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23004]: 2.715643125 - core[0].svIdle(17), plen 0: [] -EVENT[23005]: 2.715747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23006]: 2.715757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23007]: 2.715770775 - core[1].svIdle(17), plen 0: [] -EVENT[23008]: 2.716617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23009]: 2.716629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23010]: 2.716643125 - core[0].svIdle(17), plen 0: [] -EVENT[23011]: 2.716747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23012]: 2.716756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23013]: 2.716770600 - core[1].svIdle(17), plen 0: [] -EVENT[23014]: 2.717617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23015]: 2.717629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23016]: 2.717643250 - core[0].svIdle(17), plen 0: [] -EVENT[23017]: 2.717747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23018]: 2.717756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23019]: 2.717770600 - core[1].svIdle(17), plen 0: [] -EVENT[23020]: 2.718617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23021]: 2.718629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23022]: 2.718643175 - core[0].svIdle(17), plen 0: [] -EVENT[23023]: 2.718747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23024]: 2.718756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23025]: 2.718770600 - core[1].svIdle(17), plen 0: [] -EVENT[23026]: 2.719617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23027]: 2.719629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23028]: 2.719643125 - core[0].svIdle(17), plen 0: [] -EVENT[23029]: 2.719747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23030]: 2.719757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23031]: 2.719770775 - core[1].svIdle(17), plen 0: [] -EVENT[23032]: 2.720617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23033]: 2.720629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23034]: 2.720643125 - core[0].svIdle(17), plen 0: [] -EVENT[23035]: 2.720747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23036]: 2.720756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23037]: 2.720770600 - core[1].svIdle(17), plen 0: [] -EVENT[23038]: 2.721617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23039]: 2.721629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23040]: 2.721643250 - core[0].svIdle(17), plen 0: [] -EVENT[23041]: 2.721747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23042]: 2.721756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23043]: 2.721770600 - core[1].svIdle(17), plen 0: [] -EVENT[23044]: 2.722617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23045]: 2.722631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23046]: 2.722645550 - core[0].svIdle(17), plen 0: [] -EVENT[23047]: 2.722747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23048]: 2.722756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23049]: 2.722770600 - core[1].svIdle(17), plen 0: [] -EVENT[23050]: 2.723617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23051]: 2.723629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23052]: 2.723643125 - core[0].svIdle(17), plen 0: [] -EVENT[23053]: 2.723747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23054]: 2.723757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23055]: 2.723770775 - core[1].svIdle(17), plen 0: [] -EVENT[23056]: 2.724617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23057]: 2.724629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23058]: 2.724643125 - core[0].svIdle(17), plen 0: [] -EVENT[23059]: 2.724747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23060]: 2.724756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23061]: 2.724770600 - core[1].svIdle(17), plen 0: [] -EVENT[23062]: 2.725617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23063]: 2.725629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23064]: 2.725643250 - core[0].svIdle(17), plen 0: [] -EVENT[23065]: 2.725747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23066]: 2.725756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23067]: 2.725770600 - core[1].svIdle(17), plen 0: [] -EVENT[23068]: 2.726617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23069]: 2.726629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23070]: 2.726643175 - core[0].svIdle(17), plen 0: [] -EVENT[23071]: 2.726747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23072]: 2.726756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23073]: 2.726770600 - core[1].svIdle(17), plen 0: [] -EVENT[23074]: 2.727617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23075]: 2.727629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23076]: 2.727643125 - core[0].svIdle(17), plen 0: [] -EVENT[23077]: 2.727747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23078]: 2.727757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23079]: 2.727770775 - core[1].svIdle(17), plen 0: [] -EVENT[23080]: 2.728617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23081]: 2.728629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23082]: 2.728643125 - core[0].svIdle(17), plen 0: [] -EVENT[23083]: 2.728747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23084]: 2.728756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23085]: 2.728770600 - core[1].svIdle(17), plen 0: [] -EVENT[23086]: 2.729617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23087]: 2.729629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23088]: 2.729643250 - core[0].svIdle(17), plen 0: [] -EVENT[23089]: 2.729747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23090]: 2.729756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23091]: 2.729770600 - core[1].svIdle(17), plen 0: [] -EVENT[23092]: 2.730617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23093]: 2.730629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23094]: 2.730643175 - core[0].svIdle(17), plen 0: [] -EVENT[23095]: 2.730747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23096]: 2.730756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23097]: 2.730770600 - core[1].svIdle(17), plen 0: [] -EVENT[23098]: 2.731617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23099]: 2.731629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23100]: 2.731643125 - core[0].svIdle(17), plen 0: [] -EVENT[23101]: 2.731747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23102]: 2.731757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23103]: 2.731770775 - core[1].svIdle(17), plen 0: [] -EVENT[23104]: 2.732617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23105]: 2.732629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23106]: 2.732643125 - core[0].svIdle(17), plen 0: [] -EVENT[23107]: 2.732747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23108]: 2.732756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23109]: 2.732770600 - core[1].svIdle(17), plen 0: [] -EVENT[23110]: 2.733617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23111]: 2.733629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[23112]: 2.733638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23113]: 2.733652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[23114]: 2.733677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 184, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.733677000] HEAP: Allocated 184 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23115]: 2.733692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23116]: 2.733706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23117]: 2.733747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23118]: 2.733768950 - core[0].svPrint(26), plen 72: [msg: I (3060) example: Task[0x3ffb7f40]: allocated 184 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.733768950] LOG: I (3060) example: Task[0x3ffb7f40]: allocated 184 bytes @ 0x3ffb4b10 -EVENT[23119]: 2.733777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23120]: 2.733785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23121]: 2.733795925 - core[1].svIdle(17), plen 0: [] -EVENT[23122]: 2.733806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[23123]: 2.733819725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23124]: 2.733828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[23125]: 2.733836200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23126]: 2.733844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[23127]: 2.733857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[23128]: 2.733865750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[23129]: 2.733874050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[23130]: 2.733882925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23131]: 2.733892325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23132]: 2.733901625 - core[0].svIdle(17), plen 0: [] -EVENT[23133]: 2.733916450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23134]: 2.733965700 - core[1].svPrint(26), plen 64: [msg: I (3060) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.733965700] LOG: I (3060) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[23135]: 2.733984175 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.733984175] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23136]: 2.734002175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[23137]: 2.734014850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23138]: 2.734023650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23139]: 2.734039225 - core[1].svIdle(17), plen 0: [] -EVENT[23140]: 2.734617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23141]: 2.734629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[23142]: 2.734638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23143]: 2.734652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[23144]: 2.734677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 368, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.734677000] HEAP: Allocated 368 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23145]: 2.734689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23146]: 2.734703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23147]: 2.734747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23148]: 2.734769475 - core[0].svPrint(26), plen 72: [msg: I (3061) example: Task[0x3ffb82a0]: allocated 368 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.734769475] LOG: I (3061) example: Task[0x3ffb82a0]: allocated 368 bytes @ 0x3ffb4b10 -EVENT[23149]: 2.734780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23150]: 2.734789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23151]: 2.734798950 - core[1].svIdle(17), plen 0: [] -EVENT[23152]: 2.734809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[23153]: 2.734822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23154]: 2.734831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[23155]: 2.734839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23156]: 2.734847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[23157]: 2.734860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[23158]: 2.734868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[23159]: 2.734877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[23160]: 2.734886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23161]: 2.734895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23162]: 2.734904625 - core[0].svIdle(17), plen 0: [] -EVENT[23163]: 2.734919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23164]: 2.734968700 - core[1].svPrint(26), plen 64: [msg: I (3061) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.734968700] LOG: I (3061) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[23165]: 2.734984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.734984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23166]: 2.735005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[23167]: 2.735018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23168]: 2.735026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23169]: 2.735042425 - core[1].svIdle(17), plen 0: [] -EVENT[23170]: 2.735617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23171]: 2.735629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[23172]: 2.735638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23173]: 2.735652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[23174]: 2.735676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 552, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.735676975] HEAP: Allocated 552 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23175]: 2.735689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23176]: 2.735703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23177]: 2.735747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23178]: 2.735769450 - core[0].svPrint(26), plen 72: [msg: I (3062) example: Task[0x3ffb8600]: allocated 552 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.735769450] LOG: I (3062) example: Task[0x3ffb8600]: allocated 552 bytes @ 0x3ffb4b10 -EVENT[23179]: 2.735778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23180]: 2.735786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23181]: 2.735797075 - core[1].svIdle(17), plen 0: [] -EVENT[23182]: 2.735807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[23183]: 2.735820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23184]: 2.735829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[23185]: 2.735837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23186]: 2.735845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[23187]: 2.735858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[23188]: 2.735866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[23189]: 2.735879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[23190]: 2.735887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23191]: 2.735895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23192]: 2.735905825 - core[0].svIdle(17), plen 0: [] -EVENT[23193]: 2.735920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23194]: 2.735970100 - core[1].svPrint(26), plen 64: [msg: I (3062) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.735970100] LOG: I (3062) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[23195]: 2.735985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.735985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23196]: 2.736003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[23197]: 2.736016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23198]: 2.736025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23199]: 2.736040650 - core[1].svIdle(17), plen 0: [] -EVENT[23200]: 2.736617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23201]: 2.736629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23202]: 2.736643175 - core[0].svIdle(17), plen 0: [] -EVENT[23203]: 2.736747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23204]: 2.736756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23205]: 2.736770600 - core[1].svIdle(17), plen 0: [] -EVENT[23206]: 2.737617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23207]: 2.737629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23208]: 2.737643125 - core[0].svIdle(17), plen 0: [] -EVENT[23209]: 2.737747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23210]: 2.737757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23211]: 2.737770775 - core[1].svIdle(17), plen 0: [] -EVENT[23212]: 2.738617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23213]: 2.738629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23214]: 2.738643125 - core[0].svIdle(17), plen 0: [] -EVENT[23215]: 2.738747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23216]: 2.738756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23217]: 2.738770600 - core[1].svIdle(17), plen 0: [] -EVENT[23218]: 2.739617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23219]: 2.739629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23220]: 2.739643250 - core[0].svIdle(17), plen 0: [] -EVENT[23221]: 2.739747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23222]: 2.739756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23223]: 2.739770600 - core[1].svIdle(17), plen 0: [] -EVENT[23224]: 2.740617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23225]: 2.740632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23226]: 2.740646225 - core[0].svIdle(17), plen 0: [] -EVENT[23227]: 2.740747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23228]: 2.740756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23229]: 2.740770600 - core[1].svIdle(17), plen 0: [] -EVENT[23230]: 2.741617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23231]: 2.741629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23232]: 2.741643125 - core[0].svIdle(17), plen 0: [] -EVENT[23233]: 2.741747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23234]: 2.741757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23235]: 2.741770775 - core[1].svIdle(17), plen 0: [] -EVENT[23236]: 2.742617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23237]: 2.742629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23238]: 2.742643125 - core[0].svIdle(17), plen 0: [] -EVENT[23239]: 2.742747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23240]: 2.742756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23241]: 2.742770600 - core[1].svIdle(17), plen 0: [] -EVENT[23242]: 2.743617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23243]: 2.743629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23244]: 2.743643250 - core[0].svIdle(17), plen 0: [] -EVENT[23245]: 2.743747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23246]: 2.743756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23247]: 2.743770600 - core[1].svIdle(17), plen 0: [] -EVENT[23248]: 2.744617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23249]: 2.744629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23250]: 2.744643175 - core[0].svIdle(17), plen 0: [] -EVENT[23251]: 2.744747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23252]: 2.744756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23253]: 2.744770600 - core[1].svIdle(17), plen 0: [] -EVENT[23254]: 2.745617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23255]: 2.745629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23256]: 2.745643125 - core[0].svIdle(17), plen 0: [] -EVENT[23257]: 2.745747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23258]: 2.745757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23259]: 2.745770775 - core[1].svIdle(17), plen 0: [] -EVENT[23260]: 2.746617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23261]: 2.746629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23262]: 2.746643125 - core[0].svIdle(17), plen 0: [] -EVENT[23263]: 2.746747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23264]: 2.746756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23265]: 2.746770600 - core[1].svIdle(17), plen 0: [] -EVENT[23266]: 2.747617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23267]: 2.747629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23268]: 2.747643250 - core[0].svIdle(17), plen 0: [] -EVENT[23269]: 2.747747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23270]: 2.747756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23271]: 2.747770600 - core[1].svIdle(17), plen 0: [] -EVENT[23272]: 2.748617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23273]: 2.748629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23274]: 2.748643175 - core[0].svIdle(17), plen 0: [] -EVENT[23275]: 2.748747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23276]: 2.748756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23277]: 2.748770600 - core[1].svIdle(17), plen 0: [] -EVENT[23278]: 2.749617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23279]: 2.749629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23280]: 2.749643125 - core[0].svIdle(17), plen 0: [] -EVENT[23281]: 2.749747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23282]: 2.749757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23283]: 2.749770775 - core[1].svIdle(17), plen 0: [] -EVENT[23284]: 2.750617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23285]: 2.750629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23286]: 2.750643125 - core[0].svIdle(17), plen 0: [] -EVENT[23287]: 2.750747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23288]: 2.750756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23289]: 2.750770600 - core[1].svIdle(17), plen 0: [] -EVENT[23290]: 2.751617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23291]: 2.751629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23292]: 2.751643250 - core[0].svIdle(17), plen 0: [] -EVENT[23293]: 2.751747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23294]: 2.751756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23295]: 2.751770600 - core[1].svIdle(17), plen 0: [] -EVENT[23296]: 2.752617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23297]: 2.752631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23298]: 2.752645550 - core[0].svIdle(17), plen 0: [] -EVENT[23299]: 2.752747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23300]: 2.752756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23301]: 2.752770600 - core[1].svIdle(17), plen 0: [] -EVENT[23302]: 2.753617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23303]: 2.753629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23304]: 2.753643125 - core[0].svIdle(17), plen 0: [] -EVENT[23305]: 2.753747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23306]: 2.753757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23307]: 2.753770775 - core[1].svIdle(17), plen 0: [] -EVENT[23308]: 2.754617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23309]: 2.754629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23310]: 2.754643125 - core[0].svIdle(17), plen 0: [] -EVENT[23311]: 2.754747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23312]: 2.754756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23313]: 2.754770600 - core[1].svIdle(17), plen 0: [] -EVENT[23314]: 2.755617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23315]: 2.755629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23316]: 2.755643250 - core[0].svIdle(17), plen 0: [] -EVENT[23317]: 2.755747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23318]: 2.755756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23319]: 2.755770600 - core[1].svIdle(17), plen 0: [] -EVENT[23320]: 2.756617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23321]: 2.756629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23322]: 2.756643175 - core[0].svIdle(17), plen 0: [] -EVENT[23323]: 2.756747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23324]: 2.756756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23325]: 2.756770600 - core[1].svIdle(17), plen 0: [] -EVENT[23326]: 2.757617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23327]: 2.757629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23328]: 2.757643125 - core[0].svIdle(17), plen 0: [] -EVENT[23329]: 2.757747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23330]: 2.757757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23331]: 2.757770775 - core[1].svIdle(17), plen 0: [] -EVENT[23332]: 2.758617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23333]: 2.758629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23334]: 2.758643125 - core[0].svIdle(17), plen 0: [] -EVENT[23335]: 2.758747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23336]: 2.758756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23337]: 2.758770600 - core[1].svIdle(17), plen 0: [] -EVENT[23338]: 2.759617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23339]: 2.759629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23340]: 2.759643250 - core[0].svIdle(17), plen 0: [] -EVENT[23341]: 2.759747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23342]: 2.759756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23343]: 2.759770600 - core[1].svIdle(17), plen 0: [] -EVENT[23344]: 2.760617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23345]: 2.760629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23346]: 2.760643175 - core[0].svIdle(17), plen 0: [] -EVENT[23347]: 2.760747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23348]: 2.760756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23349]: 2.760770600 - core[1].svIdle(17), plen 0: [] -EVENT[23350]: 2.761617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23351]: 2.761629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23352]: 2.761643125 - core[0].svIdle(17), plen 0: [] -EVENT[23353]: 2.761747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23354]: 2.761757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23355]: 2.761770775 - core[1].svIdle(17), plen 0: [] -EVENT[23356]: 2.762617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23357]: 2.762629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23358]: 2.762643125 - core[0].svIdle(17), plen 0: [] -EVENT[23359]: 2.762747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23360]: 2.762756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23361]: 2.762770600 - core[1].svIdle(17), plen 0: [] -EVENT[23362]: 2.763617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23363]: 2.763629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[23364]: 2.763638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23365]: 2.763652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[23366]: 2.763677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 186, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.763677000] HEAP: Allocated 186 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23367]: 2.763692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23368]: 2.763706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23369]: 2.763747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23370]: 2.763768950 - core[0].svPrint(26), plen 72: [msg: I (3090) example: Task[0x3ffb7f40]: allocated 186 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.763768950] LOG: I (3090) example: Task[0x3ffb7f40]: allocated 186 bytes @ 0x3ffb4b10 -EVENT[23371]: 2.763777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23372]: 2.763785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23373]: 2.763795925 - core[1].svIdle(17), plen 0: [] -EVENT[23374]: 2.763806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[23375]: 2.763819725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23376]: 2.763828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[23377]: 2.763836200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23378]: 2.763844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[23379]: 2.763857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[23380]: 2.763865750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[23381]: 2.763874050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[23382]: 2.763882925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23383]: 2.763892325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23384]: 2.763901625 - core[0].svIdle(17), plen 0: [] -EVENT[23385]: 2.763916450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23386]: 2.763965700 - core[1].svPrint(26), plen 64: [msg: I (3090) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.763965700] LOG: I (3090) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[23387]: 2.763984175 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.763984175] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23388]: 2.764002175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[23389]: 2.764014850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23390]: 2.764023650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23391]: 2.764039225 - core[1].svIdle(17), plen 0: [] -EVENT[23392]: 2.764617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23393]: 2.764629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[23394]: 2.764638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23395]: 2.764652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[23396]: 2.764677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 372, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.764677000] HEAP: Allocated 372 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23397]: 2.764689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23398]: 2.764703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23399]: 2.764747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23400]: 2.764769475 - core[0].svPrint(26), plen 72: [msg: I (3091) example: Task[0x3ffb82a0]: allocated 372 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.764769475] LOG: I (3091) example: Task[0x3ffb82a0]: allocated 372 bytes @ 0x3ffb4b10 -EVENT[23401]: 2.764780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23402]: 2.764789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23403]: 2.764798950 - core[1].svIdle(17), plen 0: [] -EVENT[23404]: 2.764809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[23405]: 2.764822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23406]: 2.764831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[23407]: 2.764839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23408]: 2.764847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[23409]: 2.764860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[23410]: 2.764868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[23411]: 2.764877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[23412]: 2.764886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23413]: 2.764895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23414]: 2.764904625 - core[0].svIdle(17), plen 0: [] -EVENT[23415]: 2.764919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23416]: 2.764968700 - core[1].svPrint(26), plen 64: [msg: I (3091) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.764968700] LOG: I (3091) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[23417]: 2.764984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.764984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23418]: 2.765005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[23419]: 2.765018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23420]: 2.765026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23421]: 2.765042425 - core[1].svIdle(17), plen 0: [] -EVENT[23422]: 2.765617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23423]: 2.765629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[23424]: 2.765638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23425]: 2.765652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[23426]: 2.765676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 558, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.765676975] HEAP: Allocated 558 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23427]: 2.765689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23428]: 2.765703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23429]: 2.765747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23430]: 2.765769450 - core[0].svPrint(26), plen 72: [msg: I (3092) example: Task[0x3ffb8600]: allocated 558 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.765769450] LOG: I (3092) example: Task[0x3ffb8600]: allocated 558 bytes @ 0x3ffb4b10 -EVENT[23431]: 2.765778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23432]: 2.765786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23433]: 2.765797075 - core[1].svIdle(17), plen 0: [] -EVENT[23434]: 2.765807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[23435]: 2.765820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23436]: 2.765829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[23437]: 2.765837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23438]: 2.765845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[23439]: 2.765858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[23440]: 2.765866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[23441]: 2.765879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[23442]: 2.765887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23443]: 2.765895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23444]: 2.765905825 - core[0].svIdle(17), plen 0: [] -EVENT[23445]: 2.765920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23446]: 2.765970100 - core[1].svPrint(26), plen 64: [msg: I (3092) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.765970100] LOG: I (3092) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[23447]: 2.765985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.765985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23448]: 2.766003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[23449]: 2.766016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23450]: 2.766025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23451]: 2.766040650 - core[1].svIdle(17), plen 0: [] -EVENT[23452]: 2.766617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23453]: 2.766629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23454]: 2.766643175 - core[0].svIdle(17), plen 0: [] -EVENT[23455]: 2.766747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23456]: 2.766756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23457]: 2.766770600 - core[1].svIdle(17), plen 0: [] -EVENT[23458]: 2.767617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23459]: 2.767629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23460]: 2.767643125 - core[0].svIdle(17), plen 0: [] -EVENT[23461]: 2.767747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23462]: 2.767757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23463]: 2.767770775 - core[1].svIdle(17), plen 0: [] -EVENT[23464]: 2.768617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23465]: 2.768629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23466]: 2.768643125 - core[0].svIdle(17), plen 0: [] -EVENT[23467]: 2.768747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23468]: 2.768756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23469]: 2.768770600 - core[1].svIdle(17), plen 0: [] -EVENT[23470]: 2.769617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23471]: 2.769629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23472]: 2.769643250 - core[0].svIdle(17), plen 0: [] -EVENT[23473]: 2.769747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23474]: 2.769756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23475]: 2.769770600 - core[1].svIdle(17), plen 0: [] -EVENT[23476]: 2.770617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23477]: 2.770632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23478]: 2.770646225 - core[0].svIdle(17), plen 0: [] -EVENT[23479]: 2.770747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23480]: 2.770756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23481]: 2.770770600 - core[1].svIdle(17), plen 0: [] -EVENT[23482]: 2.771617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23483]: 2.771629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23484]: 2.771643125 - core[0].svIdle(17), plen 0: [] -EVENT[23485]: 2.771747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23486]: 2.771757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23487]: 2.771770775 - core[1].svIdle(17), plen 0: [] -EVENT[23488]: 2.772617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23489]: 2.772629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23490]: 2.772643125 - core[0].svIdle(17), plen 0: [] -EVENT[23491]: 2.772747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23492]: 2.772756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23493]: 2.772770600 - core[1].svIdle(17), plen 0: [] -EVENT[23494]: 2.773617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23495]: 2.773629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23496]: 2.773643250 - core[0].svIdle(17), plen 0: [] -EVENT[23497]: 2.773747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23498]: 2.773756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23499]: 2.773770600 - core[1].svIdle(17), plen 0: [] -EVENT[23500]: 2.774617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23501]: 2.774629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23502]: 2.774643175 - core[0].svIdle(17), plen 0: [] -EVENT[23503]: 2.774747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23504]: 2.774756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23505]: 2.774770600 - core[1].svIdle(17), plen 0: [] -EVENT[23506]: 2.775617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23507]: 2.775629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23508]: 2.775643125 - core[0].svIdle(17), plen 0: [] -EVENT[23509]: 2.775747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23510]: 2.775757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23511]: 2.775770775 - core[1].svIdle(17), plen 0: [] -EVENT[23512]: 2.776617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23513]: 2.776629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23514]: 2.776643125 - core[0].svIdle(17), plen 0: [] -EVENT[23515]: 2.776747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23516]: 2.776756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23517]: 2.776770600 - core[1].svIdle(17), plen 0: [] -EVENT[23518]: 2.777617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23519]: 2.777629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23520]: 2.777643250 - core[0].svIdle(17), plen 0: [] -EVENT[23521]: 2.777747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23522]: 2.777756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23523]: 2.777770600 - core[1].svIdle(17), plen 0: [] -EVENT[23524]: 2.778617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23525]: 2.778629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23526]: 2.778643175 - core[0].svIdle(17), plen 0: [] -EVENT[23527]: 2.778747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23528]: 2.778756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23529]: 2.778770600 - core[1].svIdle(17), plen 0: [] -EVENT[23530]: 2.779617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23531]: 2.779629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23532]: 2.779643125 - core[0].svIdle(17), plen 0: [] -EVENT[23533]: 2.779747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23534]: 2.779757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23535]: 2.779770775 - core[1].svIdle(17), plen 0: [] -EVENT[23536]: 2.780617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23537]: 2.780629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23538]: 2.780643125 - core[0].svIdle(17), plen 0: [] -EVENT[23539]: 2.780747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23540]: 2.780756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23541]: 2.780770600 - core[1].svIdle(17), plen 0: [] -EVENT[23542]: 2.781617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23543]: 2.781629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23544]: 2.781643250 - core[0].svIdle(17), plen 0: [] -EVENT[23545]: 2.781747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23546]: 2.781756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23547]: 2.781770600 - core[1].svIdle(17), plen 0: [] -EVENT[23548]: 2.782617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23549]: 2.782631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23550]: 2.782645550 - core[0].svIdle(17), plen 0: [] -EVENT[23551]: 2.782747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23552]: 2.782756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23553]: 2.782770600 - core[1].svIdle(17), plen 0: [] -EVENT[23554]: 2.783617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23555]: 2.783629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23556]: 2.783643125 - core[0].svIdle(17), plen 0: [] -EVENT[23557]: 2.783747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23558]: 2.783757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23559]: 2.783770775 - core[1].svIdle(17), plen 0: [] -EVENT[23560]: 2.784617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23561]: 2.784629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23562]: 2.784643125 - core[0].svIdle(17), plen 0: [] -EVENT[23563]: 2.784747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23564]: 2.784756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23565]: 2.784770600 - core[1].svIdle(17), plen 0: [] -EVENT[23566]: 2.785617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23567]: 2.785629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23568]: 2.785643250 - core[0].svIdle(17), plen 0: [] -EVENT[23569]: 2.785747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23570]: 2.785756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23571]: 2.785770600 - core[1].svIdle(17), plen 0: [] -EVENT[23572]: 2.786617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23573]: 2.786629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23574]: 2.786643175 - core[0].svIdle(17), plen 0: [] -EVENT[23575]: 2.786747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23576]: 2.786756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23577]: 2.786770600 - core[1].svIdle(17), plen 0: [] -EVENT[23578]: 2.787617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23579]: 2.787629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23580]: 2.787643125 - core[0].svIdle(17), plen 0: [] -EVENT[23581]: 2.787747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23582]: 2.787757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23583]: 2.787770775 - core[1].svIdle(17), plen 0: [] -EVENT[23584]: 2.788617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23585]: 2.788629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23586]: 2.788643125 - core[0].svIdle(17), plen 0: [] -EVENT[23587]: 2.788747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23588]: 2.788756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23589]: 2.788770600 - core[1].svIdle(17), plen 0: [] -EVENT[23590]: 2.789617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23591]: 2.789629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23592]: 2.789643250 - core[0].svIdle(17), plen 0: [] -EVENT[23593]: 2.789747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23594]: 2.789756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23595]: 2.789770600 - core[1].svIdle(17), plen 0: [] -EVENT[23596]: 2.790617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23597]: 2.790629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23598]: 2.790643175 - core[0].svIdle(17), plen 0: [] -EVENT[23599]: 2.790747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23600]: 2.790756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23601]: 2.790770600 - core[1].svIdle(17), plen 0: [] -EVENT[23602]: 2.791617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23603]: 2.791629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23604]: 2.791643125 - core[0].svIdle(17), plen 0: [] -EVENT[23605]: 2.791747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23606]: 2.791757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23607]: 2.791770775 - core[1].svIdle(17), plen 0: [] -EVENT[23608]: 2.792617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23609]: 2.792629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23610]: 2.792643125 - core[0].svIdle(17), plen 0: [] -EVENT[23611]: 2.792747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23612]: 2.792756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23613]: 2.792770600 - core[1].svIdle(17), plen 0: [] -EVENT[23614]: 2.793617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23615]: 2.793629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[23616]: 2.793638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23617]: 2.793652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[23618]: 2.793677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 188, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.793677000] HEAP: Allocated 188 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23619]: 2.793692775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23620]: 2.793706775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23621]: 2.793747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23622]: 2.793768950 - core[0].svPrint(26), plen 72: [msg: I (3120) example: Task[0x3ffb7f40]: allocated 188 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.793768950] LOG: I (3120) example: Task[0x3ffb7f40]: allocated 188 bytes @ 0x3ffb4b10 -EVENT[23623]: 2.793777025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23624]: 2.793785775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23625]: 2.793795925 - core[1].svIdle(17), plen 0: [] -EVENT[23626]: 2.793806700 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[23627]: 2.793819725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23628]: 2.793828250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[23629]: 2.793836200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23630]: 2.793844725 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[23631]: 2.793857350 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[23632]: 2.793865750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[23633]: 2.793874050 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[23634]: 2.793882925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23635]: 2.793892325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23636]: 2.793901625 - core[0].svIdle(17), plen 0: [] -EVENT[23637]: 2.793916450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23638]: 2.793965700 - core[1].svPrint(26), plen 64: [msg: I (3120) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.793965700] LOG: I (3120) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[23639]: 2.793984175 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.793984175] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23640]: 2.794002175 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[23641]: 2.794014850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23642]: 2.794023650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23643]: 2.794039225 - core[1].svIdle(17), plen 0: [] -EVENT[23644]: 2.794617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23645]: 2.794629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[23646]: 2.794638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23647]: 2.794652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[23648]: 2.794677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 376, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.794677000] HEAP: Allocated 376 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23649]: 2.794689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23650]: 2.794703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23651]: 2.794747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23652]: 2.794769475 - core[0].svPrint(26), plen 72: [msg: I (3121) example: Task[0x3ffb82a0]: allocated 376 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.794769475] LOG: I (3121) example: Task[0x3ffb82a0]: allocated 376 bytes @ 0x3ffb4b10 -EVENT[23653]: 2.794780050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23654]: 2.794789050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23655]: 2.794798950 - core[1].svIdle(17), plen 0: [] -EVENT[23656]: 2.794809725 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[23657]: 2.794822750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23658]: 2.794831275 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[23659]: 2.794839250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23660]: 2.794847825 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[23661]: 2.794860475 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[23662]: 2.794868850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[23663]: 2.794877175 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[23664]: 2.794886050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23665]: 2.794895425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23666]: 2.794904625 - core[0].svIdle(17), plen 0: [] -EVENT[23667]: 2.794919450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23668]: 2.794968700 - core[1].svPrint(26), plen 64: [msg: I (3121) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.794968700] LOG: I (3121) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[23669]: 2.794984300 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.794984300] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23670]: 2.795005350 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[23671]: 2.795018050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23672]: 2.795026850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23673]: 2.795042425 - core[1].svIdle(17), plen 0: [] -EVENT[23674]: 2.795617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23675]: 2.795629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[23676]: 2.795638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23677]: 2.795652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[23678]: 2.795676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 564, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.795676975] HEAP: Allocated 564 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23679]: 2.795689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23680]: 2.795703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23681]: 2.795747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23682]: 2.795769450 - core[0].svPrint(26), plen 72: [msg: I (3122) example: Task[0x3ffb8600]: allocated 564 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.795769450] LOG: I (3122) example: Task[0x3ffb8600]: allocated 564 bytes @ 0x3ffb4b10 -EVENT[23683]: 2.795778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23684]: 2.795786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23685]: 2.795797075 - core[1].svIdle(17), plen 0: [] -EVENT[23686]: 2.795807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[23687]: 2.795820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23688]: 2.795829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[23689]: 2.795837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23690]: 2.795845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[23691]: 2.795858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[23692]: 2.795866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[23693]: 2.795879250 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[23694]: 2.795887275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23695]: 2.795895725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23696]: 2.795905825 - core[0].svIdle(17), plen 0: [] -EVENT[23697]: 2.795920750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23698]: 2.795970100 - core[1].svPrint(26), plen 64: [msg: I (3122) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.795970100] LOG: I (3122) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[23699]: 2.795985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.795985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23700]: 2.796003600 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[23701]: 2.796016425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23702]: 2.796025200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23703]: 2.796040650 - core[1].svIdle(17), plen 0: [] -EVENT[23704]: 2.796617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23705]: 2.796629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23706]: 2.796643175 - core[0].svIdle(17), plen 0: [] -EVENT[23707]: 2.796747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23708]: 2.796756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23709]: 2.796770600 - core[1].svIdle(17), plen 0: [] -EVENT[23710]: 2.797617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23711]: 2.797629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23712]: 2.797643125 - core[0].svIdle(17), plen 0: [] -EVENT[23713]: 2.797747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23714]: 2.797757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23715]: 2.797770775 - core[1].svIdle(17), plen 0: [] -EVENT[23716]: 2.798617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23717]: 2.798629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23718]: 2.798643125 - core[0].svIdle(17), plen 0: [] -EVENT[23719]: 2.798747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23720]: 2.798756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23721]: 2.798770600 - core[1].svIdle(17), plen 0: [] -EVENT[23722]: 2.799617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23723]: 2.799629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23724]: 2.799643250 - core[0].svIdle(17), plen 0: [] -EVENT[23725]: 2.799747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23726]: 2.799756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23727]: 2.799770600 - core[1].svIdle(17), plen 0: [] -EVENT[23728]: 2.800617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23729]: 2.800632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23730]: 2.800646225 - core[0].svIdle(17), plen 0: [] -EVENT[23731]: 2.800747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23732]: 2.800756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23733]: 2.800770600 - core[1].svIdle(17), plen 0: [] -EVENT[23734]: 2.801617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23735]: 2.801629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23736]: 2.801643125 - core[0].svIdle(17), plen 0: [] -EVENT[23737]: 2.801747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23738]: 2.801757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23739]: 2.801770775 - core[1].svIdle(17), plen 0: [] -EVENT[23740]: 2.802617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23741]: 2.802629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23742]: 2.802643125 - core[0].svIdle(17), plen 0: [] -EVENT[23743]: 2.802747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23744]: 2.802756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23745]: 2.802770600 - core[1].svIdle(17), plen 0: [] -EVENT[23746]: 2.803617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23747]: 2.803629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23748]: 2.803643250 - core[0].svIdle(17), plen 0: [] -EVENT[23749]: 2.803747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23750]: 2.803756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23751]: 2.803770600 - core[1].svIdle(17), plen 0: [] -EVENT[23752]: 2.804617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23753]: 2.804629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23754]: 2.804643175 - core[0].svIdle(17), plen 0: [] -EVENT[23755]: 2.804747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23756]: 2.804756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23757]: 2.804770600 - core[1].svIdle(17), plen 0: [] -EVENT[23758]: 2.805617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23759]: 2.805629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23760]: 2.805643125 - core[0].svIdle(17), plen 0: [] -EVENT[23761]: 2.805747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23762]: 2.805757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23763]: 2.805770775 - core[1].svIdle(17), plen 0: [] -EVENT[23764]: 2.806617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23765]: 2.806629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23766]: 2.806643125 - core[0].svIdle(17), plen 0: [] -EVENT[23767]: 2.806747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23768]: 2.806756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23769]: 2.806770600 - core[1].svIdle(17), plen 0: [] -EVENT[23770]: 2.807617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23771]: 2.807629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23772]: 2.807643250 - core[0].svIdle(17), plen 0: [] -EVENT[23773]: 2.807747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23774]: 2.807756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23775]: 2.807770600 - core[1].svIdle(17), plen 0: [] -EVENT[23776]: 2.808617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23777]: 2.808629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23778]: 2.808643175 - core[0].svIdle(17), plen 0: [] -EVENT[23779]: 2.808747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23780]: 2.808756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23781]: 2.808770600 - core[1].svIdle(17), plen 0: [] -EVENT[23782]: 2.809617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23783]: 2.809629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23784]: 2.809643125 - core[0].svIdle(17), plen 0: [] -EVENT[23785]: 2.809747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23786]: 2.809757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23787]: 2.809770775 - core[1].svIdle(17), plen 0: [] -EVENT[23788]: 2.810617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23789]: 2.810629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23790]: 2.810643125 - core[0].svIdle(17), plen 0: [] -EVENT[23791]: 2.810747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23792]: 2.810756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23793]: 2.810770600 - core[1].svIdle(17), plen 0: [] -EVENT[23794]: 2.811617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23795]: 2.811629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23796]: 2.811643250 - core[0].svIdle(17), plen 0: [] -EVENT[23797]: 2.811747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23798]: 2.811756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23799]: 2.811770600 - core[1].svIdle(17), plen 0: [] -EVENT[23800]: 2.812617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23801]: 2.812633975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23802]: 2.812647600 - core[0].svIdle(17), plen 0: [] -EVENT[23803]: 2.812747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23804]: 2.812756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23805]: 2.812770600 - core[1].svIdle(17), plen 0: [] -EVENT[23806]: 2.813617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23807]: 2.813629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23808]: 2.813643125 - core[0].svIdle(17), plen 0: [] -EVENT[23809]: 2.813747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23810]: 2.813757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23811]: 2.813770775 - core[1].svIdle(17), plen 0: [] -EVENT[23812]: 2.814617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23813]: 2.814629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23814]: 2.814643125 - core[0].svIdle(17), plen 0: [] -EVENT[23815]: 2.814747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23816]: 2.814756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23817]: 2.814770600 - core[1].svIdle(17), plen 0: [] -EVENT[23818]: 2.815617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23819]: 2.815629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23820]: 2.815643250 - core[0].svIdle(17), plen 0: [] -EVENT[23821]: 2.815747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23822]: 2.815756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23823]: 2.815770600 - core[1].svIdle(17), plen 0: [] -EVENT[23824]: 2.816617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23825]: 2.816629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23826]: 2.816643175 - core[0].svIdle(17), plen 0: [] -EVENT[23827]: 2.816747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23828]: 2.816756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23829]: 2.816770600 - core[1].svIdle(17), plen 0: [] -EVENT[23830]: 2.817617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23831]: 2.817629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23832]: 2.817643125 - core[0].svIdle(17), plen 0: [] -EVENT[23833]: 2.817747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23834]: 2.817757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23835]: 2.817770775 - core[1].svIdle(17), plen 0: [] -EVENT[23836]: 2.818617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23837]: 2.818629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23838]: 2.818643125 - core[0].svIdle(17), plen 0: [] -EVENT[23839]: 2.818747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23840]: 2.818756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23841]: 2.818770600 - core[1].svIdle(17), plen 0: [] -EVENT[23842]: 2.819617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23843]: 2.819629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23844]: 2.819643250 - core[0].svIdle(17), plen 0: [] -EVENT[23845]: 2.819747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23846]: 2.819756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23847]: 2.819770600 - core[1].svIdle(17), plen 0: [] -EVENT[23848]: 2.820617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23849]: 2.820629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23850]: 2.820643175 - core[0].svIdle(17), plen 0: [] -EVENT[23851]: 2.820747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23852]: 2.820756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23853]: 2.820770600 - core[1].svIdle(17), plen 0: [] -EVENT[23854]: 2.821617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23855]: 2.821629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23856]: 2.821643125 - core[0].svIdle(17), plen 0: [] -EVENT[23857]: 2.821747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23858]: 2.821757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23859]: 2.821770775 - core[1].svIdle(17), plen 0: [] -EVENT[23860]: 2.822617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23861]: 2.822629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23862]: 2.822643125 - core[0].svIdle(17), plen 0: [] -EVENT[23863]: 2.822747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23864]: 2.822756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23865]: 2.822770600 - core[1].svIdle(17), plen 0: [] -EVENT[23866]: 2.823617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23867]: 2.823629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[23868]: 2.823638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23869]: 2.823652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[23870]: 2.823677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 190, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.823677000] HEAP: Allocated 190 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23871]: 2.823692100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23872]: 2.823706100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23873]: 2.823747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23874]: 2.823768375 - core[0].svPrint(26), plen 72: [msg: I (3150) example: Task[0x3ffb7f40]: allocated 190 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.823768375] LOG: I (3150) example: Task[0x3ffb7f40]: allocated 190 bytes @ 0x3ffb4b10 -EVENT[23875]: 2.823777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23876]: 2.823785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23877]: 2.823796400 - core[1].svIdle(17), plen 0: [] -EVENT[23878]: 2.823807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[23879]: 2.823820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23880]: 2.823828750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[23881]: 2.823836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23882]: 2.823845225 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[23883]: 2.823857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[23884]: 2.823866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[23885]: 2.823874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[23886]: 2.823883425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23887]: 2.823892825 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23888]: 2.823902100 - core[0].svIdle(17), plen 0: [] -EVENT[23889]: 2.823916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23890]: 2.823966175 - core[1].svPrint(26), plen 64: [msg: I (3150) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.823966175] LOG: I (3150) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[23891]: 2.823984575 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.823984575] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23892]: 2.824002575 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[23893]: 2.824015250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23894]: 2.824024050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23895]: 2.824039625 - core[1].svIdle(17), plen 0: [] -EVENT[23896]: 2.824617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23897]: 2.824629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[23898]: 2.824638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23899]: 2.824652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[23900]: 2.824677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 380, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.824677000] HEAP: Allocated 380 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23901]: 2.824689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23902]: 2.824703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23903]: 2.824747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23904]: 2.824769475 - core[0].svPrint(26), plen 72: [msg: I (3151) example: Task[0x3ffb82a0]: allocated 380 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.824769475] LOG: I (3151) example: Task[0x3ffb82a0]: allocated 380 bytes @ 0x3ffb4b10 -EVENT[23905]: 2.824781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23906]: 2.824789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23907]: 2.824800125 - core[1].svIdle(17), plen 0: [] -EVENT[23908]: 2.824810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[23909]: 2.824823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23910]: 2.824832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[23911]: 2.824840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23912]: 2.824849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[23913]: 2.824861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[23914]: 2.824870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[23915]: 2.824878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[23916]: 2.824887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23917]: 2.824896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23918]: 2.824905800 - core[0].svIdle(17), plen 0: [] -EVENT[23919]: 2.824920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23920]: 2.824969875 - core[1].svPrint(26), plen 64: [msg: I (3151) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.824969875] LOG: I (3151) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[23921]: 2.824985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.824985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23922]: 2.825005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[23923]: 2.825018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23924]: 2.825027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23925]: 2.825042900 - core[1].svIdle(17), plen 0: [] -EVENT[23926]: 2.825617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23927]: 2.825629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[23928]: 2.825638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23929]: 2.825652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[23930]: 2.825676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 570, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.825676975] HEAP: Allocated 570 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23931]: 2.825689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23932]: 2.825703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23933]: 2.825747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23934]: 2.825769450 - core[0].svPrint(26), plen 72: [msg: I (3152) example: Task[0x3ffb8600]: allocated 570 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.825769450] LOG: I (3152) example: Task[0x3ffb8600]: allocated 570 bytes @ 0x3ffb4b10 -EVENT[23935]: 2.825778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23936]: 2.825786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23937]: 2.825797075 - core[1].svIdle(17), plen 0: [] -EVENT[23938]: 2.825807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[23939]: 2.825820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23940]: 2.825829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[23941]: 2.825837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23942]: 2.825845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[23943]: 2.825858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[23944]: 2.825866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[23945]: 2.825879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[23946]: 2.825887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23947]: 2.825895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[23948]: 2.825905800 - core[0].svIdle(17), plen 0: [] -EVENT[23949]: 2.825920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[23950]: 2.825970075 - core[1].svPrint(26), plen 64: [msg: I (3152) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.825970075] LOG: I (3152) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[23951]: 2.825985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.825985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[23952]: 2.826003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[23953]: 2.826016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[23954]: 2.826025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23955]: 2.826040625 - core[1].svIdle(17), plen 0: [] -EVENT[23956]: 2.826617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23957]: 2.826629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23958]: 2.826643175 - core[0].svIdle(17), plen 0: [] -EVENT[23959]: 2.826747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23960]: 2.826756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23961]: 2.826770600 - core[1].svIdle(17), plen 0: [] -EVENT[23962]: 2.827617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23963]: 2.827629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23964]: 2.827643125 - core[0].svIdle(17), plen 0: [] -EVENT[23965]: 2.827747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23966]: 2.827757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23967]: 2.827770775 - core[1].svIdle(17), plen 0: [] -EVENT[23968]: 2.828617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23969]: 2.828629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23970]: 2.828643125 - core[0].svIdle(17), plen 0: [] -EVENT[23971]: 2.828747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23972]: 2.828756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23973]: 2.828770600 - core[1].svIdle(17), plen 0: [] -EVENT[23974]: 2.829617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23975]: 2.829629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23976]: 2.829643250 - core[0].svIdle(17), plen 0: [] -EVENT[23977]: 2.829747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23978]: 2.829756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23979]: 2.829770600 - core[1].svIdle(17), plen 0: [] -EVENT[23980]: 2.830617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23981]: 2.830631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23982]: 2.830645550 - core[0].svIdle(17), plen 0: [] -EVENT[23983]: 2.830747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23984]: 2.830756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23985]: 2.830770600 - core[1].svIdle(17), plen 0: [] -EVENT[23986]: 2.831617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23987]: 2.831629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23988]: 2.831643125 - core[0].svIdle(17), plen 0: [] -EVENT[23989]: 2.831747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23990]: 2.831757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23991]: 2.831770775 - core[1].svIdle(17), plen 0: [] -EVENT[23992]: 2.832617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23993]: 2.832629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[23994]: 2.832643125 - core[0].svIdle(17), plen 0: [] -EVENT[23995]: 2.832747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23996]: 2.832756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[23997]: 2.832770600 - core[1].svIdle(17), plen 0: [] -EVENT[23998]: 2.833617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[23999]: 2.833629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24000]: 2.833643250 - core[0].svIdle(17), plen 0: [] -EVENT[24001]: 2.833747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24002]: 2.833756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24003]: 2.833770600 - core[1].svIdle(17), plen 0: [] -EVENT[24004]: 2.834617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24005]: 2.834629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24006]: 2.834643175 - core[0].svIdle(17), plen 0: [] -EVENT[24007]: 2.834747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24008]: 2.834756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24009]: 2.834770600 - core[1].svIdle(17), plen 0: [] -EVENT[24010]: 2.835617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24011]: 2.835629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24012]: 2.835643125 - core[0].svIdle(17), plen 0: [] -EVENT[24013]: 2.835747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24014]: 2.835757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24015]: 2.835770775 - core[1].svIdle(17), plen 0: [] -EVENT[24016]: 2.836617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24017]: 2.836629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24018]: 2.836643125 - core[0].svIdle(17), plen 0: [] -EVENT[24019]: 2.836747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24020]: 2.836756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24021]: 2.836770600 - core[1].svIdle(17), plen 0: [] -EVENT[24022]: 2.837617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24023]: 2.837629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24024]: 2.837643250 - core[0].svIdle(17), plen 0: [] -EVENT[24025]: 2.837747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24026]: 2.837756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24027]: 2.837770600 - core[1].svIdle(17), plen 0: [] -EVENT[24028]: 2.838617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24029]: 2.838629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24030]: 2.838643175 - core[0].svIdle(17), plen 0: [] -EVENT[24031]: 2.838747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24032]: 2.838756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24033]: 2.838770600 - core[1].svIdle(17), plen 0: [] -EVENT[24034]: 2.839617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24035]: 2.839629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24036]: 2.839643125 - core[0].svIdle(17), plen 0: [] -EVENT[24037]: 2.839747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24038]: 2.839757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24039]: 2.839770775 - core[1].svIdle(17), plen 0: [] -EVENT[24040]: 2.840617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24041]: 2.840629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24042]: 2.840643125 - core[0].svIdle(17), plen 0: [] -EVENT[24043]: 2.840747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24044]: 2.840756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24045]: 2.840770600 - core[1].svIdle(17), plen 0: [] -EVENT[24046]: 2.841617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24047]: 2.841629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24048]: 2.841643250 - core[0].svIdle(17), plen 0: [] -EVENT[24049]: 2.841747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24050]: 2.841756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24051]: 2.841770600 - core[1].svIdle(17), plen 0: [] -EVENT[24052]: 2.842617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24053]: 2.842632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24054]: 2.842646225 - core[0].svIdle(17), plen 0: [] -EVENT[24055]: 2.842747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24056]: 2.842756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24057]: 2.842770600 - core[1].svIdle(17), plen 0: [] -EVENT[24058]: 2.843617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24059]: 2.843629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24060]: 2.843643125 - core[0].svIdle(17), plen 0: [] -EVENT[24061]: 2.843747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24062]: 2.843757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24063]: 2.843770775 - core[1].svIdle(17), plen 0: [] -EVENT[24064]: 2.844617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24065]: 2.844629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24066]: 2.844643125 - core[0].svIdle(17), plen 0: [] -EVENT[24067]: 2.844747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24068]: 2.844756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24069]: 2.844770600 - core[1].svIdle(17), plen 0: [] -EVENT[24070]: 2.845617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24071]: 2.845629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24072]: 2.845643250 - core[0].svIdle(17), plen 0: [] -EVENT[24073]: 2.845747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24074]: 2.845756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24075]: 2.845770600 - core[1].svIdle(17), plen 0: [] -EVENT[24076]: 2.846617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24077]: 2.846629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24078]: 2.846643175 - core[0].svIdle(17), plen 0: [] -EVENT[24079]: 2.846747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24080]: 2.846756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24081]: 2.846770600 - core[1].svIdle(17), plen 0: [] -EVENT[24082]: 2.847617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24083]: 2.847629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24084]: 2.847643125 - core[0].svIdle(17), plen 0: [] -EVENT[24085]: 2.847747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24086]: 2.847757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24087]: 2.847770775 - core[1].svIdle(17), plen 0: [] -EVENT[24088]: 2.848617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24089]: 2.848629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24090]: 2.848643125 - core[0].svIdle(17), plen 0: [] -EVENT[24091]: 2.848747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24092]: 2.848756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24093]: 2.848770600 - core[1].svIdle(17), plen 0: [] -EVENT[24094]: 2.849617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24095]: 2.849629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24096]: 2.849643250 - core[0].svIdle(17), plen 0: [] -EVENT[24097]: 2.849747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24098]: 2.849756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24099]: 2.849770600 - core[1].svIdle(17), plen 0: [] -EVENT[24100]: 2.850617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24101]: 2.850629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24102]: 2.850643175 - core[0].svIdle(17), plen 0: [] -EVENT[24103]: 2.850747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24104]: 2.850756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24105]: 2.850770600 - core[1].svIdle(17), plen 0: [] -EVENT[24106]: 2.851617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24107]: 2.851629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24108]: 2.851643125 - core[0].svIdle(17), plen 0: [] -EVENT[24109]: 2.851747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24110]: 2.851757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24111]: 2.851770775 - core[1].svIdle(17), plen 0: [] -EVENT[24112]: 2.852617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24113]: 2.852629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24114]: 2.852643125 - core[0].svIdle(17), plen 0: [] -EVENT[24115]: 2.852747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24116]: 2.852756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24117]: 2.852770600 - core[1].svIdle(17), plen 0: [] -EVENT[24118]: 2.853617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24119]: 2.853629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[24120]: 2.853638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24121]: 2.853652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[24122]: 2.853677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 192, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.853677000] HEAP: Allocated 192 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24123]: 2.853692100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24124]: 2.853706100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24125]: 2.853747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24126]: 2.853768375 - core[0].svPrint(26), plen 72: [msg: I (3180) example: Task[0x3ffb7f40]: allocated 192 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.853768375] LOG: I (3180) example: Task[0x3ffb7f40]: allocated 192 bytes @ 0x3ffb4b10 -EVENT[24127]: 2.853777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24128]: 2.853785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24129]: 2.853796400 - core[1].svIdle(17), plen 0: [] -EVENT[24130]: 2.853807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[24131]: 2.853820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24132]: 2.853828750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[24133]: 2.853836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24134]: 2.853845225 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[24135]: 2.853857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[24136]: 2.853866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[24137]: 2.853874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[24138]: 2.853883425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24139]: 2.853892825 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24140]: 2.853902100 - core[0].svIdle(17), plen 0: [] -EVENT[24141]: 2.853916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24142]: 2.853966175 - core[1].svPrint(26), plen 64: [msg: I (3180) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.853966175] LOG: I (3180) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[24143]: 2.853984575 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.853984575] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24144]: 2.854002575 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[24145]: 2.854015250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24146]: 2.854024050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24147]: 2.854039625 - core[1].svIdle(17), plen 0: [] -EVENT[24148]: 2.854617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24149]: 2.854629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[24150]: 2.854638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24151]: 2.854652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[24152]: 2.854677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 384, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.854677000] HEAP: Allocated 384 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24153]: 2.854689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24154]: 2.854703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24155]: 2.854747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24156]: 2.854769475 - core[0].svPrint(26), plen 72: [msg: I (3181) example: Task[0x3ffb82a0]: allocated 384 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.854769475] LOG: I (3181) example: Task[0x3ffb82a0]: allocated 384 bytes @ 0x3ffb4b10 -EVENT[24157]: 2.854781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24158]: 2.854789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24159]: 2.854800125 - core[1].svIdle(17), plen 0: [] -EVENT[24160]: 2.854810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[24161]: 2.854823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24162]: 2.854832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[24163]: 2.854840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24164]: 2.854849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[24165]: 2.854861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[24166]: 2.854870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[24167]: 2.854878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[24168]: 2.854887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24169]: 2.854896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24170]: 2.854905800 - core[0].svIdle(17), plen 0: [] -EVENT[24171]: 2.854920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24172]: 2.854969875 - core[1].svPrint(26), plen 64: [msg: I (3181) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.854969875] LOG: I (3181) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[24173]: 2.854985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.854985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24174]: 2.855005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[24175]: 2.855018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24176]: 2.855027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24177]: 2.855042900 - core[1].svIdle(17), plen 0: [] -EVENT[24178]: 2.855617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24179]: 2.855629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[24180]: 2.855638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24181]: 2.855652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[24182]: 2.855676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 576, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.855676975] HEAP: Allocated 576 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24183]: 2.855689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24184]: 2.855703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24185]: 2.855747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24186]: 2.855769450 - core[0].svPrint(26), plen 72: [msg: I (3182) example: Task[0x3ffb8600]: allocated 576 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.855769450] LOG: I (3182) example: Task[0x3ffb8600]: allocated 576 bytes @ 0x3ffb4b10 -EVENT[24187]: 2.855778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24188]: 2.855786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24189]: 2.855797075 - core[1].svIdle(17), plen 0: [] -EVENT[24190]: 2.855807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[24191]: 2.855820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24192]: 2.855829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[24193]: 2.855837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24194]: 2.855845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[24195]: 2.855858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[24196]: 2.855866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[24197]: 2.855879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[24198]: 2.855887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24199]: 2.855895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24200]: 2.855905800 - core[0].svIdle(17), plen 0: [] -EVENT[24201]: 2.855920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24202]: 2.855970075 - core[1].svPrint(26), plen 64: [msg: I (3182) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.855970075] LOG: I (3182) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[24203]: 2.855985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.855985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24204]: 2.856003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[24205]: 2.856016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24206]: 2.856025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24207]: 2.856040625 - core[1].svIdle(17), plen 0: [] -EVENT[24208]: 2.856617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24209]: 2.856629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24210]: 2.856643175 - core[0].svIdle(17), plen 0: [] -EVENT[24211]: 2.856747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24212]: 2.856756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24213]: 2.856770600 - core[1].svIdle(17), plen 0: [] -EVENT[24214]: 2.857617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24215]: 2.857629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24216]: 2.857643125 - core[0].svIdle(17), plen 0: [] -EVENT[24217]: 2.857747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24218]: 2.857757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24219]: 2.857770775 - core[1].svIdle(17), plen 0: [] -EVENT[24220]: 2.858617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24221]: 2.858629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24222]: 2.858643125 - core[0].svIdle(17), plen 0: [] -EVENT[24223]: 2.858747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24224]: 2.858756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24225]: 2.858770600 - core[1].svIdle(17), plen 0: [] -EVENT[24226]: 2.859617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24227]: 2.859629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24228]: 2.859643250 - core[0].svIdle(17), plen 0: [] -EVENT[24229]: 2.859747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24230]: 2.859756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24231]: 2.859770600 - core[1].svIdle(17), plen 0: [] -EVENT[24232]: 2.860617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24233]: 2.860631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24234]: 2.860645550 - core[0].svIdle(17), plen 0: [] -EVENT[24235]: 2.860747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24236]: 2.860756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24237]: 2.860770600 - core[1].svIdle(17), plen 0: [] -EVENT[24238]: 2.861617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24239]: 2.861629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24240]: 2.861643125 - core[0].svIdle(17), plen 0: [] -EVENT[24241]: 2.861747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24242]: 2.861757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24243]: 2.861770775 - core[1].svIdle(17), plen 0: [] -EVENT[24244]: 2.862617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24245]: 2.862629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24246]: 2.862643125 - core[0].svIdle(17), plen 0: [] -EVENT[24247]: 2.862747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24248]: 2.862756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24249]: 2.862770600 - core[1].svIdle(17), plen 0: [] -EVENT[24250]: 2.863617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24251]: 2.863629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24252]: 2.863643250 - core[0].svIdle(17), plen 0: [] -EVENT[24253]: 2.863747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24254]: 2.863756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24255]: 2.863770600 - core[1].svIdle(17), plen 0: [] -EVENT[24256]: 2.864617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24257]: 2.864629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24258]: 2.864643175 - core[0].svIdle(17), plen 0: [] -EVENT[24259]: 2.864747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24260]: 2.864756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24261]: 2.864770600 - core[1].svIdle(17), plen 0: [] -EVENT[24262]: 2.865617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24263]: 2.865629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24264]: 2.865643125 - core[0].svIdle(17), plen 0: [] -EVENT[24265]: 2.865747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24266]: 2.865757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24267]: 2.865770775 - core[1].svIdle(17), plen 0: [] -EVENT[24268]: 2.866617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24269]: 2.866629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24270]: 2.866643125 - core[0].svIdle(17), plen 0: [] -EVENT[24271]: 2.866747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24272]: 2.866756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24273]: 2.866770600 - core[1].svIdle(17), plen 0: [] -EVENT[24274]: 2.867617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24275]: 2.867629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24276]: 2.867643250 - core[0].svIdle(17), plen 0: [] -EVENT[24277]: 2.867747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24278]: 2.867756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24279]: 2.867770600 - core[1].svIdle(17), plen 0: [] -EVENT[24280]: 2.868617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24281]: 2.868629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24282]: 2.868643175 - core[0].svIdle(17), plen 0: [] -EVENT[24283]: 2.868747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24284]: 2.868756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24285]: 2.868770600 - core[1].svIdle(17), plen 0: [] -EVENT[24286]: 2.869617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24287]: 2.869629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24288]: 2.869643125 - core[0].svIdle(17), plen 0: [] -EVENT[24289]: 2.869747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24290]: 2.869757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24291]: 2.869770775 - core[1].svIdle(17), plen 0: [] -EVENT[24292]: 2.870617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24293]: 2.870629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24294]: 2.870643125 - core[0].svIdle(17), plen 0: [] -EVENT[24295]: 2.870747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24296]: 2.870756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24297]: 2.870770600 - core[1].svIdle(17), plen 0: [] -EVENT[24298]: 2.871617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24299]: 2.871629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24300]: 2.871643250 - core[0].svIdle(17), plen 0: [] -EVENT[24301]: 2.871747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24302]: 2.871756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24303]: 2.871770600 - core[1].svIdle(17), plen 0: [] -EVENT[24304]: 2.872617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24305]: 2.872632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24306]: 2.872646225 - core[0].svIdle(17), plen 0: [] -EVENT[24307]: 2.872747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24308]: 2.872756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24309]: 2.872770600 - core[1].svIdle(17), plen 0: [] -EVENT[24310]: 2.873617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24311]: 2.873629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24312]: 2.873643125 - core[0].svIdle(17), plen 0: [] -EVENT[24313]: 2.873747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24314]: 2.873757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24315]: 2.873770775 - core[1].svIdle(17), plen 0: [] -EVENT[24316]: 2.874617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24317]: 2.874629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24318]: 2.874643125 - core[0].svIdle(17), plen 0: [] -EVENT[24319]: 2.874747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24320]: 2.874756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24321]: 2.874770600 - core[1].svIdle(17), plen 0: [] -EVENT[24322]: 2.875617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24323]: 2.875629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24324]: 2.875643250 - core[0].svIdle(17), plen 0: [] -EVENT[24325]: 2.875747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24326]: 2.875756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24327]: 2.875770600 - core[1].svIdle(17), plen 0: [] -EVENT[24328]: 2.876617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24329]: 2.876629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24330]: 2.876643175 - core[0].svIdle(17), plen 0: [] -EVENT[24331]: 2.876747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24332]: 2.876756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24333]: 2.876770600 - core[1].svIdle(17), plen 0: [] -EVENT[24334]: 2.877617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24335]: 2.877629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24336]: 2.877643125 - core[0].svIdle(17), plen 0: [] -EVENT[24337]: 2.877747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24338]: 2.877757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24339]: 2.877770775 - core[1].svIdle(17), plen 0: [] -EVENT[24340]: 2.878617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24341]: 2.878629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24342]: 2.878643125 - core[0].svIdle(17), plen 0: [] -EVENT[24343]: 2.878747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24344]: 2.878756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24345]: 2.878770600 - core[1].svIdle(17), plen 0: [] -EVENT[24346]: 2.879617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24347]: 2.879629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24348]: 2.879643250 - core[0].svIdle(17), plen 0: [] -EVENT[24349]: 2.879747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24350]: 2.879756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24351]: 2.879770600 - core[1].svIdle(17), plen 0: [] -EVENT[24352]: 2.880617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24353]: 2.880629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24354]: 2.880643175 - core[0].svIdle(17), plen 0: [] -EVENT[24355]: 2.880747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24356]: 2.880756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24357]: 2.880770600 - core[1].svIdle(17), plen 0: [] -EVENT[24358]: 2.881617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24359]: 2.881629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24360]: 2.881643125 - core[0].svIdle(17), plen 0: [] -EVENT[24361]: 2.881747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24362]: 2.881757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24363]: 2.881770775 - core[1].svIdle(17), plen 0: [] -EVENT[24364]: 2.882617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24365]: 2.882629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24366]: 2.882643125 - core[0].svIdle(17), plen 0: [] -EVENT[24367]: 2.882747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24368]: 2.882756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24369]: 2.882770600 - core[1].svIdle(17), plen 0: [] -EVENT[24370]: 2.883617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24371]: 2.883629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[24372]: 2.883638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24373]: 2.883652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[24374]: 2.883677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 194, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.883677000] HEAP: Allocated 194 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24375]: 2.883692100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24376]: 2.883706100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24377]: 2.883747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24378]: 2.883768375 - core[0].svPrint(26), plen 72: [msg: I (3210) example: Task[0x3ffb7f40]: allocated 194 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.883768375] LOG: I (3210) example: Task[0x3ffb7f40]: allocated 194 bytes @ 0x3ffb4b10 -EVENT[24379]: 2.883777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24380]: 2.883785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24381]: 2.883796400 - core[1].svIdle(17), plen 0: [] -EVENT[24382]: 2.883807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[24383]: 2.883820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24384]: 2.883828750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[24385]: 2.883836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24386]: 2.883845225 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[24387]: 2.883857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[24388]: 2.883866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[24389]: 2.883874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[24390]: 2.883883425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24391]: 2.883892825 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24392]: 2.883902100 - core[0].svIdle(17), plen 0: [] -EVENT[24393]: 2.883916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24394]: 2.883966175 - core[1].svPrint(26), plen 64: [msg: I (3210) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.883966175] LOG: I (3210) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[24395]: 2.883984575 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.883984575] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24396]: 2.884002575 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[24397]: 2.884015250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24398]: 2.884024050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24399]: 2.884039625 - core[1].svIdle(17), plen 0: [] -EVENT[24400]: 2.884617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24401]: 2.884629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[24402]: 2.884638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24403]: 2.884652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[24404]: 2.884677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 388, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.884677000] HEAP: Allocated 388 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24405]: 2.884689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24406]: 2.884703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24407]: 2.884747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24408]: 2.884769475 - core[0].svPrint(26), plen 72: [msg: I (3211) example: Task[0x3ffb82a0]: allocated 388 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.884769475] LOG: I (3211) example: Task[0x3ffb82a0]: allocated 388 bytes @ 0x3ffb4b10 -EVENT[24409]: 2.884781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24410]: 2.884789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24411]: 2.884800125 - core[1].svIdle(17), plen 0: [] -EVENT[24412]: 2.884810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[24413]: 2.884823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24414]: 2.884832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[24415]: 2.884840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24416]: 2.884849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[24417]: 2.884861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[24418]: 2.884870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[24419]: 2.884878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[24420]: 2.884887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24421]: 2.884896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24422]: 2.884905800 - core[0].svIdle(17), plen 0: [] -EVENT[24423]: 2.884920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24424]: 2.884969875 - core[1].svPrint(26), plen 64: [msg: I (3211) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.884969875] LOG: I (3211) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[24425]: 2.884985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.884985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24426]: 2.885005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[24427]: 2.885018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24428]: 2.885027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24429]: 2.885042900 - core[1].svIdle(17), plen 0: [] -EVENT[24430]: 2.885617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24431]: 2.885629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[24432]: 2.885638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24433]: 2.885652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[24434]: 2.885676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 582, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.885676975] HEAP: Allocated 582 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24435]: 2.885689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24436]: 2.885703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24437]: 2.885747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24438]: 2.885769450 - core[0].svPrint(26), plen 72: [msg: I (3212) example: Task[0x3ffb8600]: allocated 582 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.885769450] LOG: I (3212) example: Task[0x3ffb8600]: allocated 582 bytes @ 0x3ffb4b10 -EVENT[24439]: 2.885778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24440]: 2.885786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24441]: 2.885797075 - core[1].svIdle(17), plen 0: [] -EVENT[24442]: 2.885807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[24443]: 2.885820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24444]: 2.885829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[24445]: 2.885837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24446]: 2.885845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[24447]: 2.885858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[24448]: 2.885866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[24449]: 2.885879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[24450]: 2.885887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24451]: 2.885895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24452]: 2.885905800 - core[0].svIdle(17), plen 0: [] -EVENT[24453]: 2.885920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24454]: 2.885970075 - core[1].svPrint(26), plen 64: [msg: I (3212) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.885970075] LOG: I (3212) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[24455]: 2.885985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.885985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24456]: 2.886003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[24457]: 2.886016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24458]: 2.886025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24459]: 2.886040625 - core[1].svIdle(17), plen 0: [] -EVENT[24460]: 2.886617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24461]: 2.886629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24462]: 2.886643175 - core[0].svIdle(17), plen 0: [] -EVENT[24463]: 2.886747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24464]: 2.886756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24465]: 2.886770600 - core[1].svIdle(17), plen 0: [] -EVENT[24466]: 2.887617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24467]: 2.887629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24468]: 2.887643125 - core[0].svIdle(17), plen 0: [] -EVENT[24469]: 2.887747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24470]: 2.887757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24471]: 2.887770775 - core[1].svIdle(17), plen 0: [] -EVENT[24472]: 2.888617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24473]: 2.888629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24474]: 2.888643125 - core[0].svIdle(17), plen 0: [] -EVENT[24475]: 2.888747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24476]: 2.888756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24477]: 2.888770600 - core[1].svIdle(17), plen 0: [] -EVENT[24478]: 2.889617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24479]: 2.889629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24480]: 2.889643250 - core[0].svIdle(17), plen 0: [] -EVENT[24481]: 2.889747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24482]: 2.889756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24483]: 2.889770600 - core[1].svIdle(17), plen 0: [] -EVENT[24484]: 2.890617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24485]: 2.890631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24486]: 2.890645550 - core[0].svIdle(17), plen 0: [] -EVENT[24487]: 2.890747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24488]: 2.890756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24489]: 2.890770600 - core[1].svIdle(17), plen 0: [] -EVENT[24490]: 2.891617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24491]: 2.891629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24492]: 2.891643125 - core[0].svIdle(17), plen 0: [] -EVENT[24493]: 2.891747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24494]: 2.891757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24495]: 2.891770775 - core[1].svIdle(17), plen 0: [] -EVENT[24496]: 2.892617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24497]: 2.892629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24498]: 2.892643125 - core[0].svIdle(17), plen 0: [] -EVENT[24499]: 2.892747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24500]: 2.892756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24501]: 2.892770600 - core[1].svIdle(17), plen 0: [] -EVENT[24502]: 2.893617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24503]: 2.893629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24504]: 2.893643250 - core[0].svIdle(17), plen 0: [] -EVENT[24505]: 2.893747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24506]: 2.893756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24507]: 2.893770600 - core[1].svIdle(17), plen 0: [] -EVENT[24508]: 2.894617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24509]: 2.894629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24510]: 2.894643175 - core[0].svIdle(17), plen 0: [] -EVENT[24511]: 2.894747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24512]: 2.894756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24513]: 2.894770600 - core[1].svIdle(17), plen 0: [] -EVENT[24514]: 2.895617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24515]: 2.895629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24516]: 2.895643125 - core[0].svIdle(17), plen 0: [] -EVENT[24517]: 2.895747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24518]: 2.895757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24519]: 2.895770775 - core[1].svIdle(17), plen 0: [] -EVENT[24520]: 2.896617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24521]: 2.896629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24522]: 2.896643125 - core[0].svIdle(17), plen 0: [] -EVENT[24523]: 2.896747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24524]: 2.896756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24525]: 2.896770600 - core[1].svIdle(17), plen 0: [] -EVENT[24526]: 2.897617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24527]: 2.897629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24528]: 2.897643250 - core[0].svIdle(17), plen 0: [] -EVENT[24529]: 2.897747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24530]: 2.897756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24531]: 2.897770600 - core[1].svIdle(17), plen 0: [] -EVENT[24532]: 2.898617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24533]: 2.898629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24534]: 2.898643175 - core[0].svIdle(17), plen 0: [] -EVENT[24535]: 2.898747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24536]: 2.898756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24537]: 2.898770600 - core[1].svIdle(17), plen 0: [] -EVENT[24538]: 2.899617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24539]: 2.899629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24540]: 2.899643125 - core[0].svIdle(17), plen 0: [] -EVENT[24541]: 2.899747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24542]: 2.899757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24543]: 2.899770775 - core[1].svIdle(17), plen 0: [] -EVENT[24544]: 2.900617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24545]: 2.900629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24546]: 2.900643125 - core[0].svIdle(17), plen 0: [] -EVENT[24547]: 2.900747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24548]: 2.900756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24549]: 2.900770600 - core[1].svIdle(17), plen 0: [] -EVENT[24550]: 2.901617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24551]: 2.901629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24552]: 2.901643250 - core[0].svIdle(17), plen 0: [] -EVENT[24553]: 2.901747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24554]: 2.901756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24555]: 2.901770600 - core[1].svIdle(17), plen 0: [] -EVENT[24556]: 2.902617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24557]: 2.902632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24558]: 2.902646225 - core[0].svIdle(17), plen 0: [] -EVENT[24559]: 2.902747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24560]: 2.902756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24561]: 2.902770600 - core[1].svIdle(17), plen 0: [] -EVENT[24562]: 2.903617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24563]: 2.903629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24564]: 2.903643125 - core[0].svIdle(17), plen 0: [] -EVENT[24565]: 2.903747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24566]: 2.903757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24567]: 2.903770775 - core[1].svIdle(17), plen 0: [] -EVENT[24568]: 2.904617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24569]: 2.904629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24570]: 2.904643125 - core[0].svIdle(17), plen 0: [] -EVENT[24571]: 2.904747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24572]: 2.904756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24573]: 2.904770600 - core[1].svIdle(17), plen 0: [] -EVENT[24574]: 2.905617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24575]: 2.905629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24576]: 2.905643250 - core[0].svIdle(17), plen 0: [] -EVENT[24577]: 2.905747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24578]: 2.905756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24579]: 2.905770600 - core[1].svIdle(17), plen 0: [] -EVENT[24580]: 2.906617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24581]: 2.906629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24582]: 2.906643175 - core[0].svIdle(17), plen 0: [] -EVENT[24583]: 2.906747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24584]: 2.906756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24585]: 2.906770600 - core[1].svIdle(17), plen 0: [] -EVENT[24586]: 2.907617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24587]: 2.907629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24588]: 2.907643125 - core[0].svIdle(17), plen 0: [] -EVENT[24589]: 2.907747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24590]: 2.907757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24591]: 2.907770775 - core[1].svIdle(17), plen 0: [] -EVENT[24592]: 2.908617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24593]: 2.908629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24594]: 2.908643125 - core[0].svIdle(17), plen 0: [] -EVENT[24595]: 2.908747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24596]: 2.908756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24597]: 2.908770600 - core[1].svIdle(17), plen 0: [] -EVENT[24598]: 2.909617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24599]: 2.909629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24600]: 2.909643250 - core[0].svIdle(17), plen 0: [] -EVENT[24601]: 2.909747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24602]: 2.909756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24603]: 2.909770600 - core[1].svIdle(17), plen 0: [] -EVENT[24604]: 2.910617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24605]: 2.910629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24606]: 2.910643175 - core[0].svIdle(17), plen 0: [] -EVENT[24607]: 2.910747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24608]: 2.910756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24609]: 2.910770600 - core[1].svIdle(17), plen 0: [] -EVENT[24610]: 2.911617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24611]: 2.911629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24612]: 2.911643125 - core[0].svIdle(17), plen 0: [] -EVENT[24613]: 2.911747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24614]: 2.911757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24615]: 2.911770775 - core[1].svIdle(17), plen 0: [] -EVENT[24616]: 2.912617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24617]: 2.912629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24618]: 2.912643125 - core[0].svIdle(17), plen 0: [] -EVENT[24619]: 2.912747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24620]: 2.912756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24621]: 2.912770600 - core[1].svIdle(17), plen 0: [] -EVENT[24622]: 2.913617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24623]: 2.913629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[24624]: 2.913638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24625]: 2.913652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[24626]: 2.913677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 196, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.913677000] HEAP: Allocated 196 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24627]: 2.913692100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24628]: 2.913706100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24629]: 2.913747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24630]: 2.913768375 - core[0].svPrint(26), plen 72: [msg: I (3240) example: Task[0x3ffb7f40]: allocated 196 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.913768375] LOG: I (3240) example: Task[0x3ffb7f40]: allocated 196 bytes @ 0x3ffb4b10 -EVENT[24631]: 2.913777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24632]: 2.913785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24633]: 2.913796400 - core[1].svIdle(17), plen 0: [] -EVENT[24634]: 2.913807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[24635]: 2.913820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24636]: 2.913828750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[24637]: 2.913836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24638]: 2.913845225 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[24639]: 2.913857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[24640]: 2.913866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[24641]: 2.913874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[24642]: 2.913883425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24643]: 2.913892825 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24644]: 2.913902100 - core[0].svIdle(17), plen 0: [] -EVENT[24645]: 2.913916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24646]: 2.913966175 - core[1].svPrint(26), plen 64: [msg: I (3240) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.913966175] LOG: I (3240) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[24647]: 2.913984575 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.913984575] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24648]: 2.914002575 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[24649]: 2.914015250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24650]: 2.914024050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24651]: 2.914039625 - core[1].svIdle(17), plen 0: [] -EVENT[24652]: 2.914617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24653]: 2.914629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[24654]: 2.914638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24655]: 2.914652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[24656]: 2.914677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 392, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.914677000] HEAP: Allocated 392 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24657]: 2.914689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24658]: 2.914703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24659]: 2.914747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24660]: 2.914769475 - core[0].svPrint(26), plen 72: [msg: I (3241) example: Task[0x3ffb82a0]: allocated 392 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.914769475] LOG: I (3241) example: Task[0x3ffb82a0]: allocated 392 bytes @ 0x3ffb4b10 -EVENT[24661]: 2.914781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24662]: 2.914789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24663]: 2.914800125 - core[1].svIdle(17), plen 0: [] -EVENT[24664]: 2.914810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[24665]: 2.914823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24666]: 2.914832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[24667]: 2.914840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24668]: 2.914849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[24669]: 2.914861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[24670]: 2.914870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[24671]: 2.914878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[24672]: 2.914887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24673]: 2.914896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24674]: 2.914905800 - core[0].svIdle(17), plen 0: [] -EVENT[24675]: 2.914920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24676]: 2.914969875 - core[1].svPrint(26), plen 64: [msg: I (3241) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.914969875] LOG: I (3241) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[24677]: 2.914985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.914985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24678]: 2.915005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[24679]: 2.915018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24680]: 2.915027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24681]: 2.915042900 - core[1].svIdle(17), plen 0: [] -EVENT[24682]: 2.915617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24683]: 2.915629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[24684]: 2.915638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24685]: 2.915652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[24686]: 2.915676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 588, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.915676975] HEAP: Allocated 588 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24687]: 2.915689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24688]: 2.915703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24689]: 2.915747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24690]: 2.915769450 - core[0].svPrint(26), plen 72: [msg: I (3242) example: Task[0x3ffb8600]: allocated 588 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.915769450] LOG: I (3242) example: Task[0x3ffb8600]: allocated 588 bytes @ 0x3ffb4b10 -EVENT[24691]: 2.915778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24692]: 2.915786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24693]: 2.915797075 - core[1].svIdle(17), plen 0: [] -EVENT[24694]: 2.915807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[24695]: 2.915820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24696]: 2.915829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[24697]: 2.915837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24698]: 2.915845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[24699]: 2.915858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[24700]: 2.915866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[24701]: 2.915879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[24702]: 2.915887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24703]: 2.915895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24704]: 2.915905800 - core[0].svIdle(17), plen 0: [] -EVENT[24705]: 2.915920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24706]: 2.915970075 - core[1].svPrint(26), plen 64: [msg: I (3242) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.915970075] LOG: I (3242) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[24707]: 2.915985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.915985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24708]: 2.916003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[24709]: 2.916016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24710]: 2.916025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24711]: 2.916040625 - core[1].svIdle(17), plen 0: [] -EVENT[24712]: 2.916617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24713]: 2.916629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24714]: 2.916643175 - core[0].svIdle(17), plen 0: [] -EVENT[24715]: 2.916747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24716]: 2.916756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24717]: 2.916770600 - core[1].svIdle(17), plen 0: [] -EVENT[24718]: 2.917617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24719]: 2.917629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24720]: 2.917643125 - core[0].svIdle(17), plen 0: [] -EVENT[24721]: 2.917747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24722]: 2.917757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24723]: 2.917770775 - core[1].svIdle(17), plen 0: [] -EVENT[24724]: 2.918617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24725]: 2.918629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24726]: 2.918643125 - core[0].svIdle(17), plen 0: [] -EVENT[24727]: 2.918747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24728]: 2.918756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24729]: 2.918770600 - core[1].svIdle(17), plen 0: [] -EVENT[24730]: 2.919617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24731]: 2.919629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24732]: 2.919643250 - core[0].svIdle(17), plen 0: [] -EVENT[24733]: 2.919747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24734]: 2.919756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24735]: 2.919770600 - core[1].svIdle(17), plen 0: [] -EVENT[24736]: 2.920617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24737]: 2.920631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24738]: 2.920645550 - core[0].svIdle(17), plen 0: [] -EVENT[24739]: 2.920747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24740]: 2.920756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24741]: 2.920770600 - core[1].svIdle(17), plen 0: [] -EVENT[24742]: 2.921617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24743]: 2.921629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24744]: 2.921643125 - core[0].svIdle(17), plen 0: [] -EVENT[24745]: 2.921747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24746]: 2.921757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24747]: 2.921770775 - core[1].svIdle(17), plen 0: [] -EVENT[24748]: 2.922617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24749]: 2.922629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24750]: 2.922643125 - core[0].svIdle(17), plen 0: [] -EVENT[24751]: 2.922747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24752]: 2.922756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24753]: 2.922770600 - core[1].svIdle(17), plen 0: [] -EVENT[24754]: 2.923617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24755]: 2.923629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24756]: 2.923643250 - core[0].svIdle(17), plen 0: [] -EVENT[24757]: 2.923747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24758]: 2.923756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24759]: 2.923770600 - core[1].svIdle(17), plen 0: [] -EVENT[24760]: 2.924617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24761]: 2.924629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24762]: 2.924643175 - core[0].svIdle(17), plen 0: [] -EVENT[24763]: 2.924747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24764]: 2.924756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24765]: 2.924770600 - core[1].svIdle(17), plen 0: [] -EVENT[24766]: 2.925617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24767]: 2.925629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24768]: 2.925643125 - core[0].svIdle(17), plen 0: [] -EVENT[24769]: 2.925747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24770]: 2.925757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24771]: 2.925770775 - core[1].svIdle(17), plen 0: [] -EVENT[24772]: 2.926617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24773]: 2.926629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24774]: 2.926643125 - core[0].svIdle(17), plen 0: [] -EVENT[24775]: 2.926747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24776]: 2.926756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24777]: 2.926770600 - core[1].svIdle(17), plen 0: [] -EVENT[24778]: 2.927617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24779]: 2.927629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24780]: 2.927643250 - core[0].svIdle(17), plen 0: [] -EVENT[24781]: 2.927747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24782]: 2.927756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24783]: 2.927770600 - core[1].svIdle(17), plen 0: [] -EVENT[24784]: 2.928617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24785]: 2.928629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24786]: 2.928643175 - core[0].svIdle(17), plen 0: [] -EVENT[24787]: 2.928747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24788]: 2.928756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24789]: 2.928770600 - core[1].svIdle(17), plen 0: [] -EVENT[24790]: 2.929617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24791]: 2.929629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24792]: 2.929643125 - core[0].svIdle(17), plen 0: [] -EVENT[24793]: 2.929747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24794]: 2.929757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24795]: 2.929770775 - core[1].svIdle(17), plen 0: [] -EVENT[24796]: 2.930617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24797]: 2.930629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24798]: 2.930643125 - core[0].svIdle(17), plen 0: [] -EVENT[24799]: 2.930747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24800]: 2.930756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24801]: 2.930770600 - core[1].svIdle(17), plen 0: [] -EVENT[24802]: 2.931617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24803]: 2.931629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24804]: 2.931643250 - core[0].svIdle(17), plen 0: [] -EVENT[24805]: 2.931747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24806]: 2.931756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24807]: 2.931770600 - core[1].svIdle(17), plen 0: [] -EVENT[24808]: 2.932617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24809]: 2.932632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24810]: 2.932646225 - core[0].svIdle(17), plen 0: [] -EVENT[24811]: 2.932747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24812]: 2.932756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24813]: 2.932770600 - core[1].svIdle(17), plen 0: [] -EVENT[24814]: 2.933617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24815]: 2.933629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24816]: 2.933643125 - core[0].svIdle(17), plen 0: [] -EVENT[24817]: 2.933747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24818]: 2.933757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24819]: 2.933770775 - core[1].svIdle(17), plen 0: [] -EVENT[24820]: 2.934617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24821]: 2.934629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24822]: 2.934643125 - core[0].svIdle(17), plen 0: [] -EVENT[24823]: 2.934747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24824]: 2.934756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24825]: 2.934770600 - core[1].svIdle(17), plen 0: [] -EVENT[24826]: 2.935617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24827]: 2.935629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24828]: 2.935643250 - core[0].svIdle(17), plen 0: [] -EVENT[24829]: 2.935747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24830]: 2.935756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24831]: 2.935770600 - core[1].svIdle(17), plen 0: [] -EVENT[24832]: 2.936617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24833]: 2.936629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24834]: 2.936643175 - core[0].svIdle(17), plen 0: [] -EVENT[24835]: 2.936747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24836]: 2.936756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24837]: 2.936770600 - core[1].svIdle(17), plen 0: [] -EVENT[24838]: 2.937617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24839]: 2.937629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24840]: 2.937643125 - core[0].svIdle(17), plen 0: [] -EVENT[24841]: 2.937747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24842]: 2.937757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24843]: 2.937770775 - core[1].svIdle(17), plen 0: [] -EVENT[24844]: 2.938617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24845]: 2.938629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24846]: 2.938643125 - core[0].svIdle(17), plen 0: [] -EVENT[24847]: 2.938747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24848]: 2.938756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24849]: 2.938770600 - core[1].svIdle(17), plen 0: [] -EVENT[24850]: 2.939617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24851]: 2.939629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24852]: 2.939643250 - core[0].svIdle(17), plen 0: [] -EVENT[24853]: 2.939747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24854]: 2.939756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24855]: 2.939770600 - core[1].svIdle(17), plen 0: [] -EVENT[24856]: 2.940617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24857]: 2.940629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24858]: 2.940643175 - core[0].svIdle(17), plen 0: [] -EVENT[24859]: 2.940747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24860]: 2.940756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24861]: 2.940770600 - core[1].svIdle(17), plen 0: [] -EVENT[24862]: 2.941617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24863]: 2.941629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24864]: 2.941643125 - core[0].svIdle(17), plen 0: [] -EVENT[24865]: 2.941747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24866]: 2.941757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24867]: 2.941770775 - core[1].svIdle(17), plen 0: [] -EVENT[24868]: 2.942617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24869]: 2.942629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24870]: 2.942643125 - core[0].svIdle(17), plen 0: [] -EVENT[24871]: 2.942747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24872]: 2.942756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24873]: 2.942770600 - core[1].svIdle(17), plen 0: [] -EVENT[24874]: 2.943617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24875]: 2.943629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[24876]: 2.943638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24877]: 2.943652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[24878]: 2.943677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 198, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.943677000] HEAP: Allocated 198 bytes @ 0x3ffb4b10 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24879]: 2.943692100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24880]: 2.943706100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24881]: 2.943747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24882]: 2.943768375 - core[0].svPrint(26), plen 72: [msg: I (3270) example: Task[0x3ffb7f40]: allocated 198 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.943768375] LOG: I (3270) example: Task[0x3ffb7f40]: allocated 198 bytes @ 0x3ffb4b10 -EVENT[24883]: 2.943777525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24884]: 2.943785800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12288168, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24885]: 2.943796400 - core[1].svIdle(17), plen 0: [] -EVENT[24886]: 2.943807200 - core[0].svTaskStartReady(6), plen 0: [tid: 12288292] -EVENT[24887]: 2.943820200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24888]: 2.943828750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[24889]: 2.943836675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24890]: 2.943845225 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[24891]: 2.943857850 - core[1].svTaskStartExec(4), plen 0: [tid: 12288292] -EVENT[24892]: 2.943866225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[24893]: 2.943874550 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12288168, pvBuffer: 12295008, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[24894]: 2.943883425 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24895]: 2.943892825 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24896]: 2.943902100 - core[0].svIdle(17), plen 0: [] -EVENT[24897]: 2.943916925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24898]: 2.943966175 - core[1].svPrint(26), plen 64: [msg: I (3270) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.943966175] LOG: I (3270) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10 -EVENT[24899]: 2.943984575 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.943984575] HEAP: Freed bytes @ 0x3ffb4b10 from task "free0" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24900]: 2.944002575 - core[1].svTaskStopReady(7), plen 0: [tid: 12288292, cause: 27] -EVENT[24901]: 2.944015250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24902]: 2.944024050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24903]: 2.944039625 - core[1].svIdle(17), plen 0: [] -EVENT[24904]: 2.944617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24905]: 2.944629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[24906]: 2.944638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24907]: 2.944652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[24908]: 2.944677000 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 396, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.944677000] HEAP: Allocated 396 bytes @ 0x3ffb4b10 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24909]: 2.944689700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24910]: 2.944703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24911]: 2.944747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24912]: 2.944769475 - core[0].svPrint(26), plen 72: [msg: I (3271) example: Task[0x3ffb82a0]: allocated 396 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.944769475] LOG: I (3271) example: Task[0x3ffb82a0]: allocated 396 bytes @ 0x3ffb4b10 -EVENT[24913]: 2.944781250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24914]: 2.944789750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289032, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24915]: 2.944800125 - core[1].svIdle(17), plen 0: [] -EVENT[24916]: 2.944810900 - core[0].svTaskStartReady(6), plen 0: [tid: 12289156] -EVENT[24917]: 2.944823925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24918]: 2.944832450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[24919]: 2.944840425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24920]: 2.944849000 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[24921]: 2.944861650 - core[1].svTaskStartExec(4), plen 0: [tid: 12289156] -EVENT[24922]: 2.944870025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[24923]: 2.944878350 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289032, pvBuffer: 12300016, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[24924]: 2.944887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24925]: 2.944896600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24926]: 2.944905800 - core[0].svIdle(17), plen 0: [] -EVENT[24927]: 2.944920625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24928]: 2.944969875 - core[1].svPrint(26), plen 64: [msg: I (3271) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.944969875] LOG: I (3271) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10 -EVENT[24929]: 2.944985475 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.944985475] HEAP: Freed bytes @ 0x3ffb4b10 from task "free1" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24930]: 2.945005825 - core[1].svTaskStopReady(7), plen 0: [tid: 12289156, cause: 27] -EVENT[24931]: 2.945018525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24932]: 2.945027325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24933]: 2.945042900 - core[1].svIdle(17), plen 0: [] -EVENT[24934]: 2.945617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24935]: 2.945629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[24936]: 2.945638800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24937]: 2.945652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[24938]: 2.945676975 - core[0].esp_sysview_heap_trace_alloc(512), plen 25: [addr: 1073433360, size: 594, callers: [1074608848, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.945676975] HEAP: Allocated 594 bytes @ 0x3ffb4b10 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:59 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24939]: 2.945689675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24940]: 2.945703675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24941]: 2.945747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24942]: 2.945769450 - core[0].svPrint(26), plen 72: [msg: I (3272) example: Task[0x3ffb8600]: allocated 594 bytes @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.945769450] LOG: I (3272) example: Task[0x3ffb8600]: allocated 594 bytes @ 0x3ffb4b10 -EVENT[24943]: 2.945778200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24944]: 2.945786700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12289896, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24945]: 2.945797075 - core[1].svIdle(17), plen 0: [] -EVENT[24946]: 2.945807850 - core[0].svTaskStartReady(6), plen 0: [tid: 12274088] -EVENT[24947]: 2.945820875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24948]: 2.945829400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[24949]: 2.945837375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24950]: 2.945845950 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[24951]: 2.945858600 - core[1].svTaskStartExec(4), plen 0: [tid: 12274088] -EVENT[24952]: 2.945866975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[24953]: 2.945879200 - core[1].xQueueGenericReceive(49), plen 14: [xQueue: 12289896, pvBuffer: 12305024, xTicksToWait: 4294967295, xJustPeek: 0] -EVENT[24954]: 2.945887225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24955]: 2.945895675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[24956]: 2.945905800 - core[0].svIdle(17), plen 0: [] -EVENT[24957]: 2.945920725 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[24958]: 2.945970075 - core[1].svPrint(26), plen 64: [msg: I (3272) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -, lvl: 0, unused: 0] -[2.945970075] LOG: I (3272) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10 -EVENT[24959]: 2.945985450 - core[1].esp_sysview_heap_trace_free(513), plen 23: [addr: 1073433360, callers: [1074609026, 1074305980, 0, 0, 0, 0, 0, 0, 0, 0]] -[2.945985450] HEAP: Freed bytes @ 0x3ffb4b10 from task "free2" on core 1 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:24 (discriminator 9) -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -EVENT[24960]: 2.946003575 - core[1].svTaskStopReady(7), plen 0: [tid: 12274088, cause: 27] -EVENT[24961]: 2.946016400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[24962]: 2.946025175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24963]: 2.946040625 - core[1].svIdle(17), plen 0: [] -EVENT[24964]: 2.946617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24965]: 2.946629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24966]: 2.946643175 - core[0].svIdle(17), plen 0: [] -EVENT[24967]: 2.946747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24968]: 2.946756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24969]: 2.946770600 - core[1].svIdle(17), plen 0: [] -EVENT[24970]: 2.947617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24971]: 2.947629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24972]: 2.947643125 - core[0].svIdle(17), plen 0: [] -EVENT[24973]: 2.947747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24974]: 2.947757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24975]: 2.947770775 - core[1].svIdle(17), plen 0: [] -EVENT[24976]: 2.948617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24977]: 2.948629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24978]: 2.948643125 - core[0].svIdle(17), plen 0: [] -EVENT[24979]: 2.948747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24980]: 2.948756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24981]: 2.948770600 - core[1].svIdle(17), plen 0: [] -EVENT[24982]: 2.949617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24983]: 2.949629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24984]: 2.949643250 - core[0].svIdle(17), plen 0: [] -EVENT[24985]: 2.949747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24986]: 2.949756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24987]: 2.949770600 - core[1].svIdle(17), plen 0: [] -EVENT[24988]: 2.950617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24989]: 2.950631925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24990]: 2.950645550 - core[0].svIdle(17), plen 0: [] -EVENT[24991]: 2.950747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24992]: 2.950756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24993]: 2.950770600 - core[1].svIdle(17), plen 0: [] -EVENT[24994]: 2.951617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24995]: 2.951629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[24996]: 2.951643125 - core[0].svIdle(17), plen 0: [] -EVENT[24997]: 2.951747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[24998]: 2.951757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[24999]: 2.951770775 - core[1].svIdle(17), plen 0: [] -EVENT[25000]: 2.952617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25001]: 2.952629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25002]: 2.952643125 - core[0].svIdle(17), plen 0: [] -EVENT[25003]: 2.952747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25004]: 2.952756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25005]: 2.952770600 - core[1].svIdle(17), plen 0: [] -EVENT[25006]: 2.953617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25007]: 2.953629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25008]: 2.953643250 - core[0].svIdle(17), plen 0: [] -EVENT[25009]: 2.953747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25010]: 2.953756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25011]: 2.953770600 - core[1].svIdle(17), plen 0: [] -EVENT[25012]: 2.954617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25013]: 2.954629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25014]: 2.954643175 - core[0].svIdle(17), plen 0: [] -EVENT[25015]: 2.954747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25016]: 2.954756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25017]: 2.954770600 - core[1].svIdle(17), plen 0: [] -EVENT[25018]: 2.955617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25019]: 2.955629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25020]: 2.955643125 - core[0].svIdle(17), plen 0: [] -EVENT[25021]: 2.955747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25022]: 2.955757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25023]: 2.955770775 - core[1].svIdle(17), plen 0: [] -EVENT[25024]: 2.956617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25025]: 2.956629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25026]: 2.956643125 - core[0].svIdle(17), plen 0: [] -EVENT[25027]: 2.956747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25028]: 2.956756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25029]: 2.956770600 - core[1].svIdle(17), plen 0: [] -EVENT[25030]: 2.957617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25031]: 2.957629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25032]: 2.957643250 - core[0].svIdle(17), plen 0: [] -EVENT[25033]: 2.957747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25034]: 2.957756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25035]: 2.957770600 - core[1].svIdle(17), plen 0: [] -EVENT[25036]: 2.958617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25037]: 2.958629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25038]: 2.958643175 - core[0].svIdle(17), plen 0: [] -EVENT[25039]: 2.958747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25040]: 2.958756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25041]: 2.958770600 - core[1].svIdle(17), plen 0: [] -EVENT[25042]: 2.959617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25043]: 2.959629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25044]: 2.959643125 - core[0].svIdle(17), plen 0: [] -EVENT[25045]: 2.959747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25046]: 2.959757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25047]: 2.959770775 - core[1].svIdle(17), plen 0: [] -EVENT[25048]: 2.960617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25049]: 2.960629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25050]: 2.960643125 - core[0].svIdle(17), plen 0: [] -EVENT[25051]: 2.960747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25052]: 2.960756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25053]: 2.960770600 - core[1].svIdle(17), plen 0: [] -EVENT[25054]: 2.961617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25055]: 2.961629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25056]: 2.961643250 - core[0].svIdle(17), plen 0: [] -EVENT[25057]: 2.961747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25058]: 2.961756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25059]: 2.961770600 - core[1].svIdle(17), plen 0: [] -EVENT[25060]: 2.962617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25061]: 2.962632600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25062]: 2.962646225 - core[0].svIdle(17), plen 0: [] -EVENT[25063]: 2.962747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25064]: 2.962756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25065]: 2.962770600 - core[1].svIdle(17), plen 0: [] -EVENT[25066]: 2.963617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25067]: 2.963629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25068]: 2.963643125 - core[0].svIdle(17), plen 0: [] -EVENT[25069]: 2.963747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25070]: 2.963757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25071]: 2.963770775 - core[1].svIdle(17), plen 0: [] -EVENT[25072]: 2.964617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25073]: 2.964629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25074]: 2.964643125 - core[0].svIdle(17), plen 0: [] -EVENT[25075]: 2.964747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25076]: 2.964756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25077]: 2.964770600 - core[1].svIdle(17), plen 0: [] -EVENT[25078]: 2.965617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25079]: 2.965629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25080]: 2.965643250 - core[0].svIdle(17), plen 0: [] -EVENT[25081]: 2.965747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25082]: 2.965756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25083]: 2.965770600 - core[1].svIdle(17), plen 0: [] -EVENT[25084]: 2.966617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25085]: 2.966629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25086]: 2.966643175 - core[0].svIdle(17), plen 0: [] -EVENT[25087]: 2.966747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25088]: 2.966756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25089]: 2.966770600 - core[1].svIdle(17), plen 0: [] -EVENT[25090]: 2.967617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25091]: 2.967629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25092]: 2.967643125 - core[0].svIdle(17), plen 0: [] -EVENT[25093]: 2.967747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25094]: 2.967757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25095]: 2.967770775 - core[1].svIdle(17), plen 0: [] -EVENT[25096]: 2.968617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25097]: 2.968629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25098]: 2.968643125 - core[0].svIdle(17), plen 0: [] -EVENT[25099]: 2.968747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25100]: 2.968756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25101]: 2.968770600 - core[1].svIdle(17), plen 0: [] -EVENT[25102]: 2.969617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25103]: 2.969629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25104]: 2.969643250 - core[0].svIdle(17), plen 0: [] -EVENT[25105]: 2.969747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25106]: 2.969756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25107]: 2.969770600 - core[1].svIdle(17), plen 0: [] -EVENT[25108]: 2.970617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25109]: 2.970629550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25110]: 2.970643175 - core[0].svIdle(17), plen 0: [] -EVENT[25111]: 2.970747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25112]: 2.970756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25113]: 2.970770600 - core[1].svIdle(17), plen 0: [] -EVENT[25114]: 2.971617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25115]: 2.971629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25116]: 2.971643125 - core[0].svIdle(17), plen 0: [] -EVENT[25117]: 2.971747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25118]: 2.971757000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25119]: 2.971770775 - core[1].svIdle(17), plen 0: [] -EVENT[25120]: 2.972617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25121]: 2.972629500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25122]: 2.972643125 - core[0].svIdle(17), plen 0: [] -EVENT[25123]: 2.972747500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25124]: 2.972756975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25125]: 2.972770600 - core[1].svIdle(17), plen 0: [] -EVENT[25126]: 2.973617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25127]: 2.973629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12287808] -EVENT[25128]: 2.973638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25129]: 2.973652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12287808] -EVENT[25130]: 2.973664050 - core[0].svTaskStartReady(6), plen 0: [tid: 12280900] -EVENT[25131]: 2.973676575 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] -EVENT[25132]: 2.973685100 - core[0].svTaskStopReady(7), plen 0: [tid: 12287808, cause: 4] -EVENT[25133]: 2.973697750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[25134]: 2.973706500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25135]: 2.973722375 - core[0].svTaskStartExec(4), plen 0: [tid: 12280900] -EVENT[25136]: 2.973737475 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[25137]: 2.973748600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25138]: 2.973757900 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[25139]: 2.973766525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25140]: 2.973782600 - core[1].svIdle(17), plen 0: [] -EVENT[25141]: 2.973801325 - core[0].svPrint(26), plen 38: [msg: I (3300) example: Got notify val 1 -, lvl: 0, unused: 0] -[2.973801325] LOG: I (3300) example: Got notify val 1 -EVENT[25142]: 2.973813625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[25143]: 2.973827650 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[25144]: 2.973864600 - core[0].svPrint(26), plen 35: [msg: I (3300) example: Wait notify 1 -, lvl: 0, unused: 0] -[2.973864600] LOG: I (3300) example: Wait notify 1 -EVENT[25145]: 2.973874650 - core[0].svTaskStopReady(7), plen 0: [tid: 12280900, cause: 27] -EVENT[25146]: 2.973886950 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[25147]: 2.973895650 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25148]: 2.973910150 - core[0].svIdle(17), plen 0: [] -EVENT[25149]: 2.974617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25150]: 2.974629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12288672] -EVENT[25151]: 2.974638825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25152]: 2.974652975 - core[0].svTaskStartExec(4), plen 0: [tid: 12288672] -EVENT[25153]: 2.974664050 - core[0].svTaskStartReady(6), plen 0: [tid: 12280900] -EVENT[25154]: 2.974674225 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] -EVENT[25155]: 2.974682800 - core[0].svTaskStopReady(7), plen 0: [tid: 12288672, cause: 4] -EVENT[25156]: 2.974695575 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[25157]: 2.974704275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25158]: 2.974720025 - core[0].svTaskStartExec(4), plen 0: [tid: 12280900] -EVENT[25159]: 2.974735150 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[25160]: 2.974748500 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25161]: 2.974757725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[25162]: 2.974766900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25163]: 2.974781625 - core[1].svIdle(17), plen 0: [] -EVENT[25164]: 2.974797575 - core[0].svPrint(26), plen 38: [msg: I (3301) example: Got notify val 1 -, lvl: 0, unused: 0] -[2.974797575] LOG: I (3301) example: Got notify val 1 -EVENT[25165]: 2.974810000 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[25166]: 2.974824000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[25167]: 2.974860925 - core[0].svPrint(26), plen 35: [msg: I (3301) example: Wait notify 2 -, lvl: 0, unused: 0] -[2.974860925] LOG: I (3301) example: Wait notify 2 -EVENT[25168]: 2.974871050 - core[0].svTaskStopReady(7), plen 0: [tid: 12280900, cause: 27] -EVENT[25169]: 2.974883275 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[25170]: 2.974892000 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25171]: 2.974906475 - core[0].svIdle(17), plen 0: [] -EVENT[25172]: 2.975617950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25173]: 2.975629375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289536] -EVENT[25174]: 2.975638850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25175]: 2.975653025 - core[0].svTaskStartExec(4), plen 0: [tid: 12289536] -EVENT[25176]: 2.975664050 - core[0].svTaskStartReady(6), plen 0: [tid: 12280900] -EVENT[25177]: 2.975674150 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] -EVENT[25178]: 2.975682700 - core[0].svTaskStopReady(7), plen 0: [tid: 12289536, cause: 4] -EVENT[25179]: 2.975695400 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[25180]: 2.975704125 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[25181]: 2.975719850 - core[0].svTaskStartExec(4), plen 0: [tid: 12280900] -EVENT[25182]: 2.975735025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12276584, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[25183]: 2.975748350 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[25184]: 2.975756525 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12276584, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[25185]: 2.975764875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[25186]: 2.975779600 - core[1].svIdle(17), plen 0: [] -EVENT[25187]: 2.975795775 - core[0].svPrint(26), plen 38: [msg: I (3302) example: Got notify val 1 -, lvl: 0, unused: 0] -[2.975795775] LOG: I (3302) example: Got notify val 1 -EVENT[25188]: 3.096449025 - core[0].vTaskDelete(33), plen 4: [xTaskToDelete: 12280900] -EVENT[25189]: 3.096456075 - core[0].svTraceStop(11), plen 0: [] -Processed 25190 events +EVENT[1]: 0.000006625 - core[0].svInit(24), plen 14: [sys_freq: 40000000, cpu_freq: 160000000, ram_base: 1061158912, id_shift: 0] +EVENT[2]: 0.000018550 - core[0].svSysDesc(14), plen 0: [desc: N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS] +EVENT[3]: 0.000027675 - core[0].svSysDesc(14), plen 0: [desc: I#5=SysTick] +EVENT[4]: 0.000049775 - core[0].svSysDesc(14), plen 0: [desc: I#6=WIFI_MAC] +EVENT[5]: 0.000063875 - core[0].svSysDesc(14), plen 0: [desc: I#7=WIFI_NMI] +EVENT[6]: 0.000073800 - core[0].svSysDesc(14), plen 0: [desc: I#8=WIFI_BB] +EVENT[7]: 0.000087500 - core[0].svSysDesc(14), plen 0: [desc: I#9=BT_MAC] +EVENT[8]: 0.000101550 - core[0].svSysDesc(14), plen 0: [desc: I#10=BT_BB] +EVENT[9]: 0.000112375 - core[0].svSysDesc(14), plen 0: [desc: I#11=BT_BB_NMI] +EVENT[10]: 0.000122300 - core[0].svSysDesc(14), plen 0: [desc: I#12=RWBT] +EVENT[11]: 0.000132275 - core[0].svSysDesc(14), plen 0: [desc: I#13=RWBLE] +EVENT[12]: 0.000146800 - core[0].svSysDesc(14), plen 0: [desc: I#14=RWBT_NMI] +EVENT[13]: 0.000157600 - core[0].svSysDesc(14), plen 0: [desc: I#15=RWBLE_NMI] +EVENT[14]: 0.000171875 - core[0].svSysDesc(14), plen 0: [desc: I#16=SLC0] +EVENT[15]: 0.000189525 - core[0].svSysDesc(14), plen 0: [desc: I#17=SLC1] +EVENT[16]: 0.000199650 - core[0].svSysDesc(14), plen 0: [desc: I#18=UHCI0] +EVENT[17]: 0.000209600 - core[0].svSysDesc(14), plen 0: [desc: I#19=UHCI1] +EVENT[18]: 0.000224875 - core[0].svSysDesc(14), plen 0: [desc: I#20=TG0_T0_LEVEL] +EVENT[19]: 0.000236275 - core[0].svSysDesc(14), plen 0: [desc: I#21=TG0_T1_LEVEL] +EVENT[20]: 0.000251975 - core[0].svSysDesc(14), plen 0: [desc: I#22=TG0_WDT_LEVEL] +EVENT[21]: 0.000263750 - core[0].svSysDesc(14), plen 0: [desc: I#23=TG0_LACT_LEVEL] +EVENT[22]: 0.000279150 - core[0].svSysDesc(14), plen 0: [desc: I#24=TG1_T0_LEVEL] +EVENT[23]: 0.000294550 - core[0].svSysDesc(14), plen 0: [desc: I#25=TG1_T1_LEVEL] +EVENT[24]: 0.000310125 - core[0].svSysDesc(14), plen 0: [desc: I#26=TG1_WDT_LEVEL] +EVENT[25]: 0.000322075 - core[0].svSysDesc(14), plen 0: [desc: I#27=TG1_LACT_LEVEL] +EVENT[26]: 0.000331975 - core[0].svSysDesc(14), plen 0: [desc: I#28=GPIO] +EVENT[27]: 0.000350900 - core[0].svSysDesc(14), plen 0: [desc: I#29=GPIO_NMI] +EVENT[28]: 0.000361800 - core[0].svSysDesc(14), plen 0: [desc: I#30=FROM_CPU0] +EVENT[29]: 0.000376500 - core[0].svSysDesc(14), plen 0: [desc: I#31=FROM_CPU1] +EVENT[30]: 0.000387300 - core[0].svSysDesc(14), plen 0: [desc: I#32=FROM_CPU2] +EVENT[31]: 0.000402000 - core[0].svSysDesc(14), plen 0: [desc: I#33=FROM_CPU3] +EVENT[32]: 0.000415750 - core[0].svSysDesc(14), plen 0: [desc: I#34=SPI0] +EVENT[33]: 0.000425500 - core[0].svSysDesc(14), plen 0: [desc: I#35=SPI1] +EVENT[34]: 0.000435275 - core[0].svSysDesc(14), plen 0: [desc: I#36=SPI2] +EVENT[35]: 0.000445025 - core[0].svSysDesc(14), plen 0: [desc: I#37=SPI3] +EVENT[36]: 0.000458825 - core[0].svSysDesc(14), plen 0: [desc: I#38=I2S0] +EVENT[37]: 0.000468575 - core[0].svSysDesc(14), plen 0: [desc: I#39=I2S1] +EVENT[38]: 0.000478575 - core[0].svSysDesc(14), plen 0: [desc: I#40=UART0] +EVENT[39]: 0.000492500 - core[0].svSysDesc(14), plen 0: [desc: I#41=UART1] +EVENT[40]: 0.000506375 - core[0].svSysDesc(14), plen 0: [desc: I#42=UART2] +EVENT[41]: 0.000517125 - core[0].svSysDesc(14), plen 0: [desc: I#43=SDIO_HOST] +EVENT[42]: 0.000527475 - core[0].svSysDesc(14), plen 0: [desc: I#44=ETH_MAC] +EVENT[43]: 0.000541600 - core[0].svSysDesc(14), plen 0: [desc: I#45=PWM0] +EVENT[44]: 0.000555300 - core[0].svSysDesc(14), plen 0: [desc: I#46=PWM1] +EVENT[45]: 0.000565950 - core[0].svSysDesc(14), plen 0: [desc: I#47=RESERVED] +EVENT[46]: 0.000576550 - core[0].svSysDesc(14), plen 0: [desc: I#48=RESERVED] +EVENT[47]: 0.000590325 - core[0].svSysDesc(14), plen 0: [desc: I#49=LEDC] +EVENT[48]: 0.000604225 - core[0].svSysDesc(14), plen 0: [desc: I#50=EFUSE] +EVENT[49]: 0.000618075 - core[0].svSysDesc(14), plen 0: [desc: I#51=TWAI] +EVENT[50]: 0.000628650 - core[0].svSysDesc(14), plen 0: [desc: I#52=RTC_CORE] +EVENT[51]: 0.000638225 - core[0].svSysDesc(14), plen 0: [desc: I#53=RMT] +EVENT[52]: 0.000648075 - core[0].svSysDesc(14), plen 0: [desc: I#54=PCNT] +EVENT[53]: 0.000663050 - core[0].svSysDesc(14), plen 0: [desc: I#55=I2C_EXT0] +EVENT[54]: 0.000675200 - core[0].svSysDesc(14), plen 0: [desc: I#56=I2C_EXT1] +EVENT[55]: 0.000690175 - core[0].svSysDesc(14), plen 0: [desc: I#57=RSA] +EVENT[56]: 0.000705900 - core[0].svSysDesc(14), plen 0: [desc: I#58=SPI1_DMA] +EVENT[57]: 0.000718025 - core[0].svSysDesc(14), plen 0: [desc: I#59=SPI2_DMA] +EVENT[58]: 0.000730375 - core[0].svSysDesc(14), plen 0: [desc: I#60=SPI3_DMA] +EVENT[59]: 0.000741300 - core[0].svSysDesc(14), plen 0: [desc: I#61=WDT] +EVENT[60]: 0.000761650 - core[0].svSysDesc(14), plen 0: [desc: I#62=TIMER1] +EVENT[61]: 0.000773525 - core[0].svSysDesc(14), plen 0: [desc: I#63=TIMER2] +EVENT[62]: 0.000786275 - core[0].svSysDesc(14), plen 0: [desc: I#64=TG0_T0_EDGE] +EVENT[63]: 0.000806925 - core[0].svSysDesc(14), plen 0: [desc: I#65=TG0_T1_EDGE] +EVENT[64]: 0.000819950 - core[0].svSysDesc(14), plen 0: [desc: I#66=TG0_WDT_EDGE] +EVENT[65]: 0.000837025 - core[0].svSysDesc(14), plen 0: [desc: I#67=TG0_LACT_EDGE] +EVENT[66]: 0.000850025 - core[0].svSysDesc(14), plen 0: [desc: I#68=TG1_T0_EDGE] +EVENT[67]: 0.000863125 - core[0].svSysDesc(14), plen 0: [desc: I#69=TG1_T1_EDGE] +EVENT[68]: 0.000880425 - core[0].svSysDesc(14), plen 0: [desc: I#70=TG1_WDT_EDGE] +EVENT[69]: 0.000893750 - core[0].svSysDesc(14), plen 0: [desc: I#71=TG1_LACT_EDGE] +EVENT[70]: 0.000909350 - core[0].svSysDesc(14), plen 0: [desc: I#72=MMU_IA] +EVENT[71]: 0.000925000 - core[0].svSysDesc(14), plen 0: [desc: I#73=MPU_IA] +EVENT[72]: 0.000937125 - core[0].svSysDesc(14), plen 0: [desc: I#74=CACHE_IA] +EVENT[73]: 0.000945400 - core[0].svSysTimeUs(13), plen 0: [time: 10000] +EVENT[74]: 0.001060300 - core[0].svTaskInfo(9), plen 0: [tid: 12253204, prio: 24, name: ipc0] +EVENT[75]: 0.001065550 - core[0].svStackInfo(21), plen 0: [tid: 12253204, base: 1073410064, sz: 1344, unused: 0] +EVENT[76]: 0.001174450 - core[0].svTaskInfo(9), plen 0: [tid: 12253560, prio: 24, name: ipc1] +EVENT[77]: 0.001179775 - core[0].svStackInfo(21), plen 0: [tid: 12253560, base: 1073431024, sz: 1344, unused: 0] +EVENT[78]: 0.001331775 - core[0].svTaskInfo(9), plen 0: [tid: 12254080, prio: 1, name: main] +EVENT[79]: 0.001337150 - core[0].svStackInfo(21), plen 0: [tid: 12254080, base: 1073433076, sz: 1916, unused: 0] +EVENT[80]: 0.001344450 - core[0].svNumModules(27), plen 1: [mod_cnt: 0] +EVENT[81]: 0.001351275 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[82]: 0.001362850 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[83]: 0.001373800 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[84]: 0.001384750 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] +EVENT[85]: 0.001399850 - core[0].svIsrExit(3), plen 0: [] +EVENT[86]: 0.001410650 - core[1].svIdle(17), plen 0: [] +EVENT[87]: 0.001422175 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[88]: 0.001433675 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[89]: 0.001450025 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[90]: 0.001476900 - core[0].svModuleDesc(22), plen 0: [mod_id: 0, evt_off: 512, desc: M=ESP32 SystemView Heap Tracing Module] +EVENT[91]: 0.001532525 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073443032, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621423, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.001532525] HEAP: Allocated 8 bytes @ 0x3ffb70d8 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[92]: 0.001666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[93]: 0.001679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[94]: 0.001696525 - core[1].svIdle(17), plen 0: [] +EVENT[95]: 0.001833550 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[96]: 0.001848925 - core[0].svIsrExit(3), plen 0: [] +EVENT[97]: 0.001870025 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073443048, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.001870025] HEAP: Allocated 2500 bytes @ 0x3ffb70e8 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[98]: 0.001909875 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073445612, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.001909875] HEAP: Allocated 340 bytes @ 0x3ffb7aec from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[99]: 0.001932550 - core[0].svTaskCreate(8), plen 0: [tid: 12286700] +EVENT[100]: 0.001945175 - core[0].svTaskInfo(9), plen 0: [tid: 12286700, prio: 5, name: alloc0] +EVENT[101]: 0.001954275 - core[0].svStackInfo(21), plen 0: [tid: 12286700, base: 1073443048, sz: 4294965096, unused: 0] +EVENT[102]: 0.001964975 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[103]: 0.001980675 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[104]: 0.001992175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[105]: 0.002008650 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[106]: 0.002044025 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073445968, size: 124, callers: [1074274287, 1074304020, 1074300537, 1074621092, 1074302356, 0, 0, 0, 0, 0]] +[0.002044025] HEAP: Allocated 124 bytes @ 0x3ffb7c50 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[107]: 0.002058325 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] +EVENT[108]: 0.002113550 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073446096, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621152, 1074302356, 0, 0, 0, 0, 0]] +[0.002113550] HEAP: Allocated 2500 bytes @ 0x3ffb7cd0 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[109]: 0.002147950 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073448660, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621152, 1074302356, 0, 0, 0, 0, 0]] +[0.002147950] HEAP: Allocated 340 bytes @ 0x3ffb86d4 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[110]: 0.002174650 - core[0].svTaskCreate(8), plen 0: [tid: 12289748] +EVENT[111]: 0.002187150 - core[0].svTaskInfo(9), plen 0: [tid: 12289748, prio: 5, name: free0] +EVENT[112]: 0.002196300 - core[0].svStackInfo(21), plen 0: [tid: 12289748, base: 1073446096, sz: 4294965088, unused: 0] +EVENT[113]: 0.002207125 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[114]: 0.002222500 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[115]: 0.002235400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[116]: 0.002251800 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073449016, size: 1, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.002251800] HEAP: Allocated 1 bytes @ 0x3ffb8838 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[117]: 0.002263100 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[118]: 0.002293125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[119]: 0.002304050 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073449032, size: 2, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.002304050] HEAP: Allocated 2 bytes @ 0x3ffb8848 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[120]: 0.002315125 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[121]: 0.002327775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[122]: 0.002338225 - core[1].svIdle(17), plen 0: [] +EVENT[123]: 0.002372400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[124]: 0.002611675 - core[0].svPrint(26), plen 69: [msg: I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848 +, lvl: 0, unused: 0] +[0.002611675] LOG: I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848 +EVENT[125]: 0.002633250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[126]: 0.002646375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[127]: 0.002662575 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[128]: 0.002673450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[129]: 0.002684225 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[130]: 0.002698400 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[131]: 0.002709150 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[132]: 0.002720075 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[133]: 0.002731625 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[134]: 0.002742100 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[135]: 0.002759600 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[136]: 0.002776550 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[137]: 0.002788050 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073449048, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621423, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.002788050] HEAP: Allocated 8 bytes @ 0x3ffb8858 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[138]: 0.002824000 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[139]: 0.002835875 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[140]: 0.002851250 - core[0].svIsrExit(3), plen 0: [] +EVENT[141]: 0.002863625 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073449064, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.002863625] HEAP: Allocated 2500 bytes @ 0x3ffb8868 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[142]: 0.002878375 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[143]: 0.002905675 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073451628, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.002905675] HEAP: Allocated 340 bytes @ 0x3ffb926c from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[144]: 0.002928325 - core[0].svTaskCreate(8), plen 0: [tid: 12292716] +EVENT[145]: 0.002941000 - core[0].svTaskInfo(9), plen 0: [tid: 12292716, prio: 5, name: alloc1] +EVENT[146]: 0.002950000 - core[0].svStackInfo(21), plen 0: [tid: 12292716, base: 1073449064, sz: 4294965096, unused: 0] +EVENT[147]: 0.002960900 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[148]: 0.002976625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[149]: 0.002988000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[150]: 0.003004850 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[151]: 0.003040300 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073451984, size: 124, callers: [1074274287, 1074304020, 1074300537, 1074621092, 1074302356, 0, 0, 0, 0, 0]] +[0.003040300] HEAP: Allocated 124 bytes @ 0x3ffb93d0 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[152]: 0.003054600 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] +EVENT[153]: 0.003093950 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073452112, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621152, 1074302356, 0, 0, 0, 0, 0]] +[0.003093950] HEAP: Allocated 2500 bytes @ 0x3ffb9450 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[154]: 0.003128350 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073454676, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621152, 1074302356, 0, 0, 0, 0, 0]] +[0.003128350] HEAP: Allocated 340 bytes @ 0x3ffb9e54 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[155]: 0.003155100 - core[0].svTaskCreate(8), plen 0: [tid: 12295764] +EVENT[156]: 0.003167600 - core[0].svTaskInfo(9), plen 0: [tid: 12295764, prio: 5, name: free1] +EVENT[157]: 0.003176775 - core[0].svStackInfo(21), plen 0: [tid: 12295764, base: 1073452112, sz: 4294965088, unused: 0] +EVENT[158]: 0.003187575 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[159]: 0.003223700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073455032, size: 2, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.003223700] HEAP: Allocated 2 bytes @ 0x3ffb9fb8 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[160]: 0.003258100 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073455048, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.003258100] HEAP: Allocated 4 bytes @ 0x3ffb9fc8 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[161]: 0.003275000 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[162]: 0.003296925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[163]: 0.003339650 - core[1].svPrint(26), plen 63: [msg: I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848 +, lvl: 0, unused: 0] +[0.003339650] LOG: I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848 +EVENT[164]: 0.003359800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[165]: 0.003371250 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[166]: 0.003388225 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[167]: 0.003407050 - core[0].svPrint(26), plen 69: [msg: I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8 +, lvl: 0, unused: 0] +[0.003407050] LOG: I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8 +EVENT[168]: 0.003421150 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[169]: 0.003434300 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073449032, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.003434300] HEAP: Freed bytes @ 0x3ffb8848 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[170]: 0.003446125 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[171]: 0.003464800 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[172]: 0.003478750 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[173]: 0.003492825 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[174]: 0.003504725 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[175]: 0.003515600 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[176]: 0.003534850 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[177]: 0.003547175 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073449032, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621423, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.003547175] HEAP: Allocated 8 bytes @ 0x3ffb8848 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[178]: 0.003564225 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[179]: 0.003582900 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[180]: 0.003600675 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073455064, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.003600675] HEAP: Allocated 2500 bytes @ 0x3ffb9fd8 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[181]: 0.003613400 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[182]: 0.003639925 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073457628, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] +[0.003639925] HEAP: Allocated 340 bytes @ 0x3ffba9dc from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[183]: 0.003663425 - core[1].svPrint(26), plen 63: [msg: I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8 +, lvl: 0, unused: 0] +[0.003663425] LOG: I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8 +EVENT[184]: 0.003674800 - core[0].svTaskCreate(8), plen 0: [tid: 12298716] +EVENT[185]: 0.003691000 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[186]: 0.003703775 - core[0].svTaskInfo(9), plen 0: [tid: 12298716, prio: 5, name: alloc2] +EVENT[187]: 0.003714750 - core[0].svStackInfo(21), plen 0: [tid: 12298716, base: 1073455064, sz: 4294965096, unused: 0] +EVENT[188]: 0.003727650 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[189]: 0.003745100 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[190]: 0.003755950 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[191]: 0.003766625 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[192]: 0.003777475 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[193]: 0.003792825 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073455048, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.003792825] HEAP: Freed bytes @ 0x3ffb9fc8 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[194]: 0.003804450 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[195]: 0.003827350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[196]: 0.003839325 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[197]: 0.003850500 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[198]: 0.003862175 - core[0].svIsrExit(3), plen 0: [] +EVENT[199]: 0.003872050 - core[1].svIdle(17), plen 0: [] +EVENT[200]: 0.003888100 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073457984, size: 124, callers: [1074274287, 1074304020, 1074300537, 1074621092, 1074302356, 0, 0, 0, 0, 0]] +[0.003888100] HEAP: Allocated 124 bytes @ 0x3ffbab40 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[201]: 0.003902475 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] +EVENT[202]: 0.003941825 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073458112, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621152, 1074302356, 0, 0, 0, 0, 0]] +[0.003941825] HEAP: Allocated 2500 bytes @ 0x3ffbabc0 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[203]: 0.003976225 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073460676, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621152, 1074302356, 0, 0, 0, 0, 0]] +[0.003976225] HEAP: Allocated 340 bytes @ 0x3ffbb5c4 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[204]: 0.004002200 - core[0].svTaskCreate(8), plen 0: [tid: 12301764] +EVENT[205]: 0.004014700 - core[0].svTaskInfo(9), plen 0: [tid: 12301764, prio: 5, name: free2] +EVENT[206]: 0.004023875 - core[0].svStackInfo(21), plen 0: [tid: 12301764, base: 1073458112, sz: 4294965088, unused: 0] +EVENT[207]: 0.004034675 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[208]: 0.004050925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[209]: 0.004063775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[210]: 0.004075450 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073455048, size: 3, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.004075450] HEAP: Allocated 3 bytes @ 0x3ffb9fc8 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[211]: 0.004086900 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[212]: 0.004113275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[213]: 0.004125025 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461032, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.004125025] HEAP: Allocated 6 bytes @ 0x3ffbb728 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[214]: 0.004136450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[215]: 0.004148425 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[216]: 0.004158700 - core[1].svIdle(17), plen 0: [] +EVENT[217]: 0.004177100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[218]: 0.004229400 - core[0].svPrint(26), plen 69: [msg: I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728 +, lvl: 0, unused: 0] +[0.004229400] LOG: I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728 +EVENT[219]: 0.004246400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[220]: 0.004259550 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[221]: 0.004275825 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[222]: 0.004286675 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[223]: 0.004297450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[224]: 0.004311325 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[225]: 0.004322125 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[226]: 0.004332975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[227]: 0.004344875 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[228]: 0.004355450 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[229]: 0.004367625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[230]: 0.004394675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[231]: 0.004405525 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[232]: 0.004417200 - core[1].svTaskStartReady(6), plen 0: [tid: 12254080] +EVENT[233]: 0.004428550 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[234]: 0.004446675 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[235]: 0.004461000 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[236]: 0.004477875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[237]: 0.004496725 - core[1].svPrint(26), plen 63: [msg: I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728 +, lvl: 0, unused: 0] +[0.004496725] LOG: I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728 +EVENT[238]: 0.004524000 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461032, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.004524000] HEAP: Freed bytes @ 0x3ffbb728 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[239]: 0.004538425 - core[0].svPrint(26), plen 34: [msg: I (312) example: Wait notify 0 +, lvl: 0, unused: 0] +[0.004538425] LOG: I (312) example: Wait notify 0 +EVENT[240]: 0.004553625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[241]: 0.004567700 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[242]: 0.004581650 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[243]: 0.004592100 - core[1].svIdle(17), plen 0: [] +EVENT[244]: 0.004603225 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[245]: 0.004619375 - core[0].svIdle(17), plen 0: [] +EVENT[246]: 0.004666675 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[247]: 0.004680100 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[248]: 0.004695250 - core[1].svIdle(17), plen 0: [] +EVENT[249]: 0.004833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[250]: 0.004849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[251]: 0.004864250 - core[0].svIdle(17), plen 0: [] +EVENT[252]: 0.005666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[253]: 0.005680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[254]: 0.005695225 - core[1].svIdle(17), plen 0: [] +EVENT[255]: 0.005833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[256]: 0.005849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[257]: 0.005864425 - core[0].svIdle(17), plen 0: [] +EVENT[258]: 0.006666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[259]: 0.006679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[260]: 0.006695100 - core[1].svIdle(17), plen 0: [] +EVENT[261]: 0.006833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[262]: 0.006849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[263]: 0.006864250 - core[0].svIdle(17), plen 0: [] +EVENT[264]: 0.007666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[265]: 0.007680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[266]: 0.007695350 - core[1].svIdle(17), plen 0: [] +EVENT[267]: 0.007833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[268]: 0.007849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[269]: 0.007864250 - core[0].svIdle(17), plen 0: [] +EVENT[270]: 0.008666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[271]: 0.008680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[272]: 0.008695125 - core[1].svIdle(17), plen 0: [] +EVENT[273]: 0.008833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[274]: 0.008849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[275]: 0.008868000 - core[0].svIdle(17), plen 0: [] +EVENT[276]: 0.009666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[277]: 0.009679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[278]: 0.009695100 - core[1].svIdle(17), plen 0: [] +EVENT[279]: 0.009833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[280]: 0.009849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[281]: 0.009864250 - core[0].svIdle(17), plen 0: [] +EVENT[282]: 0.010666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[283]: 0.010680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[284]: 0.010695350 - core[1].svIdle(17), plen 0: [] +EVENT[285]: 0.010833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[286]: 0.010849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[287]: 0.010864250 - core[0].svIdle(17), plen 0: [] +EVENT[288]: 0.011666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[289]: 0.011680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[290]: 0.011695125 - core[1].svIdle(17), plen 0: [] +EVENT[291]: 0.011833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[292]: 0.011849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[293]: 0.011864250 - core[0].svIdle(17), plen 0: [] +EVENT[294]: 0.012666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[295]: 0.012680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[296]: 0.012695225 - core[1].svIdle(17), plen 0: [] +EVENT[297]: 0.012833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[298]: 0.012849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[299]: 0.012864425 - core[0].svIdle(17), plen 0: [] +EVENT[300]: 0.013666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[301]: 0.013679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[302]: 0.013695100 - core[1].svIdle(17), plen 0: [] +EVENT[303]: 0.013833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[304]: 0.013849400 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[305]: 0.013864500 - core[0].svIdle(17), plen 0: [] +EVENT[306]: 0.014666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[307]: 0.014680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[308]: 0.014695350 - core[1].svIdle(17), plen 0: [] +EVENT[309]: 0.014833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[310]: 0.014849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[311]: 0.014864250 - core[0].svIdle(17), plen 0: [] +EVENT[312]: 0.015666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[313]: 0.015680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[314]: 0.015695125 - core[1].svIdle(17), plen 0: [] +EVENT[315]: 0.015833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[316]: 0.015849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[317]: 0.015864250 - core[0].svIdle(17), plen 0: [] +EVENT[318]: 0.016666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[319]: 0.016680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[320]: 0.016695225 - core[1].svIdle(17), plen 0: [] +EVENT[321]: 0.016833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[322]: 0.016849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[323]: 0.016864425 - core[0].svIdle(17), plen 0: [] +EVENT[324]: 0.017666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[325]: 0.017679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[326]: 0.017695100 - core[1].svIdle(17), plen 0: [] +EVENT[327]: 0.017833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[328]: 0.017849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[329]: 0.017864250 - core[0].svIdle(17), plen 0: [] +EVENT[330]: 0.018666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[331]: 0.018680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[332]: 0.018695350 - core[1].svIdle(17), plen 0: [] +EVENT[333]: 0.018833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[334]: 0.018849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[335]: 0.018864250 - core[0].svIdle(17), plen 0: [] +EVENT[336]: 0.019666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[337]: 0.019680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[338]: 0.019695125 - core[1].svIdle(17), plen 0: [] +EVENT[339]: 0.019833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[340]: 0.019849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[341]: 0.019864250 - core[0].svIdle(17), plen 0: [] +EVENT[342]: 0.020666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[343]: 0.020680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[344]: 0.020695225 - core[1].svIdle(17), plen 0: [] +EVENT[345]: 0.020833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[346]: 0.020849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[347]: 0.020864425 - core[0].svIdle(17), plen 0: [] +EVENT[348]: 0.021666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[349]: 0.021680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[350]: 0.021695350 - core[1].svIdle(17), plen 0: [] +EVENT[351]: 0.021833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[352]: 0.021849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[353]: 0.021864250 - core[0].svIdle(17), plen 0: [] +EVENT[354]: 0.022666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[355]: 0.022680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[356]: 0.022695125 - core[1].svIdle(17), plen 0: [] +EVENT[357]: 0.022833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[358]: 0.022849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[359]: 0.022864250 - core[0].svIdle(17), plen 0: [] +EVENT[360]: 0.023666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[361]: 0.023680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[362]: 0.023695225 - core[1].svIdle(17), plen 0: [] +EVENT[363]: 0.023833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[364]: 0.023849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[365]: 0.023864425 - core[0].svIdle(17), plen 0: [] +EVENT[366]: 0.024666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[367]: 0.024679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[368]: 0.024695100 - core[1].svIdle(17), plen 0: [] +EVENT[369]: 0.024833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[370]: 0.024849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[371]: 0.024864250 - core[0].svIdle(17), plen 0: [] +EVENT[372]: 0.025666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[373]: 0.025680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[374]: 0.025695350 - core[1].svIdle(17), plen 0: [] +EVENT[375]: 0.025833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[376]: 0.025849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[377]: 0.025864250 - core[0].svIdle(17), plen 0: [] +EVENT[378]: 0.026666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[379]: 0.026680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[380]: 0.026695125 - core[1].svIdle(17), plen 0: [] +EVENT[381]: 0.026833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[382]: 0.026849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[383]: 0.026864250 - core[0].svIdle(17), plen 0: [] +EVENT[384]: 0.027666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[385]: 0.027680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[386]: 0.027695225 - core[1].svIdle(17), plen 0: [] +EVENT[387]: 0.027833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[388]: 0.027849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[389]: 0.027864425 - core[0].svIdle(17), plen 0: [] +EVENT[390]: 0.028666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[391]: 0.028679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[392]: 0.028695100 - core[1].svIdle(17), plen 0: [] +EVENT[393]: 0.028833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[394]: 0.028849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[395]: 0.028864250 - core[0].svIdle(17), plen 0: [] +EVENT[396]: 0.029666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[397]: 0.029680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[398]: 0.029695350 - core[1].svIdle(17), plen 0: [] +EVENT[399]: 0.029833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[400]: 0.029849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[401]: 0.029864250 - core[0].svIdle(17), plen 0: [] +EVENT[402]: 0.030666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[403]: 0.030680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[404]: 0.030695125 - core[1].svIdle(17), plen 0: [] +EVENT[405]: 0.030833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[406]: 0.030849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[407]: 0.030864250 - core[0].svIdle(17), plen 0: [] +EVENT[408]: 0.031666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[409]: 0.031680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[410]: 0.031695225 - core[1].svIdle(17), plen 0: [] +EVENT[411]: 0.031833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[412]: 0.031848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[413]: 0.031861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[414]: 0.031877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[415]: 0.031912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461032, size: 2, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.031912575] HEAP: Allocated 2 bytes @ 0x3ffbb728 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[416]: 0.031951200 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461048, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.031951200] HEAP: Allocated 4 bytes @ 0x3ffbb738 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[417]: 0.031968100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[418]: 0.031984075 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[419]: 0.032048250 - core[0].svPrint(26), plen 69: [msg: I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738 +, lvl: 0, unused: 0] +[0.032048250] LOG: I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738 +EVENT[420]: 0.032061825 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[421]: 0.032074950 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[422]: 0.032091150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[423]: 0.032102025 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[424]: 0.032112800 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[425]: 0.032126700 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[426]: 0.032137500 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[427]: 0.032148350 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[428]: 0.032160325 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[429]: 0.032170550 - core[0].svIdle(17), plen 0: [] +EVENT[430]: 0.032182025 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[431]: 0.032202300 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[432]: 0.032265850 - core[1].svPrint(26), plen 63: [msg: I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738 +, lvl: 0, unused: 0] +[0.032265850] LOG: I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738 +EVENT[433]: 0.032287050 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461048, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.032287050] HEAP: Freed bytes @ 0x3ffbb738 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[434]: 0.032313925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[435]: 0.032325350 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[436]: 0.032342050 - core[1].svIdle(17), plen 0: [] +EVENT[437]: 0.032666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[438]: 0.032679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[439]: 0.032695550 - core[1].svIdle(17), plen 0: [] +EVENT[440]: 0.032833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[441]: 0.032848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[442]: 0.032861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[443]: 0.032877375 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[444]: 0.032912600 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461048, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.032912600] HEAP: Allocated 4 bytes @ 0x3ffbb738 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[445]: 0.032947150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461064, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.032947150] HEAP: Allocated 8 bytes @ 0x3ffbb748 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[446]: 0.032964075 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[447]: 0.032984250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[448]: 0.033048500 - core[0].svPrint(26), plen 69: [msg: I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748 +, lvl: 0, unused: 0] +[0.033048500] LOG: I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748 +EVENT[449]: 0.033062225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[450]: 0.033075450 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[451]: 0.033091700 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[452]: 0.033102550 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[453]: 0.033113300 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[454]: 0.033127025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[455]: 0.033137800 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[456]: 0.033148550 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[457]: 0.033160550 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[458]: 0.033171875 - core[0].svIdle(17), plen 0: [] +EVENT[459]: 0.033184100 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[460]: 0.033200475 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[461]: 0.033263975 - core[1].svPrint(26), plen 63: [msg: I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748 +, lvl: 0, unused: 0] +[0.033263975] LOG: I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748 +EVENT[462]: 0.033288500 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461064, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.033288500] HEAP: Freed bytes @ 0x3ffbb748 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[463]: 0.033315625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[464]: 0.033327050 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[465]: 0.033343625 - core[1].svIdle(17), plen 0: [] +EVENT[466]: 0.033666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[467]: 0.033679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[468]: 0.033695550 - core[1].svIdle(17), plen 0: [] +EVENT[469]: 0.033833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[470]: 0.033848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[471]: 0.033861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[472]: 0.033877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[473]: 0.033912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461064, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.033912650] HEAP: Allocated 6 bytes @ 0x3ffbb748 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[474]: 0.033947050 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461080, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.033947050] HEAP: Allocated 12 bytes @ 0x3ffbb758 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[475]: 0.033963950 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[476]: 0.033980050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[477]: 0.034050525 - core[0].svPrint(26), plen 70: [msg: I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758 +, lvl: 0, unused: 0] +[0.034050525] LOG: I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758 +EVENT[478]: 0.034068350 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[479]: 0.034081575 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[480]: 0.034097875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[481]: 0.034108725 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[482]: 0.034119500 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[483]: 0.034133225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[484]: 0.034144100 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[485]: 0.034154925 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[486]: 0.034166800 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[487]: 0.034178075 - core[0].svIdle(17), plen 0: [] +EVENT[488]: 0.034189725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[489]: 0.034206100 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[490]: 0.034269650 - core[1].svPrint(26), plen 63: [msg: I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758 +, lvl: 0, unused: 0] +[0.034269650] LOG: I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758 +EVENT[491]: 0.034290850 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461080, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.034290850] HEAP: Freed bytes @ 0x3ffbb758 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[492]: 0.034321900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[493]: 0.034333375 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[494]: 0.034350075 - core[1].svIdle(17), plen 0: [] +EVENT[495]: 0.034666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[496]: 0.034679875 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[497]: 0.034695450 - core[1].svIdle(17), plen 0: [] +EVENT[498]: 0.034833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[499]: 0.034849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[500]: 0.034864425 - core[0].svIdle(17), plen 0: [] +EVENT[501]: 0.035666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[502]: 0.035679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[503]: 0.035695100 - core[1].svIdle(17), plen 0: [] +EVENT[504]: 0.035833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[505]: 0.035849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[506]: 0.035864250 - core[0].svIdle(17), plen 0: [] +EVENT[507]: 0.036666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[508]: 0.036680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[509]: 0.036695350 - core[1].svIdle(17), plen 0: [] +EVENT[510]: 0.036833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[511]: 0.036849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[512]: 0.036864250 - core[0].svIdle(17), plen 0: [] +EVENT[513]: 0.037666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[514]: 0.037680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[515]: 0.037695125 - core[1].svIdle(17), plen 0: [] +EVENT[516]: 0.037833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[517]: 0.037849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[518]: 0.037864250 - core[0].svIdle(17), plen 0: [] +EVENT[519]: 0.038666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[520]: 0.038680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[521]: 0.038695225 - core[1].svIdle(17), plen 0: [] +EVENT[522]: 0.038833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[523]: 0.038849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[524]: 0.038864425 - core[0].svIdle(17), plen 0: [] +EVENT[525]: 0.039666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[526]: 0.039679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[527]: 0.039695100 - core[1].svIdle(17), plen 0: [] +EVENT[528]: 0.039833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[529]: 0.039849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[530]: 0.039864250 - core[0].svIdle(17), plen 0: [] +EVENT[531]: 0.040666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[532]: 0.040680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[533]: 0.040695350 - core[1].svIdle(17), plen 0: [] +EVENT[534]: 0.040833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[535]: 0.040849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[536]: 0.040864250 - core[0].svIdle(17), plen 0: [] +EVENT[537]: 0.041666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[538]: 0.041680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[539]: 0.041695125 - core[1].svIdle(17), plen 0: [] +EVENT[540]: 0.041833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[541]: 0.041849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[542]: 0.041864250 - core[0].svIdle(17), plen 0: [] +EVENT[543]: 0.042666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[544]: 0.042680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[545]: 0.042695225 - core[1].svIdle(17), plen 0: [] +EVENT[546]: 0.042833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[547]: 0.042849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[548]: 0.042864425 - core[0].svIdle(17), plen 0: [] +EVENT[549]: 0.043666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[550]: 0.043679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[551]: 0.043695100 - core[1].svIdle(17), plen 0: [] +EVENT[552]: 0.043833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[553]: 0.043849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[554]: 0.043864250 - core[0].svIdle(17), plen 0: [] +EVENT[555]: 0.044666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[556]: 0.044684200 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[557]: 0.044699325 - core[1].svIdle(17), plen 0: [] +EVENT[558]: 0.044833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[559]: 0.044849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[560]: 0.044864250 - core[0].svIdle(17), plen 0: [] +EVENT[561]: 0.045666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[562]: 0.045680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[563]: 0.045695225 - core[1].svIdle(17), plen 0: [] +EVENT[564]: 0.045833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[565]: 0.045849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[566]: 0.045864425 - core[0].svIdle(17), plen 0: [] +EVENT[567]: 0.046666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[568]: 0.046679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[569]: 0.046695100 - core[1].svIdle(17), plen 0: [] +EVENT[570]: 0.046833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[571]: 0.046849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[572]: 0.046864250 - core[0].svIdle(17), plen 0: [] +EVENT[573]: 0.047666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[574]: 0.047680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[575]: 0.047695350 - core[1].svIdle(17), plen 0: [] +EVENT[576]: 0.047833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[577]: 0.047849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[578]: 0.047864250 - core[0].svIdle(17), plen 0: [] +EVENT[579]: 0.048666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[580]: 0.048680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[581]: 0.048695125 - core[1].svIdle(17), plen 0: [] +EVENT[582]: 0.048833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[583]: 0.048849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[584]: 0.048864250 - core[0].svIdle(17), plen 0: [] +EVENT[585]: 0.049666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[586]: 0.049680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[587]: 0.049695225 - core[1].svIdle(17), plen 0: [] +EVENT[588]: 0.049833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[589]: 0.049849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[590]: 0.049864425 - core[0].svIdle(17), plen 0: [] +EVENT[591]: 0.050666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[592]: 0.050679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[593]: 0.050695100 - core[1].svIdle(17), plen 0: [] +EVENT[594]: 0.050833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[595]: 0.050849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[596]: 0.050864250 - core[0].svIdle(17), plen 0: [] +EVENT[597]: 0.051666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[598]: 0.051680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[599]: 0.051695350 - core[1].svIdle(17), plen 0: [] +EVENT[600]: 0.051833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[601]: 0.051849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[602]: 0.051864250 - core[0].svIdle(17), plen 0: [] +EVENT[603]: 0.052666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[604]: 0.052680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[605]: 0.052695125 - core[1].svIdle(17), plen 0: [] +EVENT[606]: 0.052833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[607]: 0.052849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[608]: 0.052864250 - core[0].svIdle(17), plen 0: [] +EVENT[609]: 0.053666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[610]: 0.053680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[611]: 0.053695225 - core[1].svIdle(17), plen 0: [] +EVENT[612]: 0.053833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[613]: 0.053849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[614]: 0.053864425 - core[0].svIdle(17), plen 0: [] +EVENT[615]: 0.054666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[616]: 0.054679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[617]: 0.054695100 - core[1].svIdle(17), plen 0: [] +EVENT[618]: 0.054833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[619]: 0.054849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[620]: 0.054864250 - core[0].svIdle(17), plen 0: [] +EVENT[621]: 0.055666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[622]: 0.055680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[623]: 0.055695350 - core[1].svIdle(17), plen 0: [] +EVENT[624]: 0.055833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[625]: 0.055849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[626]: 0.055864250 - core[0].svIdle(17), plen 0: [] +EVENT[627]: 0.056666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[628]: 0.056684225 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[629]: 0.056699375 - core[1].svIdle(17), plen 0: [] +EVENT[630]: 0.056833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[631]: 0.056849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[632]: 0.056864250 - core[0].svIdle(17), plen 0: [] +EVENT[633]: 0.057666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[634]: 0.057680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[635]: 0.057695225 - core[1].svIdle(17), plen 0: [] +EVENT[636]: 0.057833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[637]: 0.057849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[638]: 0.057864425 - core[0].svIdle(17), plen 0: [] +EVENT[639]: 0.058666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[640]: 0.058679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[641]: 0.058695100 - core[1].svIdle(17), plen 0: [] +EVENT[642]: 0.058833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[643]: 0.058849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[644]: 0.058864250 - core[0].svIdle(17), plen 0: [] +EVENT[645]: 0.059666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[646]: 0.059680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[647]: 0.059695350 - core[1].svIdle(17), plen 0: [] +EVENT[648]: 0.059833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[649]: 0.059849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[650]: 0.059864250 - core[0].svIdle(17), plen 0: [] +EVENT[651]: 0.060666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[652]: 0.060680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[653]: 0.060695125 - core[1].svIdle(17), plen 0: [] +EVENT[654]: 0.060833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[655]: 0.060849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[656]: 0.060864250 - core[0].svIdle(17), plen 0: [] +EVENT[657]: 0.061666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[658]: 0.061680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[659]: 0.061695225 - core[1].svIdle(17), plen 0: [] +EVENT[660]: 0.061833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[661]: 0.061848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[662]: 0.061861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[663]: 0.061877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[664]: 0.061912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461080, size: 3, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.061912575] HEAP: Allocated 3 bytes @ 0x3ffbb758 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[665]: 0.061947000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461096, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.061947000] HEAP: Allocated 6 bytes @ 0x3ffbb768 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[666]: 0.061964025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[667]: 0.061980025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[668]: 0.062044275 - core[0].svPrint(26), plen 69: [msg: I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768 +, lvl: 0, unused: 0] +[0.062044275] LOG: I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768 +EVENT[669]: 0.062062075 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[670]: 0.062075200 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[671]: 0.062091350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[672]: 0.062102400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[673]: 0.062113150 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[674]: 0.062127150 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[675]: 0.062138000 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[676]: 0.062148875 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[677]: 0.062160875 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[678]: 0.062171200 - core[0].svIdle(17), plen 0: [] +EVENT[679]: 0.062183675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[680]: 0.062199850 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[681]: 0.062263400 - core[1].svPrint(26), plen 63: [msg: I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768 +, lvl: 0, unused: 0] +[0.062263400] LOG: I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768 +EVENT[682]: 0.062284400 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461096, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.062284400] HEAP: Freed bytes @ 0x3ffbb768 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[683]: 0.062314725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[684]: 0.062326200 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[685]: 0.062342900 - core[1].svIdle(17), plen 0: [] +EVENT[686]: 0.062666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[687]: 0.062679875 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[688]: 0.062695450 - core[1].svIdle(17), plen 0: [] +EVENT[689]: 0.062833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[690]: 0.062848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[691]: 0.062861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[692]: 0.062877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[693]: 0.062912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461096, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.062912575] HEAP: Allocated 6 bytes @ 0x3ffbb768 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[694]: 0.062947000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461112, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.062947000] HEAP: Allocated 12 bytes @ 0x3ffbb778 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[695]: 0.062964025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[696]: 0.062980025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[697]: 0.063046500 - core[0].svPrint(26), plen 70: [msg: I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778 +, lvl: 0, unused: 0] +[0.063046500] LOG: I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778 +EVENT[698]: 0.063060050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[699]: 0.063077450 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[700]: 0.063093775 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[701]: 0.063104625 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[702]: 0.063115375 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[703]: 0.063129100 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[704]: 0.063139950 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[705]: 0.063150775 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[706]: 0.063162625 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[707]: 0.063172900 - core[0].svIdle(17), plen 0: [] +EVENT[708]: 0.063184375 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[709]: 0.063200675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[710]: 0.063264125 - core[1].svPrint(26), plen 63: [msg: I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778 +, lvl: 0, unused: 0] +[0.063264125] LOG: I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778 +EVENT[711]: 0.063285275 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461112, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.063285275] HEAP: Freed bytes @ 0x3ffbb778 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[712]: 0.063312400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[713]: 0.063323825 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[714]: 0.063340400 - core[1].svIdle(17), plen 0: [] +EVENT[715]: 0.063666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[716]: 0.063679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[717]: 0.063695550 - core[1].svIdle(17), plen 0: [] +EVENT[718]: 0.063833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[719]: 0.063848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[720]: 0.063861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[721]: 0.063877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[722]: 0.063912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461112, size: 9, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.063912650] HEAP: Allocated 9 bytes @ 0x3ffbb778 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[723]: 0.063951300 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461128, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.063951300] HEAP: Allocated 18 bytes @ 0x3ffbb788 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[724]: 0.063968200 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[725]: 0.063984175 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[726]: 0.064054525 - core[0].svPrint(26), plen 70: [msg: I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788 +, lvl: 0, unused: 0] +[0.064054525] LOG: I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788 +EVENT[727]: 0.064068125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[728]: 0.064081350 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[729]: 0.064097650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[730]: 0.064108500 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[731]: 0.064119275 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[732]: 0.064133000 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[733]: 0.064143875 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[734]: 0.064154700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[735]: 0.064166575 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[736]: 0.064177850 - core[0].svIdle(17), plen 0: [] +EVENT[737]: 0.064189500 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[738]: 0.064209950 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[739]: 0.064273500 - core[1].svPrint(26), plen 63: [msg: I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788 +, lvl: 0, unused: 0] +[0.064273500] LOG: I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788 +EVENT[740]: 0.064294700 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461128, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.064294700] HEAP: Freed bytes @ 0x3ffbb788 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[741]: 0.064321575 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[742]: 0.064333000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[743]: 0.064349575 - core[1].svIdle(17), plen 0: [] +EVENT[744]: 0.064666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[745]: 0.064679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[746]: 0.064695550 - core[1].svIdle(17), plen 0: [] +EVENT[747]: 0.064833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[748]: 0.064849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[749]: 0.064864250 - core[0].svIdle(17), plen 0: [] +EVENT[750]: 0.065666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[751]: 0.065680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[752]: 0.065695350 - core[1].svIdle(17), plen 0: [] +EVENT[753]: 0.065833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[754]: 0.065849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[755]: 0.065864250 - core[0].svIdle(17), plen 0: [] +EVENT[756]: 0.066666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[757]: 0.066680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[758]: 0.066695125 - core[1].svIdle(17), plen 0: [] +EVENT[759]: 0.066833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[760]: 0.066849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[761]: 0.066864250 - core[0].svIdle(17), plen 0: [] +EVENT[762]: 0.067666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[763]: 0.067680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[764]: 0.067695225 - core[1].svIdle(17), plen 0: [] +EVENT[765]: 0.067833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[766]: 0.067849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[767]: 0.067864425 - core[0].svIdle(17), plen 0: [] +EVENT[768]: 0.068666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[769]: 0.068679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[770]: 0.068695100 - core[1].svIdle(17), plen 0: [] +EVENT[771]: 0.068833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[772]: 0.068849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[773]: 0.068864250 - core[0].svIdle(17), plen 0: [] +EVENT[774]: 0.069666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[775]: 0.069680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[776]: 0.069695350 - core[1].svIdle(17), plen 0: [] +EVENT[777]: 0.069833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[778]: 0.069849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[779]: 0.069868575 - core[0].svIdle(17), plen 0: [] +EVENT[780]: 0.070666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[781]: 0.070679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[782]: 0.070695100 - core[1].svIdle(17), plen 0: [] +EVENT[783]: 0.070833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[784]: 0.070849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[785]: 0.070864250 - core[0].svIdle(17), plen 0: [] +EVENT[786]: 0.071666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[787]: 0.071680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[788]: 0.071695350 - core[1].svIdle(17), plen 0: [] +EVENT[789]: 0.071833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[790]: 0.071849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[791]: 0.071864250 - core[0].svIdle(17), plen 0: [] +EVENT[792]: 0.072666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[793]: 0.072680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[794]: 0.072695125 - core[1].svIdle(17), plen 0: [] +EVENT[795]: 0.072833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[796]: 0.072849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[797]: 0.072864250 - core[0].svIdle(17), plen 0: [] +EVENT[798]: 0.073666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[799]: 0.073680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[800]: 0.073695225 - core[1].svIdle(17), plen 0: [] +EVENT[801]: 0.073833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[802]: 0.073849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[803]: 0.073864425 - core[0].svIdle(17), plen 0: [] +EVENT[804]: 0.074666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[805]: 0.074679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[806]: 0.074695100 - core[1].svIdle(17), plen 0: [] +EVENT[807]: 0.074833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[808]: 0.074849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[809]: 0.074864250 - core[0].svIdle(17), plen 0: [] +EVENT[810]: 0.075666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[811]: 0.075680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[812]: 0.075695350 - core[1].svIdle(17), plen 0: [] +EVENT[813]: 0.075833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[814]: 0.075849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[815]: 0.075864250 - core[0].svIdle(17), plen 0: [] +EVENT[816]: 0.076666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[817]: 0.076680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[818]: 0.076695125 - core[1].svIdle(17), plen 0: [] +EVENT[819]: 0.076833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[820]: 0.076849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[821]: 0.076864250 - core[0].svIdle(17), plen 0: [] +EVENT[822]: 0.077666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[823]: 0.077680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[824]: 0.077695225 - core[1].svIdle(17), plen 0: [] +EVENT[825]: 0.077833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[826]: 0.077849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[827]: 0.077864425 - core[0].svIdle(17), plen 0: [] +EVENT[828]: 0.078666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[829]: 0.078679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[830]: 0.078695100 - core[1].svIdle(17), plen 0: [] +EVENT[831]: 0.078833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[832]: 0.078849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[833]: 0.078864250 - core[0].svIdle(17), plen 0: [] +EVENT[834]: 0.079666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[835]: 0.079680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[836]: 0.079695350 - core[1].svIdle(17), plen 0: [] +EVENT[837]: 0.079833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[838]: 0.079849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[839]: 0.079864250 - core[0].svIdle(17), plen 0: [] +EVENT[840]: 0.080666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[841]: 0.080680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[842]: 0.080695125 - core[1].svIdle(17), plen 0: [] +EVENT[843]: 0.080833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[844]: 0.080849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[845]: 0.080864250 - core[0].svIdle(17), plen 0: [] +EVENT[846]: 0.081666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[847]: 0.081680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[848]: 0.081695225 - core[1].svIdle(17), plen 0: [] +EVENT[849]: 0.081833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[850]: 0.081849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[851]: 0.081864425 - core[0].svIdle(17), plen 0: [] +EVENT[852]: 0.082666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[853]: 0.082680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[854]: 0.082695350 - core[1].svIdle(17), plen 0: [] +EVENT[855]: 0.082833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[856]: 0.082849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[857]: 0.082864250 - core[0].svIdle(17), plen 0: [] +EVENT[858]: 0.083666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[859]: 0.083680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[860]: 0.083695125 - core[1].svIdle(17), plen 0: [] +EVENT[861]: 0.083833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[862]: 0.083849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[863]: 0.083864250 - core[0].svIdle(17), plen 0: [] +EVENT[864]: 0.084666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[865]: 0.084680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[866]: 0.084695225 - core[1].svIdle(17), plen 0: [] +EVENT[867]: 0.084833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[868]: 0.084849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[869]: 0.084864425 - core[0].svIdle(17), plen 0: [] +EVENT[870]: 0.085666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[871]: 0.085679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[872]: 0.085695100 - core[1].svIdle(17), plen 0: [] +EVENT[873]: 0.085833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[874]: 0.085849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[875]: 0.085864250 - core[0].svIdle(17), plen 0: [] +EVENT[876]: 0.086666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[877]: 0.086680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[878]: 0.086695350 - core[1].svIdle(17), plen 0: [] +EVENT[879]: 0.086833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[880]: 0.086849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[881]: 0.086864250 - core[0].svIdle(17), plen 0: [] +EVENT[882]: 0.087666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[883]: 0.087680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[884]: 0.087695125 - core[1].svIdle(17), plen 0: [] +EVENT[885]: 0.087833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[886]: 0.087849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[887]: 0.087864250 - core[0].svIdle(17), plen 0: [] +EVENT[888]: 0.088666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[889]: 0.088680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[890]: 0.088695225 - core[1].svIdle(17), plen 0: [] +EVENT[891]: 0.088833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[892]: 0.088849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[893]: 0.088864425 - core[0].svIdle(17), plen 0: [] +EVENT[894]: 0.089666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[895]: 0.089679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[896]: 0.089695100 - core[1].svIdle(17), plen 0: [] +EVENT[897]: 0.089833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[898]: 0.089849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[899]: 0.089864250 - core[0].svIdle(17), plen 0: [] +EVENT[900]: 0.090666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[901]: 0.090680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[902]: 0.090695350 - core[1].svIdle(17), plen 0: [] +EVENT[903]: 0.090833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[904]: 0.090849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[905]: 0.090864250 - core[0].svIdle(17), plen 0: [] +EVENT[906]: 0.091666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[907]: 0.091680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[908]: 0.091695125 - core[1].svIdle(17), plen 0: [] +EVENT[909]: 0.091833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[910]: 0.091848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[911]: 0.091861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[912]: 0.091877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[913]: 0.091912475 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461128, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.091912475] HEAP: Allocated 4 bytes @ 0x3ffbb788 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[914]: 0.091950300 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461144, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.091950300] HEAP: Allocated 8 bytes @ 0x3ffbb798 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[915]: 0.091967200 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[916]: 0.091983200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[917]: 0.092047350 - core[0].svPrint(26), plen 69: [msg: I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798 +, lvl: 0, unused: 0] +[0.092047350] LOG: I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798 +EVENT[918]: 0.092060925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[919]: 0.092074075 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[920]: 0.092090275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[921]: 0.092101125 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[922]: 0.092111925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[923]: 0.092125800 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[924]: 0.092136625 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[925]: 0.092147475 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[926]: 0.092159350 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[927]: 0.092169575 - core[0].svIdle(17), plen 0: [] +EVENT[928]: 0.092181050 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[929]: 0.092201300 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[930]: 0.092264850 - core[1].svPrint(26), plen 63: [msg: I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798 +, lvl: 0, unused: 0] +[0.092264850] LOG: I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798 +EVENT[931]: 0.092286050 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461144, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.092286050] HEAP: Freed bytes @ 0x3ffbb798 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[932]: 0.092312950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[933]: 0.092324500 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[934]: 0.092341075 - core[1].svIdle(17), plen 0: [] +EVENT[935]: 0.092666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[936]: 0.092679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[937]: 0.092695550 - core[1].svIdle(17), plen 0: [] +EVENT[938]: 0.092833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[939]: 0.092848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[940]: 0.092861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[941]: 0.092877375 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[942]: 0.092912775 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461144, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.092912775] HEAP: Allocated 8 bytes @ 0x3ffbb798 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[943]: 0.092947300 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461160, size: 16, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.092947300] HEAP: Allocated 16 bytes @ 0x3ffbb7a8 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[944]: 0.092964250 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[945]: 0.092984425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[946]: 0.093050900 - core[0].svPrint(26), plen 70: [msg: I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8 +, lvl: 0, unused: 0] +[0.093050900] LOG: I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8 +EVENT[947]: 0.093064550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[948]: 0.093077850 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[949]: 0.093094175 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[950]: 0.093105025 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[951]: 0.093115775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[952]: 0.093129500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[953]: 0.093140350 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[954]: 0.093151175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[955]: 0.093163025 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[956]: 0.093173300 - core[0].svIdle(17), plen 0: [] +EVENT[957]: 0.093184775 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[958]: 0.093201075 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[959]: 0.093264525 - core[1].svPrint(26), plen 63: [msg: I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8 +, lvl: 0, unused: 0] +[0.093264525] LOG: I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8 +EVENT[960]: 0.093289550 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461160, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.093289550] HEAP: Freed bytes @ 0x3ffbb7a8 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[961]: 0.093316550 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[962]: 0.093327975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[963]: 0.093344550 - core[1].svIdle(17), plen 0: [] +EVENT[964]: 0.093666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[965]: 0.093679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[966]: 0.093695550 - core[1].svIdle(17), plen 0: [] +EVENT[967]: 0.093833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[968]: 0.093848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[969]: 0.093861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[970]: 0.093877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[971]: 0.093912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461160, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.093912650] HEAP: Allocated 12 bytes @ 0x3ffbb7a8 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[972]: 0.093947050 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461176, size: 24, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.093947050] HEAP: Allocated 24 bytes @ 0x3ffbb7b8 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[973]: 0.093963950 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[974]: 0.093980050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[975]: 0.094050525 - core[0].svPrint(26), plen 70: [msg: I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8 +, lvl: 0, unused: 0] +[0.094050525] LOG: I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8 +EVENT[976]: 0.094068350 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[977]: 0.094081575 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[978]: 0.094097875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[979]: 0.094108725 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[980]: 0.094119500 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[981]: 0.094133225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[982]: 0.094144100 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[983]: 0.094154925 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[984]: 0.094166800 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[985]: 0.094178075 - core[0].svIdle(17), plen 0: [] +EVENT[986]: 0.094189725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[987]: 0.094206100 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[988]: 0.094269650 - core[1].svPrint(26), plen 63: [msg: I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8 +, lvl: 0, unused: 0] +[0.094269650] LOG: I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8 +EVENT[989]: 0.094290850 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461176, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.094290850] HEAP: Freed bytes @ 0x3ffbb7b8 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[990]: 0.094321875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[991]: 0.094333350 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[992]: 0.094350050 - core[1].svIdle(17), plen 0: [] +EVENT[993]: 0.094666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[994]: 0.094679875 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[995]: 0.094695450 - core[1].svIdle(17), plen 0: [] +EVENT[996]: 0.094833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[997]: 0.094849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[998]: 0.094864425 - core[0].svIdle(17), plen 0: [] +EVENT[999]: 0.095666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1000]: 0.095679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1001]: 0.095695100 - core[1].svIdle(17), plen 0: [] +EVENT[1002]: 0.095833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1003]: 0.095849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1004]: 0.095864250 - core[0].svIdle(17), plen 0: [] +EVENT[1005]: 0.096666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1006]: 0.096680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1007]: 0.096695350 - core[1].svIdle(17), plen 0: [] +EVENT[1008]: 0.096833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1009]: 0.096849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1010]: 0.096864250 - core[0].svIdle(17), plen 0: [] +EVENT[1011]: 0.097666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1012]: 0.097680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1013]: 0.097695125 - core[1].svIdle(17), plen 0: [] +EVENT[1014]: 0.097833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1015]: 0.097849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1016]: 0.097864250 - core[0].svIdle(17), plen 0: [] +EVENT[1017]: 0.098666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1018]: 0.098680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1019]: 0.098695225 - core[1].svIdle(17), plen 0: [] +EVENT[1020]: 0.098833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1021]: 0.098849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1022]: 0.098864425 - core[0].svIdle(17), plen 0: [] +EVENT[1023]: 0.099666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1024]: 0.099679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1025]: 0.099695100 - core[1].svIdle(17), plen 0: [] +EVENT[1026]: 0.099833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1027]: 0.099849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1028]: 0.099864250 - core[0].svIdle(17), plen 0: [] +EVENT[1029]: 0.100666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1030]: 0.100680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1031]: 0.100695350 - core[1].svIdle(17), plen 0: [] +EVENT[1032]: 0.100833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1033]: 0.100849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1034]: 0.100864250 - core[0].svIdle(17), plen 0: [] +EVENT[1035]: 0.101666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1036]: 0.101680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1037]: 0.101695125 - core[1].svIdle(17), plen 0: [] +EVENT[1038]: 0.101833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1039]: 0.101849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1040]: 0.101864250 - core[0].svIdle(17), plen 0: [] +EVENT[1041]: 0.102666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1042]: 0.102680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1043]: 0.102695225 - core[1].svIdle(17), plen 0: [] +EVENT[1044]: 0.102833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1045]: 0.102849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1046]: 0.102864425 - core[0].svIdle(17), plen 0: [] +EVENT[1047]: 0.103666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1048]: 0.103679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1049]: 0.103695100 - core[1].svIdle(17), plen 0: [] +EVENT[1050]: 0.103833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1051]: 0.103849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1052]: 0.103864250 - core[0].svIdle(17), plen 0: [] +EVENT[1053]: 0.104666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1054]: 0.104683575 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1055]: 0.104698725 - core[1].svIdle(17), plen 0: [] +EVENT[1056]: 0.104833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1057]: 0.104849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1058]: 0.104864250 - core[0].svIdle(17), plen 0: [] +EVENT[1059]: 0.105666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1060]: 0.105680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1061]: 0.105695225 - core[1].svIdle(17), plen 0: [] +EVENT[1062]: 0.105833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1063]: 0.105849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1064]: 0.105864425 - core[0].svIdle(17), plen 0: [] +EVENT[1065]: 0.106666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1066]: 0.106679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1067]: 0.106695100 - core[1].svIdle(17), plen 0: [] +EVENT[1068]: 0.106833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1069]: 0.106849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1070]: 0.106864250 - core[0].svIdle(17), plen 0: [] +EVENT[1071]: 0.107666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1072]: 0.107680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1073]: 0.107695350 - core[1].svIdle(17), plen 0: [] +EVENT[1074]: 0.107833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1075]: 0.107849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1076]: 0.107864250 - core[0].svIdle(17), plen 0: [] +EVENT[1077]: 0.108666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1078]: 0.108680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1079]: 0.108695125 - core[1].svIdle(17), plen 0: [] +EVENT[1080]: 0.108833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1081]: 0.108849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1082]: 0.108864250 - core[0].svIdle(17), plen 0: [] +EVENT[1083]: 0.109666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1084]: 0.109680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1085]: 0.109695225 - core[1].svIdle(17), plen 0: [] +EVENT[1086]: 0.109833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1087]: 0.109849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1088]: 0.109864425 - core[0].svIdle(17), plen 0: [] +EVENT[1089]: 0.110666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1090]: 0.110679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1091]: 0.110695100 - core[1].svIdle(17), plen 0: [] +EVENT[1092]: 0.110833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1093]: 0.110849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1094]: 0.110864250 - core[0].svIdle(17), plen 0: [] +EVENT[1095]: 0.111666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1096]: 0.111680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1097]: 0.111695350 - core[1].svIdle(17), plen 0: [] +EVENT[1098]: 0.111833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1099]: 0.111849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1100]: 0.111864250 - core[0].svIdle(17), plen 0: [] +EVENT[1101]: 0.112666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1102]: 0.112680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1103]: 0.112695125 - core[1].svIdle(17), plen 0: [] +EVENT[1104]: 0.112833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1105]: 0.112849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1106]: 0.112864250 - core[0].svIdle(17), plen 0: [] +EVENT[1107]: 0.113666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1108]: 0.113680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1109]: 0.113695225 - core[1].svIdle(17), plen 0: [] +EVENT[1110]: 0.113833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1111]: 0.113849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1112]: 0.113864425 - core[0].svIdle(17), plen 0: [] +EVENT[1113]: 0.114666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1114]: 0.114679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1115]: 0.114695100 - core[1].svIdle(17), plen 0: [] +EVENT[1116]: 0.114833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1117]: 0.114849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1118]: 0.114864250 - core[0].svIdle(17), plen 0: [] +EVENT[1119]: 0.115666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1120]: 0.115680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1121]: 0.115695350 - core[1].svIdle(17), plen 0: [] +EVENT[1122]: 0.115833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1123]: 0.115849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1124]: 0.115864250 - core[0].svIdle(17), plen 0: [] +EVENT[1125]: 0.116666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1126]: 0.116684225 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1127]: 0.116699375 - core[1].svIdle(17), plen 0: [] +EVENT[1128]: 0.116833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1129]: 0.116849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1130]: 0.116864250 - core[0].svIdle(17), plen 0: [] +EVENT[1131]: 0.117666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1132]: 0.117680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1133]: 0.117695225 - core[1].svIdle(17), plen 0: [] +EVENT[1134]: 0.117833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1135]: 0.117849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1136]: 0.117864425 - core[0].svIdle(17), plen 0: [] +EVENT[1137]: 0.118666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1138]: 0.118679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1139]: 0.118695100 - core[1].svIdle(17), plen 0: [] +EVENT[1140]: 0.118833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1141]: 0.118849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1142]: 0.118864250 - core[0].svIdle(17), plen 0: [] +EVENT[1143]: 0.119666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1144]: 0.119680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1145]: 0.119695350 - core[1].svIdle(17), plen 0: [] +EVENT[1146]: 0.119833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1147]: 0.119849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1148]: 0.119864250 - core[0].svIdle(17), plen 0: [] +EVENT[1149]: 0.120666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1150]: 0.120680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1151]: 0.120695125 - core[1].svIdle(17), plen 0: [] +EVENT[1152]: 0.120833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1153]: 0.120849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1154]: 0.120864250 - core[0].svIdle(17), plen 0: [] +EVENT[1155]: 0.121666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1156]: 0.121680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1157]: 0.121695225 - core[1].svIdle(17), plen 0: [] +EVENT[1158]: 0.121833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1159]: 0.121848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[1160]: 0.121861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1161]: 0.121877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[1162]: 0.121912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461176, size: 5, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.121912575] HEAP: Allocated 5 bytes @ 0x3ffbb7b8 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1163]: 0.121947000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461192, size: 10, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.121947000] HEAP: Allocated 10 bytes @ 0x3ffbb7c8 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1164]: 0.121964025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1165]: 0.121980025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1166]: 0.122050450 - core[0].svPrint(26), plen 70: [msg: I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8 +, lvl: 0, unused: 0] +[0.122050450] LOG: I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8 +EVENT[1167]: 0.122068175 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1168]: 0.122081400 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[1169]: 0.122097650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1170]: 0.122108500 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1171]: 0.122119275 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1172]: 0.122133100 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1173]: 0.122144000 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[1174]: 0.122154825 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1175]: 0.122166775 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1176]: 0.122177025 - core[0].svIdle(17), plen 0: [] +EVENT[1177]: 0.122188450 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1178]: 0.122204800 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1179]: 0.122268350 - core[1].svPrint(26), plen 63: [msg: I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8 +, lvl: 0, unused: 0] +[0.122268350] LOG: I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8 +EVENT[1180]: 0.122289550 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461192, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.122289550] HEAP: Freed bytes @ 0x3ffbb7c8 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1181]: 0.122320575 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1182]: 0.122332175 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1183]: 0.122348875 - core[1].svIdle(17), plen 0: [] +EVENT[1184]: 0.122666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1185]: 0.122679875 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1186]: 0.122695450 - core[1].svIdle(17), plen 0: [] +EVENT[1187]: 0.122833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1188]: 0.122848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[1189]: 0.122861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1190]: 0.122877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[1191]: 0.122912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461192, size: 10, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.122912575] HEAP: Allocated 10 bytes @ 0x3ffbb7c8 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1192]: 0.122947000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461208, size: 20, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.122947000] HEAP: Allocated 20 bytes @ 0x3ffbb7d8 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1193]: 0.122964025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1194]: 0.122980025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1195]: 0.123050450 - core[0].svPrint(26), plen 70: [msg: I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8 +, lvl: 0, unused: 0] +[0.123050450] LOG: I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8 +EVENT[1196]: 0.123064000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1197]: 0.123081425 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[1198]: 0.123097725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1199]: 0.123108575 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1200]: 0.123119325 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1201]: 0.123133050 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1202]: 0.123143900 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[1203]: 0.123154725 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1204]: 0.123166600 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1205]: 0.123176850 - core[0].svIdle(17), plen 0: [] +EVENT[1206]: 0.123188325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1207]: 0.123204625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1208]: 0.123268075 - core[1].svPrint(26), plen 63: [msg: I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8 +, lvl: 0, unused: 0] +[0.123268075] LOG: I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8 +EVENT[1209]: 0.123289250 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461208, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.123289250] HEAP: Freed bytes @ 0x3ffbb7d8 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1210]: 0.123316250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1211]: 0.123327675 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1212]: 0.123344250 - core[1].svIdle(17), plen 0: [] +EVENT[1213]: 0.123666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1214]: 0.123679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1215]: 0.123695550 - core[1].svIdle(17), plen 0: [] +EVENT[1216]: 0.123833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1217]: 0.123848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[1218]: 0.123861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1219]: 0.123877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[1220]: 0.123912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461208, size: 15, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.123912650] HEAP: Allocated 15 bytes @ 0x3ffbb7d8 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1221]: 0.123951325 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461228, size: 30, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.123951325] HEAP: Allocated 30 bytes @ 0x3ffbb7ec from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1222]: 0.123968225 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1223]: 0.123984200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1224]: 0.124054550 - core[0].svPrint(26), plen 70: [msg: I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec +, lvl: 0, unused: 0] +[0.124054550] LOG: I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec +EVENT[1225]: 0.124068150 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1226]: 0.124081375 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[1227]: 0.124097675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1228]: 0.124108525 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1229]: 0.124119300 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1230]: 0.124133175 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1231]: 0.124144050 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[1232]: 0.124154875 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1233]: 0.124166750 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1234]: 0.124178025 - core[0].svIdle(17), plen 0: [] +EVENT[1235]: 0.124189675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1236]: 0.124209375 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1237]: 0.124272925 - core[1].svPrint(26), plen 63: [msg: I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec +, lvl: 0, unused: 0] +[0.124272925] LOG: I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec +EVENT[1238]: 0.124294125 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461228, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.124294125] HEAP: Freed bytes @ 0x3ffbb7ec from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1239]: 0.124321025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1240]: 0.124332575 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1241]: 0.124349150 - core[1].svIdle(17), plen 0: [] +EVENT[1242]: 0.124666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1243]: 0.124679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1244]: 0.124695550 - core[1].svIdle(17), plen 0: [] +EVENT[1245]: 0.124833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1246]: 0.124849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1247]: 0.124864250 - core[0].svIdle(17), plen 0: [] +EVENT[1248]: 0.125666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1249]: 0.125680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1250]: 0.125695350 - core[1].svIdle(17), plen 0: [] +EVENT[1251]: 0.125833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1252]: 0.125849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1253]: 0.125864250 - core[0].svIdle(17), plen 0: [] +EVENT[1254]: 0.126666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1255]: 0.126680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1256]: 0.126695125 - core[1].svIdle(17), plen 0: [] +EVENT[1257]: 0.126833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1258]: 0.126849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1259]: 0.126864250 - core[0].svIdle(17), plen 0: [] +EVENT[1260]: 0.127666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1261]: 0.127680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1262]: 0.127695225 - core[1].svIdle(17), plen 0: [] +EVENT[1263]: 0.127833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1264]: 0.127849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1265]: 0.127864425 - core[0].svIdle(17), plen 0: [] +EVENT[1266]: 0.128666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1267]: 0.128679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1268]: 0.128695100 - core[1].svIdle(17), plen 0: [] +EVENT[1269]: 0.128833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1270]: 0.128849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1271]: 0.128864250 - core[0].svIdle(17), plen 0: [] +EVENT[1272]: 0.129666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1273]: 0.129680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1274]: 0.129695350 - core[1].svIdle(17), plen 0: [] +EVENT[1275]: 0.129833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1276]: 0.129849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1277]: 0.129868575 - core[0].svIdle(17), plen 0: [] +EVENT[1278]: 0.130666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1279]: 0.130679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1280]: 0.130695100 - core[1].svIdle(17), plen 0: [] +EVENT[1281]: 0.130833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1282]: 0.130849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1283]: 0.130864250 - core[0].svIdle(17), plen 0: [] +EVENT[1284]: 0.131666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1285]: 0.131680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1286]: 0.131695350 - core[1].svIdle(17), plen 0: [] +EVENT[1287]: 0.131833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1288]: 0.131849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1289]: 0.131864250 - core[0].svIdle(17), plen 0: [] +EVENT[1290]: 0.132666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1291]: 0.132680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1292]: 0.132695125 - core[1].svIdle(17), plen 0: [] +EVENT[1293]: 0.132833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1294]: 0.132849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1295]: 0.132864250 - core[0].svIdle(17), plen 0: [] +EVENT[1296]: 0.133666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1297]: 0.133680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1298]: 0.133695225 - core[1].svIdle(17), plen 0: [] +EVENT[1299]: 0.133833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1300]: 0.133849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1301]: 0.133864425 - core[0].svIdle(17), plen 0: [] +EVENT[1302]: 0.134666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1303]: 0.134679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1304]: 0.134695100 - core[1].svIdle(17), plen 0: [] +EVENT[1305]: 0.134833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1306]: 0.134849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1307]: 0.134864250 - core[0].svIdle(17), plen 0: [] +EVENT[1308]: 0.135666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1309]: 0.135680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1310]: 0.135695350 - core[1].svIdle(17), plen 0: [] +EVENT[1311]: 0.135833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1312]: 0.135849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1313]: 0.135864250 - core[0].svIdle(17), plen 0: [] +EVENT[1314]: 0.136666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1315]: 0.136680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1316]: 0.136695125 - core[1].svIdle(17), plen 0: [] +EVENT[1317]: 0.136833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1318]: 0.136849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1319]: 0.136864250 - core[0].svIdle(17), plen 0: [] +EVENT[1320]: 0.137666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1321]: 0.137680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1322]: 0.137695225 - core[1].svIdle(17), plen 0: [] +EVENT[1323]: 0.137833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1324]: 0.137849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1325]: 0.137864425 - core[0].svIdle(17), plen 0: [] +EVENT[1326]: 0.138666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1327]: 0.138679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1328]: 0.138695100 - core[1].svIdle(17), plen 0: [] +EVENT[1329]: 0.138833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1330]: 0.138849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1331]: 0.138864250 - core[0].svIdle(17), plen 0: [] +EVENT[1332]: 0.139666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1333]: 0.139680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1334]: 0.139695350 - core[1].svIdle(17), plen 0: [] +EVENT[1335]: 0.139833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1336]: 0.139849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1337]: 0.139864250 - core[0].svIdle(17), plen 0: [] +EVENT[1338]: 0.140666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1339]: 0.140680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1340]: 0.140695125 - core[1].svIdle(17), plen 0: [] +EVENT[1341]: 0.140833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1342]: 0.140849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1343]: 0.140864250 - core[0].svIdle(17), plen 0: [] +EVENT[1344]: 0.141666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1345]: 0.141680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1346]: 0.141695225 - core[1].svIdle(17), plen 0: [] +EVENT[1347]: 0.141833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1348]: 0.141849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1349]: 0.141864425 - core[0].svIdle(17), plen 0: [] +EVENT[1350]: 0.142666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1351]: 0.142680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1352]: 0.142695350 - core[1].svIdle(17), plen 0: [] +EVENT[1353]: 0.142833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1354]: 0.142849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1355]: 0.142864250 - core[0].svIdle(17), plen 0: [] +EVENT[1356]: 0.143666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1357]: 0.143680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1358]: 0.143695125 - core[1].svIdle(17), plen 0: [] +EVENT[1359]: 0.143833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1360]: 0.143849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1361]: 0.143864250 - core[0].svIdle(17), plen 0: [] +EVENT[1362]: 0.144666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1363]: 0.144680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1364]: 0.144695225 - core[1].svIdle(17), plen 0: [] +EVENT[1365]: 0.144833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1366]: 0.144849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1367]: 0.144864425 - core[0].svIdle(17), plen 0: [] +EVENT[1368]: 0.145666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1369]: 0.145679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1370]: 0.145695100 - core[1].svIdle(17), plen 0: [] +EVENT[1371]: 0.145833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1372]: 0.145849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1373]: 0.145864250 - core[0].svIdle(17), plen 0: [] +EVENT[1374]: 0.146666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1375]: 0.146680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1376]: 0.146695350 - core[1].svIdle(17), plen 0: [] +EVENT[1377]: 0.146833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1378]: 0.146849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1379]: 0.146864250 - core[0].svIdle(17), plen 0: [] +EVENT[1380]: 0.147666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1381]: 0.147680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1382]: 0.147695125 - core[1].svIdle(17), plen 0: [] +EVENT[1383]: 0.147833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1384]: 0.147849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1385]: 0.147864250 - core[0].svIdle(17), plen 0: [] +EVENT[1386]: 0.148666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1387]: 0.148680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1388]: 0.148695225 - core[1].svIdle(17), plen 0: [] +EVENT[1389]: 0.148833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1390]: 0.148849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1391]: 0.148864425 - core[0].svIdle(17), plen 0: [] +EVENT[1392]: 0.149666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1393]: 0.149679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1394]: 0.149695100 - core[1].svIdle(17), plen 0: [] +EVENT[1395]: 0.149833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1396]: 0.149849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1397]: 0.149864250 - core[0].svIdle(17), plen 0: [] +EVENT[1398]: 0.150666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1399]: 0.150680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1400]: 0.150695350 - core[1].svIdle(17), plen 0: [] +EVENT[1401]: 0.150833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1402]: 0.150849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1403]: 0.150864250 - core[0].svIdle(17), plen 0: [] +EVENT[1404]: 0.151666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1405]: 0.151680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1406]: 0.151695125 - core[1].svIdle(17), plen 0: [] +EVENT[1407]: 0.151833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1408]: 0.151848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[1409]: 0.151861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1410]: 0.151877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[1411]: 0.151912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461228, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.151912650] HEAP: Allocated 6 bytes @ 0x3ffbb7ec from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1412]: 0.151951250 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461244, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.151951250] HEAP: Allocated 12 bytes @ 0x3ffbb7fc from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1413]: 0.151968150 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1414]: 0.151984150 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1415]: 0.152054475 - core[0].svPrint(26), plen 70: [msg: I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc +, lvl: 0, unused: 0] +[0.152054475] LOG: I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc +EVENT[1416]: 0.152068075 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1417]: 0.152081300 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[1418]: 0.152097675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1419]: 0.152108525 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1420]: 0.152119300 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1421]: 0.152133125 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1422]: 0.152144025 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[1423]: 0.152154850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1424]: 0.152166800 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1425]: 0.152177050 - core[0].svIdle(17), plen 0: [] +EVENT[1426]: 0.152188475 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1427]: 0.152208850 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1428]: 0.152272400 - core[1].svPrint(26), plen 63: [msg: I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc +, lvl: 0, unused: 0] +[0.152272400] LOG: I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc +EVENT[1429]: 0.152293600 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461244, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.152293600] HEAP: Freed bytes @ 0x3ffbb7fc from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1430]: 0.152320475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1431]: 0.152331900 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1432]: 0.152348475 - core[1].svIdle(17), plen 0: [] +EVENT[1433]: 0.152666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1434]: 0.152679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1435]: 0.152695550 - core[1].svIdle(17), plen 0: [] +EVENT[1436]: 0.152833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1437]: 0.152848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[1438]: 0.152861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1439]: 0.152877375 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[1440]: 0.152912775 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461244, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.152912775] HEAP: Allocated 12 bytes @ 0x3ffbb7fc from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1441]: 0.152947300 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461260, size: 24, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.152947300] HEAP: Allocated 24 bytes @ 0x3ffbb80c from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1442]: 0.152964250 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1443]: 0.152984425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1444]: 0.153054850 - core[0].svPrint(26), plen 70: [msg: I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c +, lvl: 0, unused: 0] +[0.153054850] LOG: I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c +EVENT[1445]: 0.153068500 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1446]: 0.153081675 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[1447]: 0.153097875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1448]: 0.153108925 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1449]: 0.153119675 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1450]: 0.153133400 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1451]: 0.153144350 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[1452]: 0.153155150 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1453]: 0.153167000 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1454]: 0.153177275 - core[0].svIdle(17), plen 0: [] +EVENT[1455]: 0.153188750 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1456]: 0.153205050 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1457]: 0.153268500 - core[1].svPrint(26), plen 63: [msg: I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c +, lvl: 0, unused: 0] +[0.153268500] LOG: I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c +EVENT[1458]: 0.153293525 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461260, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.153293525] HEAP: Freed bytes @ 0x3ffbb80c from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1459]: 0.153320525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1460]: 0.153331950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1461]: 0.153348525 - core[1].svIdle(17), plen 0: [] +EVENT[1462]: 0.153666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1463]: 0.153679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1464]: 0.153695550 - core[1].svIdle(17), plen 0: [] +EVENT[1465]: 0.153833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1466]: 0.153848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[1467]: 0.153861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1468]: 0.153877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[1469]: 0.153912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461260, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.153912650] HEAP: Allocated 18 bytes @ 0x3ffbb80c from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1470]: 0.153947200 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461284, size: 36, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.153947200] HEAP: Allocated 36 bytes @ 0x3ffbb824 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1471]: 0.153964350 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1472]: 0.153980350 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1473]: 0.154050675 - core[0].svPrint(26), plen 70: [msg: I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824 +, lvl: 0, unused: 0] +[0.154050675] LOG: I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824 +EVENT[1474]: 0.154068500 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1475]: 0.154081850 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[1476]: 0.154098175 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1477]: 0.154109025 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1478]: 0.154119775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1479]: 0.154133500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1480]: 0.154144400 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[1481]: 0.154155225 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1482]: 0.154167075 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1483]: 0.154178375 - core[0].svIdle(17), plen 0: [] +EVENT[1484]: 0.154190000 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1485]: 0.154206400 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1486]: 0.154269950 - core[1].svPrint(26), plen 63: [msg: I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824 +, lvl: 0, unused: 0] +[0.154269950] LOG: I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824 +EVENT[1487]: 0.154291150 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461284, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.154291150] HEAP: Freed bytes @ 0x3ffbb824 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1488]: 0.154322150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1489]: 0.154333625 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1490]: 0.154350325 - core[1].svIdle(17), plen 0: [] +EVENT[1491]: 0.154666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1492]: 0.154679875 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1493]: 0.154695450 - core[1].svIdle(17), plen 0: [] +EVENT[1494]: 0.154833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1495]: 0.154849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1496]: 0.154864425 - core[0].svIdle(17), plen 0: [] +EVENT[1497]: 0.155666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1498]: 0.155679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1499]: 0.155695100 - core[1].svIdle(17), plen 0: [] +EVENT[1500]: 0.155833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1501]: 0.155849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1502]: 0.155864250 - core[0].svIdle(17), plen 0: [] +EVENT[1503]: 0.156666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1504]: 0.156680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1505]: 0.156695350 - core[1].svIdle(17), plen 0: [] +EVENT[1506]: 0.156833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1507]: 0.156849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1508]: 0.156864250 - core[0].svIdle(17), plen 0: [] +EVENT[1509]: 0.157666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1510]: 0.157680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1511]: 0.157695125 - core[1].svIdle(17), plen 0: [] +EVENT[1512]: 0.157833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1513]: 0.157849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1514]: 0.157864250 - core[0].svIdle(17), plen 0: [] +EVENT[1515]: 0.158666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1516]: 0.158680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1517]: 0.158695225 - core[1].svIdle(17), plen 0: [] +EVENT[1518]: 0.158833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1519]: 0.158849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1520]: 0.158864425 - core[0].svIdle(17), plen 0: [] +EVENT[1521]: 0.159666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1522]: 0.159679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1523]: 0.159695100 - core[1].svIdle(17), plen 0: [] +EVENT[1524]: 0.159833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1525]: 0.159849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1526]: 0.159864250 - core[0].svIdle(17), plen 0: [] +EVENT[1527]: 0.160666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1528]: 0.160680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1529]: 0.160695350 - core[1].svIdle(17), plen 0: [] +EVENT[1530]: 0.160833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1531]: 0.160849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1532]: 0.160864250 - core[0].svIdle(17), plen 0: [] +EVENT[1533]: 0.161666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1534]: 0.161680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1535]: 0.161695125 - core[1].svIdle(17), plen 0: [] +EVENT[1536]: 0.161833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1537]: 0.161849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1538]: 0.161864250 - core[0].svIdle(17), plen 0: [] +EVENT[1539]: 0.162666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1540]: 0.162680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1541]: 0.162695225 - core[1].svIdle(17), plen 0: [] +EVENT[1542]: 0.162833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1543]: 0.162849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1544]: 0.162864425 - core[0].svIdle(17), plen 0: [] +EVENT[1545]: 0.163666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1546]: 0.163679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1547]: 0.163695100 - core[1].svIdle(17), plen 0: [] +EVENT[1548]: 0.163833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1549]: 0.163849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1550]: 0.163864250 - core[0].svIdle(17), plen 0: [] +EVENT[1551]: 0.164666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1552]: 0.164683575 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1553]: 0.164698725 - core[1].svIdle(17), plen 0: [] +EVENT[1554]: 0.164833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1555]: 0.164849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1556]: 0.164864250 - core[0].svIdle(17), plen 0: [] +EVENT[1557]: 0.165666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1558]: 0.165680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1559]: 0.165695225 - core[1].svIdle(17), plen 0: [] +EVENT[1560]: 0.165833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1561]: 0.165849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1562]: 0.165864425 - core[0].svIdle(17), plen 0: [] +EVENT[1563]: 0.166666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1564]: 0.166679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1565]: 0.166695100 - core[1].svIdle(17), plen 0: [] +EVENT[1566]: 0.166833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1567]: 0.166849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1568]: 0.166864250 - core[0].svIdle(17), plen 0: [] +EVENT[1569]: 0.167666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1570]: 0.167680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1571]: 0.167695350 - core[1].svIdle(17), plen 0: [] +EVENT[1572]: 0.167833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1573]: 0.167849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1574]: 0.167864250 - core[0].svIdle(17), plen 0: [] +EVENT[1575]: 0.168666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1576]: 0.168680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1577]: 0.168695125 - core[1].svIdle(17), plen 0: [] +EVENT[1578]: 0.168833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1579]: 0.168849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1580]: 0.168864250 - core[0].svIdle(17), plen 0: [] +EVENT[1581]: 0.169666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1582]: 0.169680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1583]: 0.169695225 - core[1].svIdle(17), plen 0: [] +EVENT[1584]: 0.169833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1585]: 0.169849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1586]: 0.169864425 - core[0].svIdle(17), plen 0: [] +EVENT[1587]: 0.170666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1588]: 0.170679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1589]: 0.170695100 - core[1].svIdle(17), plen 0: [] +EVENT[1590]: 0.170833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1591]: 0.170849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1592]: 0.170864250 - core[0].svIdle(17), plen 0: [] +EVENT[1593]: 0.171666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1594]: 0.171680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1595]: 0.171695350 - core[1].svIdle(17), plen 0: [] +EVENT[1596]: 0.171833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1597]: 0.171849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1598]: 0.171864250 - core[0].svIdle(17), plen 0: [] +EVENT[1599]: 0.172666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1600]: 0.172680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1601]: 0.172695125 - core[1].svIdle(17), plen 0: [] +EVENT[1602]: 0.172833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1603]: 0.172849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1604]: 0.172864250 - core[0].svIdle(17), plen 0: [] +EVENT[1605]: 0.173666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1606]: 0.173680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1607]: 0.173695225 - core[1].svIdle(17), plen 0: [] +EVENT[1608]: 0.173833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1609]: 0.173849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1610]: 0.173864425 - core[0].svIdle(17), plen 0: [] +EVENT[1611]: 0.174666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1612]: 0.174679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1613]: 0.174695100 - core[1].svIdle(17), plen 0: [] +EVENT[1614]: 0.174833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1615]: 0.174849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1616]: 0.174864250 - core[0].svIdle(17), plen 0: [] +EVENT[1617]: 0.175666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1618]: 0.175680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1619]: 0.175695350 - core[1].svIdle(17), plen 0: [] +EVENT[1620]: 0.175833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1621]: 0.175849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1622]: 0.175864250 - core[0].svIdle(17), plen 0: [] +EVENT[1623]: 0.176666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1624]: 0.176684225 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1625]: 0.176699375 - core[1].svIdle(17), plen 0: [] +EVENT[1626]: 0.176833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1627]: 0.176849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1628]: 0.176864250 - core[0].svIdle(17), plen 0: [] +EVENT[1629]: 0.177666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1630]: 0.177680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1631]: 0.177695225 - core[1].svIdle(17), plen 0: [] +EVENT[1632]: 0.177833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1633]: 0.177849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1634]: 0.177864425 - core[0].svIdle(17), plen 0: [] +EVENT[1635]: 0.178666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1636]: 0.178679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1637]: 0.178695100 - core[1].svIdle(17), plen 0: [] +EVENT[1638]: 0.178833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1639]: 0.178849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1640]: 0.178864250 - core[0].svIdle(17), plen 0: [] +EVENT[1641]: 0.179666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1642]: 0.179680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1643]: 0.179695350 - core[1].svIdle(17), plen 0: [] +EVENT[1644]: 0.179833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1645]: 0.179849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1646]: 0.179864250 - core[0].svIdle(17), plen 0: [] +EVENT[1647]: 0.180666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1648]: 0.180680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1649]: 0.180695125 - core[1].svIdle(17), plen 0: [] +EVENT[1650]: 0.180833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1651]: 0.180849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1652]: 0.180864250 - core[0].svIdle(17), plen 0: [] +EVENT[1653]: 0.181666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1654]: 0.181680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1655]: 0.181695225 - core[1].svIdle(17), plen 0: [] +EVENT[1656]: 0.181833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1657]: 0.181848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[1658]: 0.181861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1659]: 0.181877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[1660]: 0.181912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461284, size: 7, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.181912575] HEAP: Allocated 7 bytes @ 0x3ffbb824 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1661]: 0.181947000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461300, size: 14, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.181947000] HEAP: Allocated 14 bytes @ 0x3ffbb834 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1662]: 0.181964025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1663]: 0.181980025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1664]: 0.182050450 - core[0].svPrint(26), plen 70: [msg: I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834 +, lvl: 0, unused: 0] +[0.182050450] LOG: I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834 +EVENT[1665]: 0.182068200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1666]: 0.182081425 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[1667]: 0.182097650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1668]: 0.182108525 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1669]: 0.182119275 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1670]: 0.182133125 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1671]: 0.182144000 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[1672]: 0.182154825 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1673]: 0.182166800 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1674]: 0.182177050 - core[0].svIdle(17), plen 0: [] +EVENT[1675]: 0.182188450 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1676]: 0.182204825 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1677]: 0.182268375 - core[1].svPrint(26), plen 63: [msg: I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834 +, lvl: 0, unused: 0] +[0.182268375] LOG: I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834 +EVENT[1678]: 0.182289575 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461300, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.182289575] HEAP: Freed bytes @ 0x3ffbb834 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1679]: 0.182320575 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1680]: 0.182332050 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1681]: 0.182348750 - core[1].svIdle(17), plen 0: [] +EVENT[1682]: 0.182666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1683]: 0.182679875 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1684]: 0.182695450 - core[1].svIdle(17), plen 0: [] +EVENT[1685]: 0.182833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1686]: 0.182848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[1687]: 0.182861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1688]: 0.182877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[1689]: 0.182912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461300, size: 14, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.182912575] HEAP: Allocated 14 bytes @ 0x3ffbb834 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1690]: 0.182947000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461320, size: 28, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.182947000] HEAP: Allocated 28 bytes @ 0x3ffbb848 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1691]: 0.182964025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1692]: 0.182980025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1693]: 0.183050450 - core[0].svPrint(26), plen 70: [msg: I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848 +, lvl: 0, unused: 0] +[0.183050450] LOG: I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848 +EVENT[1694]: 0.183064000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1695]: 0.183081425 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[1696]: 0.183097725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1697]: 0.183108575 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1698]: 0.183119325 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1699]: 0.183133050 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1700]: 0.183143900 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[1701]: 0.183154725 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1702]: 0.183166600 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1703]: 0.183176850 - core[0].svIdle(17), plen 0: [] +EVENT[1704]: 0.183188325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1705]: 0.183204625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1706]: 0.183268075 - core[1].svPrint(26), plen 63: [msg: I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848 +, lvl: 0, unused: 0] +[0.183268075] LOG: I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848 +EVENT[1707]: 0.183289250 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461320, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.183289250] HEAP: Freed bytes @ 0x3ffbb848 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1708]: 0.183316250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1709]: 0.183327675 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1710]: 0.183344250 - core[1].svIdle(17), plen 0: [] +EVENT[1711]: 0.183666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1712]: 0.183679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1713]: 0.183695550 - core[1].svIdle(17), plen 0: [] +EVENT[1714]: 0.183833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1715]: 0.183848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[1716]: 0.183861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1717]: 0.183877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[1718]: 0.183912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461320, size: 21, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.183912650] HEAP: Allocated 21 bytes @ 0x3ffbb848 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1719]: 0.183951325 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461348, size: 42, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.183951325] HEAP: Allocated 42 bytes @ 0x3ffbb864 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1720]: 0.183968225 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1721]: 0.183984200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1722]: 0.184054550 - core[0].svPrint(26), plen 70: [msg: I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864 +, lvl: 0, unused: 0] +[0.184054550] LOG: I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864 +EVENT[1723]: 0.184068150 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1724]: 0.184081375 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[1725]: 0.184097675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1726]: 0.184108525 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1727]: 0.184119300 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1728]: 0.184133175 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1729]: 0.184144050 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[1730]: 0.184154875 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1731]: 0.184166750 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1732]: 0.184178025 - core[0].svIdle(17), plen 0: [] +EVENT[1733]: 0.184189675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1734]: 0.184209375 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1735]: 0.184272925 - core[1].svPrint(26), plen 63: [msg: I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864 +, lvl: 0, unused: 0] +[0.184272925] LOG: I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864 +EVENT[1736]: 0.184294125 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461348, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.184294125] HEAP: Freed bytes @ 0x3ffbb864 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1737]: 0.184321025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1738]: 0.184332575 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1739]: 0.184349150 - core[1].svIdle(17), plen 0: [] +EVENT[1740]: 0.184666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1741]: 0.184679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1742]: 0.184695550 - core[1].svIdle(17), plen 0: [] +EVENT[1743]: 0.184833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1744]: 0.184849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1745]: 0.184864250 - core[0].svIdle(17), plen 0: [] +EVENT[1746]: 0.185666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1747]: 0.185680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1748]: 0.185695350 - core[1].svIdle(17), plen 0: [] +EVENT[1749]: 0.185833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1750]: 0.185849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1751]: 0.185864250 - core[0].svIdle(17), plen 0: [] +EVENT[1752]: 0.186666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1753]: 0.186680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1754]: 0.186695125 - core[1].svIdle(17), plen 0: [] +EVENT[1755]: 0.186833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1756]: 0.186849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1757]: 0.186864250 - core[0].svIdle(17), plen 0: [] +EVENT[1758]: 0.187666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1759]: 0.187680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1760]: 0.187695225 - core[1].svIdle(17), plen 0: [] +EVENT[1761]: 0.187833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1762]: 0.187849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1763]: 0.187864425 - core[0].svIdle(17), plen 0: [] +EVENT[1764]: 0.188666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1765]: 0.188679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1766]: 0.188695100 - core[1].svIdle(17), plen 0: [] +EVENT[1767]: 0.188833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1768]: 0.188849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1769]: 0.188864250 - core[0].svIdle(17), plen 0: [] +EVENT[1770]: 0.189666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1771]: 0.189680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1772]: 0.189695350 - core[1].svIdle(17), plen 0: [] +EVENT[1773]: 0.189833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1774]: 0.189849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1775]: 0.189868575 - core[0].svIdle(17), plen 0: [] +EVENT[1776]: 0.190666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1777]: 0.190679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1778]: 0.190695100 - core[1].svIdle(17), plen 0: [] +EVENT[1779]: 0.190833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1780]: 0.190849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1781]: 0.190864250 - core[0].svIdle(17), plen 0: [] +EVENT[1782]: 0.191666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1783]: 0.191680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1784]: 0.191695350 - core[1].svIdle(17), plen 0: [] +EVENT[1785]: 0.191833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1786]: 0.191849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1787]: 0.191864250 - core[0].svIdle(17), plen 0: [] +EVENT[1788]: 0.192666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1789]: 0.192680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1790]: 0.192695125 - core[1].svIdle(17), plen 0: [] +EVENT[1791]: 0.192833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1792]: 0.192849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1793]: 0.192864250 - core[0].svIdle(17), plen 0: [] +EVENT[1794]: 0.193666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1795]: 0.193680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1796]: 0.193695225 - core[1].svIdle(17), plen 0: [] +EVENT[1797]: 0.193833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1798]: 0.193849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1799]: 0.193864425 - core[0].svIdle(17), plen 0: [] +EVENT[1800]: 0.194666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1801]: 0.194679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1802]: 0.194695100 - core[1].svIdle(17), plen 0: [] +EVENT[1803]: 0.194833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1804]: 0.194849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1805]: 0.194864250 - core[0].svIdle(17), plen 0: [] +EVENT[1806]: 0.195666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1807]: 0.195680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1808]: 0.195695350 - core[1].svIdle(17), plen 0: [] +EVENT[1809]: 0.195833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1810]: 0.195849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1811]: 0.195864250 - core[0].svIdle(17), plen 0: [] +EVENT[1812]: 0.196666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1813]: 0.196680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1814]: 0.196695125 - core[1].svIdle(17), plen 0: [] +EVENT[1815]: 0.196833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1816]: 0.196849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1817]: 0.196864250 - core[0].svIdle(17), plen 0: [] +EVENT[1818]: 0.197666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1819]: 0.197680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1820]: 0.197695225 - core[1].svIdle(17), plen 0: [] +EVENT[1821]: 0.197833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1822]: 0.197849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1823]: 0.197864425 - core[0].svIdle(17), plen 0: [] +EVENT[1824]: 0.198666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1825]: 0.198679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1826]: 0.198695100 - core[1].svIdle(17), plen 0: [] +EVENT[1827]: 0.198833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1828]: 0.198849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1829]: 0.198864250 - core[0].svIdle(17), plen 0: [] +EVENT[1830]: 0.199666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1831]: 0.199680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1832]: 0.199695350 - core[1].svIdle(17), plen 0: [] +EVENT[1833]: 0.199833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1834]: 0.199849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1835]: 0.199864250 - core[0].svIdle(17), plen 0: [] +EVENT[1836]: 0.200666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1837]: 0.200680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1838]: 0.200695125 - core[1].svIdle(17), plen 0: [] +EVENT[1839]: 0.200833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1840]: 0.200849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1841]: 0.200864250 - core[0].svIdle(17), plen 0: [] +EVENT[1842]: 0.201666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1843]: 0.201680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1844]: 0.201695225 - core[1].svIdle(17), plen 0: [] +EVENT[1845]: 0.201833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1846]: 0.201849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1847]: 0.201864425 - core[0].svIdle(17), plen 0: [] +EVENT[1848]: 0.202666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1849]: 0.202680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1850]: 0.202695350 - core[1].svIdle(17), plen 0: [] +EVENT[1851]: 0.202833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1852]: 0.202849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1853]: 0.202864250 - core[0].svIdle(17), plen 0: [] +EVENT[1854]: 0.203666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1855]: 0.203680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1856]: 0.203695125 - core[1].svIdle(17), plen 0: [] +EVENT[1857]: 0.203833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1858]: 0.203849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1859]: 0.203864250 - core[0].svIdle(17), plen 0: [] +EVENT[1860]: 0.204666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1861]: 0.204680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1862]: 0.204695225 - core[1].svIdle(17), plen 0: [] +EVENT[1863]: 0.204833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1864]: 0.204849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1865]: 0.204864425 - core[0].svIdle(17), plen 0: [] +EVENT[1866]: 0.205666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1867]: 0.205679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1868]: 0.205695100 - core[1].svIdle(17), plen 0: [] +EVENT[1869]: 0.205833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1870]: 0.205849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1871]: 0.205864250 - core[0].svIdle(17), plen 0: [] +EVENT[1872]: 0.206666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1873]: 0.206680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1874]: 0.206695350 - core[1].svIdle(17), plen 0: [] +EVENT[1875]: 0.206833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1876]: 0.206849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1877]: 0.206864250 - core[0].svIdle(17), plen 0: [] +EVENT[1878]: 0.207666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1879]: 0.207680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1880]: 0.207695125 - core[1].svIdle(17), plen 0: [] +EVENT[1881]: 0.207833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1882]: 0.207849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1883]: 0.207864250 - core[0].svIdle(17), plen 0: [] +EVENT[1884]: 0.208666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1885]: 0.208680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1886]: 0.208695225 - core[1].svIdle(17), plen 0: [] +EVENT[1887]: 0.208833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1888]: 0.208849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1889]: 0.208864425 - core[0].svIdle(17), plen 0: [] +EVENT[1890]: 0.209666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1891]: 0.209679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1892]: 0.209695100 - core[1].svIdle(17), plen 0: [] +EVENT[1893]: 0.209833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1894]: 0.209849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1895]: 0.209864250 - core[0].svIdle(17), plen 0: [] +EVENT[1896]: 0.210666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1897]: 0.210680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1898]: 0.210695350 - core[1].svIdle(17), plen 0: [] +EVENT[1899]: 0.210833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1900]: 0.210849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1901]: 0.210864250 - core[0].svIdle(17), plen 0: [] +EVENT[1902]: 0.211666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1903]: 0.211680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1904]: 0.211695125 - core[1].svIdle(17), plen 0: [] +EVENT[1905]: 0.211833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1906]: 0.211848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[1907]: 0.211861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1908]: 0.211877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[1909]: 0.211912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461348, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.211912650] HEAP: Allocated 8 bytes @ 0x3ffbb864 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1910]: 0.211951250 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461364, size: 16, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.211951250] HEAP: Allocated 16 bytes @ 0x3ffbb874 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1911]: 0.211968150 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1912]: 0.211984150 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1913]: 0.212054475 - core[0].svPrint(26), plen 70: [msg: I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874 +, lvl: 0, unused: 0] +[0.212054475] LOG: I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874 +EVENT[1914]: 0.212068075 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1915]: 0.212081300 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[1916]: 0.212097675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1917]: 0.212108525 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1918]: 0.212119300 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1919]: 0.212133125 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1920]: 0.212144025 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[1921]: 0.212154850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1922]: 0.212166800 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1923]: 0.212177050 - core[0].svIdle(17), plen 0: [] +EVENT[1924]: 0.212188475 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1925]: 0.212208850 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1926]: 0.212272400 - core[1].svPrint(26), plen 63: [msg: I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874 +, lvl: 0, unused: 0] +[0.212272400] LOG: I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874 +EVENT[1927]: 0.212293600 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461364, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.212293600] HEAP: Freed bytes @ 0x3ffbb874 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1928]: 0.212320475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1929]: 0.212331900 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1930]: 0.212348475 - core[1].svIdle(17), plen 0: [] +EVENT[1931]: 0.212666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1932]: 0.212679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1933]: 0.212695550 - core[1].svIdle(17), plen 0: [] +EVENT[1934]: 0.212833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1935]: 0.212848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[1936]: 0.212861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1937]: 0.212877375 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[1938]: 0.212912775 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461364, size: 16, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.212912775] HEAP: Allocated 16 bytes @ 0x3ffbb874 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1939]: 0.212947475 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461384, size: 32, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.212947475] HEAP: Allocated 32 bytes @ 0x3ffbb888 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1940]: 0.212964400 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1941]: 0.212984575 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1942]: 0.213055025 - core[0].svPrint(26), plen 70: [msg: I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888 +, lvl: 0, unused: 0] +[0.213055025] LOG: I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888 +EVENT[1943]: 0.213068650 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1944]: 0.213081850 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[1945]: 0.213098150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1946]: 0.213109000 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1947]: 0.213119750 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1948]: 0.213133475 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1949]: 0.213144325 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[1950]: 0.213155150 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1951]: 0.213167025 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1952]: 0.213177275 - core[0].svIdle(17), plen 0: [] +EVENT[1953]: 0.213188750 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1954]: 0.213205050 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1955]: 0.213268500 - core[1].svPrint(26), plen 63: [msg: I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888 +, lvl: 0, unused: 0] +[0.213268500] LOG: I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888 +EVENT[1956]: 0.213293550 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461384, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.213293550] HEAP: Freed bytes @ 0x3ffbb888 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1957]: 0.213320550 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1958]: 0.213331975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1959]: 0.213348550 - core[1].svIdle(17), plen 0: [] +EVENT[1960]: 0.213666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1961]: 0.213679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1962]: 0.213695550 - core[1].svIdle(17), plen 0: [] +EVENT[1963]: 0.213833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1964]: 0.213848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[1965]: 0.213861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1966]: 0.213877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[1967]: 0.213912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461384, size: 24, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.213912650] HEAP: Allocated 24 bytes @ 0x3ffbb888 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1968]: 0.213947200 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461412, size: 48, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.213947200] HEAP: Allocated 48 bytes @ 0x3ffbb8a4 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1969]: 0.213964350 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1970]: 0.213980350 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1971]: 0.214050675 - core[0].svPrint(26), plen 70: [msg: I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4 +, lvl: 0, unused: 0] +[0.214050675] LOG: I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4 +EVENT[1972]: 0.214071175 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1973]: 0.214084400 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[1974]: 0.214100725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1975]: 0.214111575 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1976]: 0.214122325 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1977]: 0.214136050 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1978]: 0.214146950 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[1979]: 0.214157775 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1980]: 0.214169625 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1981]: 0.214180925 - core[0].svIdle(17), plen 0: [] +EVENT[1982]: 0.214192550 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1983]: 0.214208950 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1984]: 0.214272500 - core[1].svPrint(26), plen 63: [msg: I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4 +, lvl: 0, unused: 0] +[0.214272500] LOG: I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4 +EVENT[1985]: 0.214293700 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461412, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.214293700] HEAP: Freed bytes @ 0x3ffbb8a4 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1986]: 0.214324025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1987]: 0.214335500 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1988]: 0.214352200 - core[1].svIdle(17), plen 0: [] +EVENT[1989]: 0.214666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1990]: 0.214679875 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1991]: 0.214695450 - core[1].svIdle(17), plen 0: [] +EVENT[1992]: 0.214833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1993]: 0.214849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1994]: 0.214864425 - core[0].svIdle(17), plen 0: [] +EVENT[1995]: 0.215666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1996]: 0.215679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1997]: 0.215695100 - core[1].svIdle(17), plen 0: [] +EVENT[1998]: 0.215833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1999]: 0.215849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2000]: 0.215864250 - core[0].svIdle(17), plen 0: [] +EVENT[2001]: 0.216666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2002]: 0.216680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2003]: 0.216695350 - core[1].svIdle(17), plen 0: [] +EVENT[2004]: 0.216833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2005]: 0.216849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2006]: 0.216864250 - core[0].svIdle(17), plen 0: [] +EVENT[2007]: 0.217666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2008]: 0.217680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2009]: 0.217695125 - core[1].svIdle(17), plen 0: [] +EVENT[2010]: 0.217833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2011]: 0.217849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2012]: 0.217864250 - core[0].svIdle(17), plen 0: [] +EVENT[2013]: 0.218666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2014]: 0.218680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2015]: 0.218695225 - core[1].svIdle(17), plen 0: [] +EVENT[2016]: 0.218833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2017]: 0.218849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2018]: 0.218864425 - core[0].svIdle(17), plen 0: [] +EVENT[2019]: 0.219666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2020]: 0.219679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2021]: 0.219695100 - core[1].svIdle(17), plen 0: [] +EVENT[2022]: 0.219833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2023]: 0.219849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2024]: 0.219864250 - core[0].svIdle(17), plen 0: [] +EVENT[2025]: 0.220666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2026]: 0.220680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2027]: 0.220695350 - core[1].svIdle(17), plen 0: [] +EVENT[2028]: 0.220833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2029]: 0.220849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2030]: 0.220864250 - core[0].svIdle(17), plen 0: [] +EVENT[2031]: 0.221666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2032]: 0.221680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2033]: 0.221695125 - core[1].svIdle(17), plen 0: [] +EVENT[2034]: 0.221833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2035]: 0.221849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2036]: 0.221864250 - core[0].svIdle(17), plen 0: [] +EVENT[2037]: 0.222666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2038]: 0.222680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2039]: 0.222695225 - core[1].svIdle(17), plen 0: [] +EVENT[2040]: 0.222833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2041]: 0.222849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2042]: 0.222864425 - core[0].svIdle(17), plen 0: [] +EVENT[2043]: 0.223666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2044]: 0.223679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2045]: 0.223695100 - core[1].svIdle(17), plen 0: [] +EVENT[2046]: 0.223833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2047]: 0.223849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2048]: 0.223864250 - core[0].svIdle(17), plen 0: [] +EVENT[2049]: 0.224666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2050]: 0.224684200 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2051]: 0.224699350 - core[1].svIdle(17), plen 0: [] +EVENT[2052]: 0.224833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2053]: 0.224849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2054]: 0.224864250 - core[0].svIdle(17), plen 0: [] +EVENT[2055]: 0.225666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2056]: 0.225680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2057]: 0.225695225 - core[1].svIdle(17), plen 0: [] +EVENT[2058]: 0.225833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2059]: 0.225849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2060]: 0.225864425 - core[0].svIdle(17), plen 0: [] +EVENT[2061]: 0.226666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2062]: 0.226679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2063]: 0.226695100 - core[1].svIdle(17), plen 0: [] +EVENT[2064]: 0.226833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2065]: 0.226849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2066]: 0.226864250 - core[0].svIdle(17), plen 0: [] +EVENT[2067]: 0.227666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2068]: 0.227680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2069]: 0.227695350 - core[1].svIdle(17), plen 0: [] +EVENT[2070]: 0.227833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2071]: 0.227849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2072]: 0.227864250 - core[0].svIdle(17), plen 0: [] +EVENT[2073]: 0.228666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2074]: 0.228680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2075]: 0.228695125 - core[1].svIdle(17), plen 0: [] +EVENT[2076]: 0.228833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2077]: 0.228849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2078]: 0.228864250 - core[0].svIdle(17), plen 0: [] +EVENT[2079]: 0.229666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2080]: 0.229680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2081]: 0.229695225 - core[1].svIdle(17), plen 0: [] +EVENT[2082]: 0.229833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2083]: 0.229849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2084]: 0.229864425 - core[0].svIdle(17), plen 0: [] +EVENT[2085]: 0.230666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2086]: 0.230679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2087]: 0.230695100 - core[1].svIdle(17), plen 0: [] +EVENT[2088]: 0.230833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2089]: 0.230849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2090]: 0.230864250 - core[0].svIdle(17), plen 0: [] +EVENT[2091]: 0.231666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2092]: 0.231680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2093]: 0.231695350 - core[1].svIdle(17), plen 0: [] +EVENT[2094]: 0.231833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2095]: 0.231849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2096]: 0.231864250 - core[0].svIdle(17), plen 0: [] +EVENT[2097]: 0.232666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2098]: 0.232680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2099]: 0.232695125 - core[1].svIdle(17), plen 0: [] +EVENT[2100]: 0.232833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2101]: 0.232849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2102]: 0.232864250 - core[0].svIdle(17), plen 0: [] +EVENT[2103]: 0.233666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2104]: 0.233680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2105]: 0.233695225 - core[1].svIdle(17), plen 0: [] +EVENT[2106]: 0.233833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2107]: 0.233849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2108]: 0.233864425 - core[0].svIdle(17), plen 0: [] +EVENT[2109]: 0.234666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2110]: 0.234679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2111]: 0.234695100 - core[1].svIdle(17), plen 0: [] +EVENT[2112]: 0.234833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2113]: 0.234849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2114]: 0.234864250 - core[0].svIdle(17), plen 0: [] +EVENT[2115]: 0.235666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2116]: 0.235680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2117]: 0.235695350 - core[1].svIdle(17), plen 0: [] +EVENT[2118]: 0.235833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2119]: 0.235849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2120]: 0.235864250 - core[0].svIdle(17), plen 0: [] +EVENT[2121]: 0.236666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2122]: 0.236683550 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2123]: 0.236698675 - core[1].svIdle(17), plen 0: [] +EVENT[2124]: 0.236833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2125]: 0.236849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2126]: 0.236864250 - core[0].svIdle(17), plen 0: [] +EVENT[2127]: 0.237666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2128]: 0.237680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2129]: 0.237695225 - core[1].svIdle(17), plen 0: [] +EVENT[2130]: 0.237833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2131]: 0.237849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2132]: 0.237864425 - core[0].svIdle(17), plen 0: [] +EVENT[2133]: 0.238666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2134]: 0.238679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2135]: 0.238695100 - core[1].svIdle(17), plen 0: [] +EVENT[2136]: 0.238833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2137]: 0.238849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2138]: 0.238864250 - core[0].svIdle(17), plen 0: [] +EVENT[2139]: 0.239666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2140]: 0.239680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2141]: 0.239695350 - core[1].svIdle(17), plen 0: [] +EVENT[2142]: 0.239833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2143]: 0.239849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2144]: 0.239864250 - core[0].svIdle(17), plen 0: [] +EVENT[2145]: 0.240666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2146]: 0.240680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2147]: 0.240695125 - core[1].svIdle(17), plen 0: [] +EVENT[2148]: 0.240833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2149]: 0.240849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2150]: 0.240864250 - core[0].svIdle(17), plen 0: [] +EVENT[2151]: 0.241666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2152]: 0.241680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2153]: 0.241695225 - core[1].svIdle(17), plen 0: [] +EVENT[2154]: 0.241833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2155]: 0.241848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[2156]: 0.241861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2157]: 0.241877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[2158]: 0.241912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461412, size: 9, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.241912575] HEAP: Allocated 9 bytes @ 0x3ffbb8a4 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2159]: 0.241947000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461428, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.241947000] HEAP: Allocated 18 bytes @ 0x3ffbb8b4 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2160]: 0.241964025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2161]: 0.241980025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2162]: 0.242050450 - core[0].svPrint(26), plen 70: [msg: I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4 +, lvl: 0, unused: 0] +[0.242050450] LOG: I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4 +EVENT[2163]: 0.242068275 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2164]: 0.242081500 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] +EVENT[2165]: 0.242097725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2166]: 0.242108600 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2167]: 0.242119350 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2168]: 0.242133200 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2169]: 0.242144075 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] +EVENT[2170]: 0.242154900 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2171]: 0.242166875 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2172]: 0.242177125 - core[0].svIdle(17), plen 0: [] +EVENT[2173]: 0.242188525 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2174]: 0.242204900 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2175]: 0.242268450 - core[1].svPrint(26), plen 63: [msg: I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4 +, lvl: 0, unused: 0] +[0.242268450] LOG: I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4 +EVENT[2176]: 0.242289650 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461428, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.242289650] HEAP: Freed bytes @ 0x3ffbb8b4 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2177]: 0.242320650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2178]: 0.242332125 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2179]: 0.242348825 - core[1].svIdle(17), plen 0: [] +EVENT[2180]: 0.242666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2181]: 0.242679875 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2182]: 0.242695450 - core[1].svIdle(17), plen 0: [] +EVENT[2183]: 0.242833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2184]: 0.242848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[2185]: 0.242861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2186]: 0.242877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[2187]: 0.242912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461428, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.242912575] HEAP: Allocated 18 bytes @ 0x3ffbb8b4 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2188]: 0.242947150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461452, size: 36, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.242947150] HEAP: Allocated 36 bytes @ 0x3ffbb8cc from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2189]: 0.242964175 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2190]: 0.242980175 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2191]: 0.243050600 - core[0].svPrint(26), plen 70: [msg: I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc +, lvl: 0, unused: 0] +[0.243050600] LOG: I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc +EVENT[2192]: 0.243064150 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2193]: 0.243080975 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] +EVENT[2194]: 0.243097275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2195]: 0.243108125 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2196]: 0.243118875 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2197]: 0.243132600 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2198]: 0.243143450 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] +EVENT[2199]: 0.243154275 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2200]: 0.243166150 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2201]: 0.243176400 - core[0].svIdle(17), plen 0: [] +EVENT[2202]: 0.243187875 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2203]: 0.243204375 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2204]: 0.243267825 - core[1].svPrint(26), plen 63: [msg: I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc +, lvl: 0, unused: 0] +[0.243267825] LOG: I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc +EVENT[2205]: 0.243288975 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461452, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.243288975] HEAP: Freed bytes @ 0x3ffbb8cc from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2206]: 0.243315975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2207]: 0.243327400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2208]: 0.243343975 - core[1].svIdle(17), plen 0: [] +EVENT[2209]: 0.243666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2210]: 0.243679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2211]: 0.243695550 - core[1].svIdle(17), plen 0: [] +EVENT[2212]: 0.243833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2213]: 0.243848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[2214]: 0.243861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2215]: 0.243877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[2216]: 0.243912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461452, size: 27, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] +[0.243912650] HEAP: Allocated 27 bytes @ 0x3ffbb8cc from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2217]: 0.243951325 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461484, size: 54, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] +[0.243951325] HEAP: Allocated 54 bytes @ 0x3ffbb8ec from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2218]: 0.243968350 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2219]: 0.243984350 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2220]: 0.244054675 - core[0].svPrint(26), plen 70: [msg: I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec +, lvl: 0, unused: 0] +[0.244054675] LOG: I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec +EVENT[2221]: 0.244068400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2222]: 0.244081625 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] +EVENT[2223]: 0.244097950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2224]: 0.244108800 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2225]: 0.244119550 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2226]: 0.244133275 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2227]: 0.244144175 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] +EVENT[2228]: 0.244155000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2229]: 0.244166850 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2230]: 0.244178150 - core[0].svIdle(17), plen 0: [] +EVENT[2231]: 0.244189775 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2232]: 0.244210225 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2233]: 0.244273900 - core[1].svPrint(26), plen 63: [msg: I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec +, lvl: 0, unused: 0] +[0.244273900] LOG: I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec +EVENT[2234]: 0.244295100 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461484, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] +[0.244295100] HEAP: Freed bytes @ 0x3ffbb8ec from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2235]: 0.244322000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2236]: 0.244333425 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2237]: 0.244350000 - core[1].svIdle(17), plen 0: [] +EVENT[2238]: 0.244666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2239]: 0.244679850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2240]: 0.244695550 - core[1].svIdle(17), plen 0: [] +EVENT[2241]: 0.244833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2242]: 0.244849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2243]: 0.244864250 - core[0].svIdle(17), plen 0: [] +EVENT[2244]: 0.245666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2245]: 0.245680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2246]: 0.245695350 - core[1].svIdle(17), plen 0: [] +EVENT[2247]: 0.245833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2248]: 0.245849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2249]: 0.245864250 - core[0].svIdle(17), plen 0: [] +EVENT[2250]: 0.246666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2251]: 0.246680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2252]: 0.246695125 - core[1].svIdle(17), plen 0: [] +EVENT[2253]: 0.246833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2254]: 0.246849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2255]: 0.246864250 - core[0].svIdle(17), plen 0: [] +EVENT[2256]: 0.247666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2257]: 0.247680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2258]: 0.247695225 - core[1].svIdle(17), plen 0: [] +EVENT[2259]: 0.247833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2260]: 0.247849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2261]: 0.247864425 - core[0].svIdle(17), plen 0: [] +EVENT[2262]: 0.248666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2263]: 0.248679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2264]: 0.248695100 - core[1].svIdle(17), plen 0: [] +EVENT[2265]: 0.248833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2266]: 0.248849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2267]: 0.248864250 - core[0].svIdle(17), plen 0: [] +EVENT[2268]: 0.249666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2269]: 0.249680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2270]: 0.249695350 - core[1].svIdle(17), plen 0: [] +EVENT[2271]: 0.249833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2272]: 0.249849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2273]: 0.249868675 - core[0].svIdle(17), plen 0: [] +EVENT[2274]: 0.250666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2275]: 0.250679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2276]: 0.250695100 - core[1].svIdle(17), plen 0: [] +EVENT[2277]: 0.250833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2278]: 0.250849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2279]: 0.250864250 - core[0].svIdle(17), plen 0: [] +EVENT[2280]: 0.251666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2281]: 0.251680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2282]: 0.251695350 - core[1].svIdle(17), plen 0: [] +EVENT[2283]: 0.251833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2284]: 0.251849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2285]: 0.251864250 - core[0].svIdle(17), plen 0: [] +EVENT[2286]: 0.252666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2287]: 0.252680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2288]: 0.252695125 - core[1].svIdle(17), plen 0: [] +EVENT[2289]: 0.252833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2290]: 0.252849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2291]: 0.252864250 - core[0].svIdle(17), plen 0: [] +EVENT[2292]: 0.253666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2293]: 0.253680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2294]: 0.253695225 - core[1].svIdle(17), plen 0: [] +EVENT[2295]: 0.253833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2296]: 0.253849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2297]: 0.253864425 - core[0].svIdle(17), plen 0: [] +EVENT[2298]: 0.254666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2299]: 0.254679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2300]: 0.254695100 - core[1].svIdle(17), plen 0: [] +EVENT[2301]: 0.254833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2302]: 0.254849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2303]: 0.254864250 - core[0].svIdle(17), plen 0: [] +EVENT[2304]: 0.255666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2305]: 0.255680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2306]: 0.255695350 - core[1].svIdle(17), plen 0: [] +EVENT[2307]: 0.255833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2308]: 0.255849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2309]: 0.255864250 - core[0].svIdle(17), plen 0: [] +EVENT[2310]: 0.256666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2311]: 0.256680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2312]: 0.256695125 - core[1].svIdle(17), plen 0: [] +EVENT[2313]: 0.256833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2314]: 0.256849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2315]: 0.256864250 - core[0].svIdle(17), plen 0: [] +EVENT[2316]: 0.257666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2317]: 0.257680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2318]: 0.257695225 - core[1].svIdle(17), plen 0: [] +EVENT[2319]: 0.257833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2320]: 0.257849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2321]: 0.257864425 - core[0].svIdle(17), plen 0: [] +EVENT[2322]: 0.258666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2323]: 0.258679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2324]: 0.258695100 - core[1].svIdle(17), plen 0: [] +EVENT[2325]: 0.258833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2326]: 0.258849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2327]: 0.258864250 - core[0].svIdle(17), plen 0: [] +EVENT[2328]: 0.259666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2329]: 0.259680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2330]: 0.259695350 - core[1].svIdle(17), plen 0: [] +EVENT[2331]: 0.259833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2332]: 0.259849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2333]: 0.259864250 - core[0].svIdle(17), plen 0: [] +EVENT[2334]: 0.260666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2335]: 0.260680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2336]: 0.260695125 - core[1].svIdle(17), plen 0: [] +EVENT[2337]: 0.260833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2338]: 0.260849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2339]: 0.260864250 - core[0].svIdle(17), plen 0: [] +EVENT[2340]: 0.261666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2341]: 0.261680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2342]: 0.261695225 - core[1].svIdle(17), plen 0: [] +EVENT[2343]: 0.261833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2344]: 0.261849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2345]: 0.261864425 - core[0].svIdle(17), plen 0: [] +EVENT[2346]: 0.262666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2347]: 0.262680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2348]: 0.262695350 - core[1].svIdle(17), plen 0: [] +EVENT[2349]: 0.262833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2350]: 0.262849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2351]: 0.262864250 - core[0].svIdle(17), plen 0: [] +EVENT[2352]: 0.263666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2353]: 0.263680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2354]: 0.263695125 - core[1].svIdle(17), plen 0: [] +EVENT[2355]: 0.263833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2356]: 0.263849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2357]: 0.263864250 - core[0].svIdle(17), plen 0: [] +EVENT[2358]: 0.264666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2359]: 0.264680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2360]: 0.264695225 - core[1].svIdle(17), plen 0: [] +EVENT[2361]: 0.264833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2362]: 0.264849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2363]: 0.264864425 - core[0].svIdle(17), plen 0: [] +EVENT[2364]: 0.265666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2365]: 0.265679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2366]: 0.265695100 - core[1].svIdle(17), plen 0: [] +EVENT[2367]: 0.265833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2368]: 0.265849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2369]: 0.265864250 - core[0].svIdle(17), plen 0: [] +EVENT[2370]: 0.266666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2371]: 0.266680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2372]: 0.266695350 - core[1].svIdle(17), plen 0: [] +EVENT[2373]: 0.266833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2374]: 0.266849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2375]: 0.266864250 - core[0].svIdle(17), plen 0: [] +EVENT[2376]: 0.267666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2377]: 0.267680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2378]: 0.267695125 - core[1].svIdle(17), plen 0: [] +EVENT[2379]: 0.267833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2380]: 0.267849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2381]: 0.267864250 - core[0].svIdle(17), plen 0: [] +EVENT[2382]: 0.268666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2383]: 0.268680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2384]: 0.268695225 - core[1].svIdle(17), plen 0: [] +EVENT[2385]: 0.268833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2386]: 0.268849200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2387]: 0.268864425 - core[0].svIdle(17), plen 0: [] +EVENT[2388]: 0.269666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2389]: 0.269679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2390]: 0.269695100 - core[1].svIdle(17), plen 0: [] +EVENT[2391]: 0.269833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2392]: 0.269849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2393]: 0.269864250 - core[0].svIdle(17), plen 0: [] +EVENT[2394]: 0.270666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2395]: 0.270680075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2396]: 0.270695350 - core[1].svIdle(17), plen 0: [] +EVENT[2397]: 0.270833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2398]: 0.270849175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2399]: 0.270864250 - core[0].svIdle(17), plen 0: [] +EVENT[2400]: 0.271666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2401]: 0.271680000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2402]: 0.271695125 - core[1].svIdle(17), plen 0: [] +EVENT[2403]: 0.271833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2404]: 0.271848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] +EVENT[2405]: 0.271861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2406]: 0.271877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] +EVENT[2407]: 0.271895625 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12254080, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] +EVENT[2408]: 0.271906575 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] +EVENT[2409]: 0.271919725 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] +EVENT[2410]: 0.271936275 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2411]: 0.271947650 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2412]: 0.271964600 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[2413]: 0.271982475 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] +EVENT[2414]: 0.271998425 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2415]: 0.272014325 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2416]: 0.272063675 - core[0].svPrint(26), plen 37: [msg: I (580) example: Got notify val 1 +, lvl: 0, unused: 0] +[0.272063675] LOG: I (580) example: Got notify val 1 +EVENT[2417]: 0.272079975 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2418]: 0.272095925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2419]: 0.272140275 - core[0].svPrint(26), plen 34: [msg: I (580) example: Wait notify 1 +, lvl: 0, unused: 0] +[0.272140275] LOG: I (580) example: Wait notify 1 +EVENT[2420]: 0.272158650 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2421]: 0.272170050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2422]: 0.272186100 - core[0].svIdle(17), plen 0: [] +EVENT[2423]: 0.272666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2424]: 0.272679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2425]: 0.272695100 - core[1].svIdle(17), plen 0: [] +EVENT[2426]: 0.272833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2427]: 0.272848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] +EVENT[2428]: 0.272861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2429]: 0.272877375 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] +EVENT[2430]: 0.272891800 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12254080, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] +EVENT[2431]: 0.272902925 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] +EVENT[2432]: 0.272916050 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] +EVENT[2433]: 0.272932650 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2434]: 0.272944025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2435]: 0.272960975 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[2436]: 0.272974675 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] +EVENT[2437]: 0.272990600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2438]: 0.273006525 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2439]: 0.273056000 - core[0].svPrint(26), plen 37: [msg: I (581) example: Got notify val 1 +, lvl: 0, unused: 0] +[0.273056000] LOG: I (581) example: Got notify val 1 +EVENT[2440]: 0.273072300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2441]: 0.273088250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2442]: 0.273132600 - core[0].svPrint(26), plen 34: [msg: I (581) example: Wait notify 2 +, lvl: 0, unused: 0] +[0.273132600] LOG: I (581) example: Wait notify 2 +EVENT[2443]: 0.273150975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2444]: 0.273162375 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2445]: 0.273178550 - core[0].svIdle(17), plen 0: [] +EVENT[2446]: 0.273666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2447]: 0.273679950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2448]: 0.273695100 - core[1].svIdle(17), plen 0: [] +EVENT[2449]: 0.273833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2450]: 0.273848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] +EVENT[2451]: 0.273861575 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2452]: 0.273877375 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] +EVENT[2453]: 0.273891800 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12254080, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] +EVENT[2454]: 0.273902925 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] +EVENT[2455]: 0.273916050 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] +EVENT[2456]: 0.273932650 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2457]: 0.273944025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2458]: 0.273960975 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] +EVENT[2459]: 0.273974675 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] +EVENT[2460]: 0.273990600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2461]: 0.274006525 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2462]: 0.274051775 - core[0].svPrint(26), plen 37: [msg: I (582) example: Got notify val 1 +, lvl: 0, unused: 0] +[0.274051775] LOG: I (582) example: Got notify val 1 +EVENT[2463]: 0.330505425 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2464]: 0.330514125 - core[0].svTraceStop(11), plen 0: [] +Processed 2465 events =============== LOG TRACE REPORT =============== -Processed 600 log messages. +Processed 60 log messages. =============== HEAP TRACE REPORT =============== -Processed 612 heap events. -[0.003721700] HEAP: Allocated 8 bytes @ 0x3ffb7f34 from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:85 -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.003768500] HEAP: Allocated 2500 bytes @ 0x3ffb888c from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.003795700] HEAP: Allocated 356 bytes @ 0x3ffb7f40 from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.003924500] HEAP: Allocated 120 bytes @ 0x3ffb80a8 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:391 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:46 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.003976350] HEAP: Allocated 2500 bytes @ 0x3ffb9254 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.003999725] HEAP: Allocated 356 bytes @ 0x3ffb8124 from task "alloc0" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.004439700] HEAP: Allocated 8 bytes @ 0x3ffb8294 from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:85 -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.004471100] HEAP: Allocated 2500 bytes @ 0x3ffb9c1c from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.004498675] HEAP: Allocated 356 bytes @ 0x3ffb82a0 from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.004654925] HEAP: Allocated 120 bytes @ 0x3ffb8408 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:391 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:46 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.004694775] HEAP: Allocated 2500 bytes @ 0x3ffba5e4 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.004718150] HEAP: Allocated 356 bytes @ 0x3ffb8484 from task "alloc1" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.005138950] HEAP: Allocated 8 bytes @ 0x3ffb85f4 from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:85 -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.005171025] HEAP: Allocated 2500 bytes @ 0x3ffbafac from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.005205975] HEAP: Allocated 356 bytes @ 0x3ffb8600 from task "main" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) -/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.005369825] HEAP: Allocated 120 bytes @ 0x3ffb8768 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:391 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:46 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.005413350] HEAP: Allocated 2500 bytes @ 0x3ffbb974 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -[0.005437250] HEAP: Allocated 356 bytes @ 0x3ffb49a8 from task "alloc2" on core 0 by: -/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 -/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 -/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 - -Found 17520 leaked bytes in 18 blocks. +Processed 99 heap events. +[0.001532525] HEAP: Allocated 8 bytes @ 0x3ffb70d8 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.001870025] HEAP: Allocated 2500 bytes @ 0x3ffb70e8 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.001909875] HEAP: Allocated 340 bytes @ 0x3ffb7aec from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.002044025] HEAP: Allocated 124 bytes @ 0x3ffb7c50 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.002113550] HEAP: Allocated 2500 bytes @ 0x3ffb7cd0 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.002147950] HEAP: Allocated 340 bytes @ 0x3ffb86d4 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.002251800] HEAP: Allocated 1 bytes @ 0x3ffb8838 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.002788050] HEAP: Allocated 8 bytes @ 0x3ffb8858 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.002863625] HEAP: Allocated 2500 bytes @ 0x3ffb8868 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.002905675] HEAP: Allocated 340 bytes @ 0x3ffb926c from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003040300] HEAP: Allocated 124 bytes @ 0x3ffb93d0 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003093950] HEAP: Allocated 2500 bytes @ 0x3ffb9450 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003128350] HEAP: Allocated 340 bytes @ 0x3ffb9e54 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003223700] HEAP: Allocated 2 bytes @ 0x3ffb9fb8 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003547175] HEAP: Allocated 8 bytes @ 0x3ffb8848 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003600675] HEAP: Allocated 2500 bytes @ 0x3ffb9fd8 from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003639925] HEAP: Allocated 340 bytes @ 0x3ffba9dc from task "main" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003888100] HEAP: Allocated 124 bytes @ 0x3ffbab40 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003941825] HEAP: Allocated 2500 bytes @ 0x3ffbabc0 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.003976225] HEAP: Allocated 340 bytes @ 0x3ffbb5c4 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 +/Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.004075450] HEAP: Allocated 3 bytes @ 0x3ffb9fc8 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.031912575] HEAP: Allocated 2 bytes @ 0x3ffbb728 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.032912600] HEAP: Allocated 4 bytes @ 0x3ffbb738 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.033912650] HEAP: Allocated 6 bytes @ 0x3ffbb748 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.061912575] HEAP: Allocated 3 bytes @ 0x3ffbb758 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.062912575] HEAP: Allocated 6 bytes @ 0x3ffbb768 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.063912650] HEAP: Allocated 9 bytes @ 0x3ffbb778 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.091912475] HEAP: Allocated 4 bytes @ 0x3ffbb788 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.092912775] HEAP: Allocated 8 bytes @ 0x3ffbb798 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.093912650] HEAP: Allocated 12 bytes @ 0x3ffbb7a8 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.121912575] HEAP: Allocated 5 bytes @ 0x3ffbb7b8 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.122912575] HEAP: Allocated 10 bytes @ 0x3ffbb7c8 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.123912650] HEAP: Allocated 15 bytes @ 0x3ffbb7d8 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.151912650] HEAP: Allocated 6 bytes @ 0x3ffbb7ec from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.152912775] HEAP: Allocated 12 bytes @ 0x3ffbb7fc from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.153912650] HEAP: Allocated 18 bytes @ 0x3ffbb80c from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.181912575] HEAP: Allocated 7 bytes @ 0x3ffbb824 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.182912575] HEAP: Allocated 14 bytes @ 0x3ffbb834 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.183912650] HEAP: Allocated 21 bytes @ 0x3ffbb848 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.211912650] HEAP: Allocated 8 bytes @ 0x3ffbb864 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.212912775] HEAP: Allocated 16 bytes @ 0x3ffbb874 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.213912650] HEAP: Allocated 24 bytes @ 0x3ffbb888 from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.241912575] HEAP: Allocated 9 bytes @ 0x3ffbb8a4 from task "alloc0" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.242912575] HEAP: Allocated 18 bytes @ 0x3ffbb8b4 from task "alloc1" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +[0.243912650] HEAP: Allocated 27 bytes @ 0x3ffbb8cc from task "alloc2" on core 0 by: +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 +/Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 +/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +Found 17706 leaked bytes in 45 blocks. diff --git a/tools/esp_app_trace/test/sysview/expected_output_mcore.json b/tools/esp_app_trace/test/sysview/expected_output_mcore.json index c6c03e982a12..5cc8728b17ae 100644 --- a/tools/esp_app_trace/test/sysview/expected_output_mcore.json +++ b/tools/esp_app_trace/test/sysview/expected_output_mcore.json @@ -19,7 +19,7 @@ "ram_base": 1061158912, "sys_freq": 40000000 }, - "ts": 6.4e-06 + "ts": 6.625e-06 }, { "core_id": 0, @@ -27,9 +27,9 @@ "id": 14, "in_irq": false, "params": { - "desc": "N=FreeRTOS Application,D=esp32,C=Xtensa,O=FreeRTOS" + "desc": "N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS" }, - "ts": 1.9525e-05 + "ts": 1.855e-05 }, { "core_id": 0, @@ -39,7 +39,7 @@ "params": { "desc": "I#5=SysTick" }, - "ts": 7.0625e-05 + "ts": 2.7675e-05 }, { "core_id": 0, @@ -49,7 +49,7 @@ "params": { "desc": "I#6=WIFI_MAC" }, - "ts": 0.0001596 + "ts": 4.9775e-05 }, { "core_id": 0, @@ -59,7 +59,7 @@ "params": { "desc": "I#7=WIFI_NMI" }, - "ts": 0.00018495 + "ts": 6.3875e-05 }, { "core_id": 0, @@ -69,7 +69,7 @@ "params": { "desc": "I#8=WIFI_BB" }, - "ts": 0.00020605 + "ts": 7.38e-05 }, { "core_id": 0, @@ -79,7 +79,7 @@ "params": { "desc": "I#9=BT_MAC" }, - "ts": 0.00022295 + "ts": 8.75e-05 }, { "core_id": 0, @@ -89,7 +89,7 @@ "params": { "desc": "I#10=BT_BB" }, - "ts": 0.0002619 + "ts": 0.00010155 }, { "core_id": 0, @@ -99,7 +99,7 @@ "params": { "desc": "I#11=BT_BB_NMI" }, - "ts": 0.000285625 + "ts": 0.000112375 }, { "core_id": 0, @@ -109,7 +109,7 @@ "params": { "desc": "I#12=RWBT" }, - "ts": 0.000304525 + "ts": 0.0001223 }, { "core_id": 0, @@ -119,7 +119,7 @@ "params": { "desc": "I#13=RWBLE" }, - "ts": 0.000323425 + "ts": 0.000132275 }, { "core_id": 0, @@ -129,7 +129,7 @@ "params": { "desc": "I#14=RWBT_NMI" }, - "ts": 0.00034695 + "ts": 0.0001468 }, { "core_id": 0, @@ -139,7 +139,7 @@ "params": { "desc": "I#15=RWBLE_NMI" }, - "ts": 0.000366875 + "ts": 0.0001576 }, { "core_id": 0, @@ -149,7 +149,7 @@ "params": { "desc": "I#16=SLC0" }, - "ts": 0.000392525 + "ts": 0.000171875 }, { "core_id": 0, @@ -159,7 +159,7 @@ "params": { "desc": "I#17=SLC1" }, - "ts": 0.000415325 + "ts": 0.000189525 }, { "core_id": 0, @@ -169,7 +169,7 @@ "params": { "desc": "I#18=UHCI0" }, - "ts": 0.000434225 + "ts": 0.00019965 }, { "core_id": 0, @@ -179,7 +179,7 @@ "params": { "desc": "I#19=UHCI1" }, - "ts": 0.000453175 + "ts": 0.0002096 }, { "core_id": 0, @@ -189,7 +189,7 @@ "params": { "desc": "I#20=TG0_T0_LEVEL" }, - "ts": 0.0004776 + "ts": 0.000224875 }, { "core_id": 0, @@ -199,7 +199,7 @@ "params": { "desc": "I#21=TG0_T1_LEVEL" }, - "ts": 0.000498075 + "ts": 0.000236275 }, { "core_id": 0, @@ -209,7 +209,7 @@ "params": { "desc": "I#22=TG0_WDT_LEVEL" }, - "ts": 0.000522825 + "ts": 0.000251975 }, { "core_id": 0, @@ -219,7 +219,7 @@ "params": { "desc": "I#23=TG0_LACT_LEVEL" }, - "ts": 0.000543775 + "ts": 0.00026375 }, { "core_id": 0, @@ -229,7 +229,7 @@ "params": { "desc": "I#24=TG1_T0_LEVEL" }, - "ts": 0.000572225 + "ts": 0.00027915 }, { "core_id": 0, @@ -239,7 +239,7 @@ "params": { "desc": "I#25=TG1_T1_LEVEL" }, - "ts": 0.000592675 + "ts": 0.00029455 }, { "core_id": 0, @@ -249,7 +249,7 @@ "params": { "desc": "I#26=TG1_WDT_LEVEL" }, - "ts": 0.0006173 + "ts": 0.000310125 }, { "core_id": 0, @@ -259,7 +259,7 @@ "params": { "desc": "I#27=TG1_LACT_LEVEL" }, - "ts": 0.00063835 + "ts": 0.000322075 }, { "core_id": 0, @@ -269,7 +269,7 @@ "params": { "desc": "I#28=GPIO" }, - "ts": 0.00065715 + "ts": 0.000331975 }, { "core_id": 0, @@ -279,7 +279,7 @@ "params": { "desc": "I#29=GPIO_NMI" }, - "ts": 0.00068365 + "ts": 0.0003509 }, { "core_id": 0, @@ -289,7 +289,7 @@ "params": { "desc": "I#30=FROM_CPU0" }, - "ts": 0.000703575 + "ts": 0.0003618 }, { "core_id": 0, @@ -299,7 +299,7 @@ "params": { "desc": "I#31=FROM_CPU1" }, - "ts": 0.00072345 + "ts": 0.0003765 }, { "core_id": 0, @@ -309,7 +309,7 @@ "params": { "desc": "I#32=FROM_CPU2" }, - "ts": 0.000752275 + "ts": 0.0003873 }, { "core_id": 0, @@ -319,7 +319,7 @@ "params": { "desc": "I#33=FROM_CPU3" }, - "ts": 0.000773675 + "ts": 0.000402 }, { "core_id": 0, @@ -329,7 +329,7 @@ "params": { "desc": "I#34=SPI0" }, - "ts": 0.00079375 + "ts": 0.00041575 }, { "core_id": 0, @@ -339,7 +339,7 @@ "params": { "desc": "I#35=SPI1" }, - "ts": 0.000817875 + "ts": 0.0004255 }, { "core_id": 0, @@ -349,7 +349,7 @@ "params": { "desc": "I#36=SPI2" }, - "ts": 0.000838025 + "ts": 0.000435275 }, { "core_id": 0, @@ -359,7 +359,7 @@ "params": { "desc": "I#37=SPI3" }, - "ts": 0.000858375 + "ts": 0.000445025 }, { "core_id": 0, @@ -369,7 +369,7 @@ "params": { "desc": "I#38=I2S0" }, - "ts": 0.00087835 + "ts": 0.000458825 }, { "core_id": 0, @@ -379,7 +379,7 @@ "params": { "desc": "I#39=I2S1" }, - "ts": 0.0009024 + "ts": 0.000468575 }, { "core_id": 0, @@ -389,7 +389,7 @@ "params": { "desc": "I#40=UART0" }, - "ts": 0.000926725 + "ts": 0.000478575 }, { "core_id": 0, @@ -399,7 +399,7 @@ "params": { "desc": "I#41=UART1" }, - "ts": 0.00094725 + "ts": 0.0004925 }, { "core_id": 0, @@ -409,7 +409,7 @@ "params": { "desc": "I#42=UART2" }, - "ts": 0.000967725 + "ts": 0.000506375 }, { "core_id": 0, @@ -419,7 +419,7 @@ "params": { "desc": "I#43=SDIO_HOST" }, - "ts": 0.000992875 + "ts": 0.000517125 }, { "core_id": 0, @@ -429,7 +429,7 @@ "params": { "desc": "I#44=ETH_MAC" }, - "ts": 0.001013975 + "ts": 0.000527475 }, { "core_id": 0, @@ -439,7 +439,7 @@ "params": { "desc": "I#45=PWM0" }, - "ts": 0.001036925 + "ts": 0.0005416 }, { "core_id": 0, @@ -449,7 +449,7 @@ "params": { "desc": "I#46=PWM1" }, - "ts": 0.001060925 + "ts": 0.0005553 }, { "core_id": 0, @@ -457,9 +457,9 @@ "id": 14, "in_irq": false, "params": { - "desc": "I#47=PWM2" + "desc": "I#47=RESERVED" }, - "ts": 0.001080775 + "ts": 0.00056595 }, { "core_id": 0, @@ -467,9 +467,9 @@ "id": 14, "in_irq": false, "params": { - "desc": "I#48=PWM3" + "desc": "I#48=RESERVED" }, - "ts": 0.001104725 + "ts": 0.00057655 }, { "core_id": 0, @@ -479,7 +479,7 @@ "params": { "desc": "I#49=LEDC" }, - "ts": 0.001124475 + "ts": 0.000590325 }, { "core_id": 0, @@ -489,7 +489,7 @@ "params": { "desc": "I#50=EFUSE" }, - "ts": 0.0011488 + "ts": 0.000604225 }, { "core_id": 0, @@ -497,9 +497,9 @@ "id": 14, "in_irq": false, "params": { - "desc": "I#51=CAN" + "desc": "I#51=TWAI" }, - "ts": 0.0011686 + "ts": 0.000618075 }, { "core_id": 0, @@ -509,7 +509,7 @@ "params": { "desc": "I#52=RTC_CORE" }, - "ts": 0.00119395 + "ts": 0.00062865 }, { "core_id": 0, @@ -519,7 +519,7 @@ "params": { "desc": "I#53=RMT" }, - "ts": 0.001213875 + "ts": 0.000638225 }, { "core_id": 0, @@ -529,7 +529,7 @@ "params": { "desc": "I#54=PCNT" }, - "ts": 0.001233625 + "ts": 0.000648075 }, { "core_id": 0, @@ -539,7 +539,7 @@ "params": { "desc": "I#55=I2C_EXT0" }, - "ts": 0.001258875 + "ts": 0.00066305 }, { "core_id": 0, @@ -549,7 +549,7 @@ "params": { "desc": "I#56=I2C_EXT1" }, - "ts": 0.00128415 + "ts": 0.0006752 }, { "core_id": 0, @@ -559,7 +559,7 @@ "params": { "desc": "I#57=RSA" }, - "ts": 0.001303975 + "ts": 0.000690175 }, { "core_id": 0, @@ -569,7 +569,7 @@ "params": { "desc": "I#58=SPI1_DMA" }, - "ts": 0.001325125 + "ts": 0.0007059 }, { "core_id": 0, @@ -579,7 +579,7 @@ "params": { "desc": "I#59=SPI2_DMA" }, - "ts": 0.001349925 + "ts": 0.000718025 }, { "core_id": 0, @@ -589,7 +589,7 @@ "params": { "desc": "I#60=SPI3_DMA" }, - "ts": 0.001370875 + "ts": 0.000730375 }, { "core_id": 0, @@ -599,7 +599,7 @@ "params": { "desc": "I#61=WDT" }, - "ts": 0.001390975 + "ts": 0.0007413 }, { "core_id": 0, @@ -609,7 +609,7 @@ "params": { "desc": "I#62=TIMER1" }, - "ts": 0.001418825 + "ts": 0.00076165 }, { "core_id": 0, @@ -619,7 +619,7 @@ "params": { "desc": "I#63=TIMER2" }, - "ts": 0.0014391 + "ts": 0.000773525 }, { "core_id": 0, @@ -629,7 +629,7 @@ "params": { "desc": "I#64=TG0_T0_EDGE" }, - "ts": 0.001468925 + "ts": 0.000786275 }, { "core_id": 0, @@ -639,7 +639,7 @@ "params": { "desc": "I#65=TG0_T1_EDGE" }, - "ts": 0.00149465 + "ts": 0.000806925 }, { "core_id": 0, @@ -649,7 +649,7 @@ "params": { "desc": "I#66=TG0_WDT_EDGE" }, - "ts": 0.0015168 + "ts": 0.00081995 }, { "core_id": 0, @@ -659,7 +659,7 @@ "params": { "desc": "I#67=TG0_LACT_EDGE" }, - "ts": 0.0015433 + "ts": 0.000837025 }, { "core_id": 0, @@ -669,7 +669,7 @@ "params": { "desc": "I#68=TG1_T0_EDGE" }, - "ts": 0.00156515 + "ts": 0.000850025 }, { "core_id": 0, @@ -679,7 +679,7 @@ "params": { "desc": "I#69=TG1_T1_EDGE" }, - "ts": 0.001587425 + "ts": 0.000863125 }, { "core_id": 0, @@ -689,7 +689,7 @@ "params": { "desc": "I#70=TG1_WDT_EDGE" }, - "ts": 0.0016136 + "ts": 0.000880425 }, { "core_id": 0, @@ -699,7 +699,7 @@ "params": { "desc": "I#71=TG1_LACT_EDGE" }, - "ts": 0.0016359 + "ts": 0.00089375 }, { "core_id": 0, @@ -709,7 +709,7 @@ "params": { "desc": "I#72=MMU_IA" }, - "ts": 0.0016643 + "ts": 0.00090935 }, { "core_id": 0, @@ -719,7 +719,7 @@ "params": { "desc": "I#73=MPU_IA" }, - "ts": 0.0016849 + "ts": 0.000925 }, { "core_id": 0, @@ -729,7 +729,7 @@ "params": { "desc": "I#74=CACHE_IA" }, - "ts": 0.001706 + "ts": 0.000937125 }, { "core_id": 0, @@ -737,34 +737,9 @@ "id": 13, "in_irq": false, "params": { - "time": 8000 + "time": 10000 }, - "ts": 0.0017128 - }, - { - "core_id": 0, - "ctx_name": "IDLE1", - "id": 9, - "in_irq": false, - "params": { - "name": "esp_timer", - "prio": 22, - "tid": 12253892 - }, - "ts": 0.00194245 - }, - { - "core_id": 0, - "ctx_name": "IDLE1", - "id": 21, - "in_irq": false, - "params": { - "base": 1073408704, - "sz": 3392, - "tid": 12253892, - "unused": 0 - }, - "ts": 0.00194795 + "ts": 0.0009454 }, { "core_id": 0, @@ -774,9 +749,9 @@ "params": { "name": "ipc0", "prio": 24, - "tid": 12254676 + "tid": 12253204 }, - "ts": 0.002044675 + "ts": 0.0010603 }, { "core_id": 0, @@ -784,12 +759,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073428420, - "sz": 1356, - "tid": 12254676, + "base": 1073410064, + "sz": 1344, + "tid": 12253204, "unused": 0 }, - "ts": 0.002049675 + "ts": 0.00106555 }, { "core_id": 0, @@ -799,9 +774,9 @@ "params": { "name": "ipc1", "prio": 24, - "tid": 12273696 + "tid": 12253560 }, - "ts": 0.00214765 + "ts": 0.00117445 }, { "core_id": 0, @@ -809,12 +784,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073430556, - "sz": 1380, - "tid": 12273696, + "base": 1073431024, + "sz": 1344, + "tid": 12253560, "unused": 0 }, - "ts": 0.0021529 + "ts": 0.001179775 }, { "core_id": 0, @@ -824,84 +799,9 @@ "params": { "name": "main", "prio": 1, - "tid": 12280900 - }, - "ts": 0.0023185 - }, - { - "core_id": 0, - "ctx_name": "IDLE1", - "id": 21, - "in_irq": false, - "params": { - "base": 1073435712, - "sz": 2416, - "tid": 12280900, - "unused": 0 - }, - "ts": 0.002323775 - }, - { - "core_id": 0, - "ctx_name": "IDLE1", - "id": 9, - "in_irq": false, - "params": { - "name": "IDLE0", - "prio": 0, - "tid": 12282800 - }, - "ts": 0.00241285 - }, - { - "core_id": 0, - "ctx_name": "IDLE1", - "id": 21, - "in_irq": false, - "params": { - "base": 1073440172, - "sz": 1236, - "tid": 12282800, - "unused": 0 - }, - "ts": 0.00241815 - }, - { - "core_id": 0, - "ctx_name": "IDLE1", - "id": 9, - "in_irq": false, - "params": { - "name": "IDLE1", - "prio": 0, - "tid": 12284700 - }, - "ts": 0.002497925 - }, - { - "core_id": 0, - "ctx_name": "IDLE1", - "id": 21, - "in_irq": false, - "params": { - "base": 1073442072, - "sz": 1096, - "tid": 12284700, - "unused": 0 - }, - "ts": 0.002503025 - }, - { - "core_id": 0, - "ctx_name": "IDLE1", - "id": 9, - "in_irq": false, - "params": { - "name": "Tmr Svc", - "prio": 1, - "tid": 12287356 + "tid": 12254080 }, - "ts": 0.0025996 + "ts": 0.001331775 }, { "core_id": 0, @@ -909,12 +809,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073444216, - "sz": 1352, - "tid": 12287356, + "base": 1073433076, + "sz": 1916, + "tid": 12254080, "unused": 0 }, - "ts": 0.0026049 + "ts": 0.00133715 }, { "core_id": 0, @@ -924,7 +824,7 @@ "params": { "mod_cnt": 0 }, - "ts": 0.002613425 + "ts": 0.00134445 }, { "core_id": 1, @@ -934,7 +834,7 @@ "params": { "irq_num": 5 }, - "ts": 0.002620975 + "ts": 0.001351275 }, { "core_id": 0, @@ -944,7 +844,7 @@ "params": { "irq_num": 5 }, - "ts": 0.002629525 + "ts": 0.00136285 }, { "core_id": 1, @@ -952,43 +852,17 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.002637475 + "ts": 0.0013738 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 3, - "in_irq": false, - "params": {}, - "ts": 0.002646175 - }, - { - "core_id": 1, "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0026544 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, + "id": 6, "in_irq": true, "params": { - "irq_num": 5 + "tid": 12254080 }, - "ts": 0.002662925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.00267075 + "ts": 0.00138475 }, { "core_id": 0, @@ -996,17 +870,7 @@ "id": 3, "in_irq": false, "params": {}, - "ts": 0.002679375 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.00268805 + "ts": 0.00139985 }, { "core_id": 1, @@ -1014,75 +878,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.002696 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 3, - "in_irq": false, - "params": {}, - "ts": 0.00270715 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.002723725 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.00275725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 1 - }, - "ts": 0.0027657 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12280900 - }, - "ts": 0.00277565 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.002789875 + "ts": 0.00141065 }, { "core_id": 0, @@ -1092,7 +888,7 @@ "params": { "irq_num": 30 }, - "ts": 0.00279805 + "ts": 0.001422175 }, { "core_id": 0, @@ -1100,43 +896,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.002807125 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.002821375 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.00361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12280900 - }, - "ts": 0.003629425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.003638775 + "ts": 0.001433675 }, { "core_id": 0, @@ -1144,9 +904,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12280900 + "tid": 12254080 }, - "ts": 0.003653075 + "ts": 0.001450025 }, { "core_id": 0, @@ -1154,21 +914,21 @@ "id": 22, "in_irq": false, "params": { - "desc": "ESP32 SystemView Heap Tracing Module", + "desc": "M=ESP32 SystemView Heap Tracing Module", "evt_off": 512, "mod_id": 0 }, - "ts": 0.0036776 + "ts": 0.0014769 }, { - "addr": "0x3ffb7f34", + "addr": "0x3ffb70d8", "callers": [ - "0x400d3bbb", - "0x400d0ac5", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6bef", + "0x400e693b", + "0x40088d94", "0x0", "0x0", "0x0", @@ -1179,7 +939,7 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.0037217 + "ts": 0.001532525 }, { "core_id": 1, @@ -1189,7 +949,7 @@ "params": { "irq_num": 5 }, - "ts": 0.003748425 + "ts": 0.001666425 }, { "core_id": 1, @@ -1197,17 +957,43 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.003760275 + "ts": 0.00167985 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.001696525 }, { - "addr": "0x3ffb888c", + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.00183355 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 3, + "in_irq": false, + "params": {}, + "ts": 0.001848925 + }, + { + "addr": "0x3ffb70e8", "callers": [ - "0x4008b4df", - "0x400d3c04", - "0x400d0ac5", - "0x40089bbc", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6c38", + "0x400e693b", + "0x40088d94", "0x0", "0x0", "0x0", @@ -1218,25 +1004,17 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.0037685 + "ts": 0.001870025 }, { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.003776475 - }, - { - "addr": "0x3ffb7f40", + "addr": "0x3ffb7aec", "callers": [ - "0x4008b4ed", - "0x400d3c04", - "0x400d0ac5", - "0x40089bbc", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6c38", + "0x400e693b", + "0x40088d94", "0x0", "0x0", "0x0", @@ -1246,8 +1024,8 @@ "ctx_name": "main", "id": 512, "in_irq": false, - "size": 356, - "ts": 0.0037957 + "size": 340, + "ts": 0.001909875 }, { "core_id": 0, @@ -1255,9 +1033,9 @@ "id": 8, "in_irq": false, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 0.00382695 + "ts": 0.00193255 }, { "core_id": 0, @@ -1267,9 +1045,9 @@ "params": { "name": "alloc0", "prio": 5, - "tid": 12287808 + "tid": 12286700 }, - "ts": 0.003837225 + "ts": 0.001945175 }, { "core_id": 0, @@ -1277,12 +1055,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073449100, - "sz": 2196, - "tid": 12287808, + "base": 1073443048, + "sz": 4294965096, + "tid": 12286700, "unused": 0 }, - "ts": 0.003843775 + "ts": 0.001954275 }, { "core_id": 0, @@ -1290,9 +1068,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 0.003854875 + "ts": 0.001964975 }, { "core_id": 0, @@ -1302,7 +1080,7 @@ "params": { "irq_num": 30 }, - "ts": 0.0038683 + "ts": 0.001980675 }, { "core_id": 0, @@ -1310,7 +1088,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.003877025 + "ts": 0.001992175 }, { "core_id": 0, @@ -1318,18 +1096,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 0.0038918 + "ts": 0.00200865 }, { - "addr": "0x3ffb80a8", + "addr": "0x3ffb7c50", "callers": [ - "0x4008a2a6", - "0x400d3a80", - "0x40089bbc", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x40088679", + "0x400d6aa4", + "0x40088d94", "0x0", "0x0", "0x0", @@ -1340,8 +1118,8 @@ "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 120, - "ts": 0.0039245 + "size": 124, + "ts": 0.002044025 }, { "core_id": 0, @@ -1353,16 +1131,16 @@ "uxItemSize": 4, "uxQueueLength": 10 }, - "ts": 0.00393515 + "ts": 0.002058325 }, { - "addr": "0x3ffb9254", + "addr": "0x3ffb7cd0", "callers": [ - "0x4008b4df", - "0x400d3abd", - "0x40089bbc", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6ae0", + "0x40088d94", "0x0", "0x0", "0x0", @@ -1374,16 +1152,16 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.00397635 + "ts": 0.00211355 }, { - "addr": "0x3ffb8124", + "addr": "0x3ffb86d4", "callers": [ - "0x4008b4ed", - "0x400d3abd", - "0x40089bbc", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6ae0", + "0x40088d94", "0x0", "0x0", "0x0", @@ -1394,8 +1172,8 @@ "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 356, - "ts": 0.003999725 + "size": 340, + "ts": 0.00214795 }, { "core_id": 0, @@ -1403,9 +1181,9 @@ "id": 8, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 0.0040305 + "ts": 0.00217465 }, { "core_id": 0, @@ -1415,9 +1193,9 @@ "params": { "name": "free0", "prio": 5, - "tid": 12288292 + "tid": 12289748 }, - "ts": 0.004041175 + "ts": 0.00218715 }, { "core_id": 0, @@ -1425,12 +1203,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073451604, - "sz": 2204, - "tid": 12288292, + "base": 1073446096, + "sz": 4294965088, + "tid": 12289748, "unused": 0 }, - "ts": 0.0040477 + "ts": 0.0021963 }, { "core_id": 0, @@ -1438,9 +1216,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 0.00405585 + "ts": 0.002207125 }, { "core_id": 1, @@ -1450,7 +1228,7 @@ "params": { "irq_num": 31 }, - "ts": 0.00406915 + "ts": 0.0022225 }, { "core_id": 1, @@ -1458,17 +1236,58 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00407865 + "ts": 0.0022354 }, { - "addr": "0x3ffb828c", + "addr": "0x3ffb8838", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 1, + "ts": 0.0022518 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.0022631 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.002293125 + }, + { + "addr": "0x3ffb8848", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -1479,17 +1298,15 @@ "id": 512, "in_irq": false, "size": 2, - "ts": 0.004092075 + "ts": 0.00230405 }, { "core_id": 1, "ctx_name": "free0", - "id": 4, + "id": 18, "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.004101075 + "params": {}, + "ts": 0.002315125 }, { "core_id": 0, @@ -1499,21 +1316,18 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 0.00411065 + "ts": 0.002327775 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, + "ctx_name": "free0", + "id": 17, "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.004126475 + "params": {}, + "ts": 0.002338225 }, { "core_id": 0, @@ -1523,36 +1337,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 0.0041352 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.00414665 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.00415545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0041737 + "ts": 0.0023724 }, { "core_id": 0, @@ -1560,8 +1348,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (330) example: Task[0x3ffb7f40]: allocated 2 bytes @ 0x3ffb828c\n", - "ts": 0.004291975 + "msg": "I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848\n", + "ts": 0.002611675 }, { "core_id": 0, @@ -1569,8 +1357,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (330) example: Task[0x3ffb7f40]: allocated 2 bytes @ 0x3ffb828c\n", - "ts": 0.004291975 + "msg": "I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848\n", + "ts": 0.002611675 }, { "core_id": 0, @@ -1580,10 +1368,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12288168, + "xQueue": 12287056, "xTicksToWait": 0 }, - "ts": 0.004303075 + "ts": 0.00263325 }, { "core_id": 0, @@ -1591,9 +1379,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 0.0043131 + "ts": 0.002646375 }, { "core_id": 1, @@ -1603,7 +1391,7 @@ "params": { "irq_num": 31 }, - "ts": 0.0043261 + "ts": 0.002662575 }, { "core_id": 0, @@ -1613,36 +1401,15 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.00433465 + "ts": 0.00267345 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 0.004342575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.004351125 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.00436355 + "ts": 0.002684225 }, { "core_id": 0, @@ -1652,28 +1419,33 @@ "params": { "irq_num": 30 }, - "ts": 0.004371925 + "ts": 0.0026984 }, { "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 + "irq_num": 5 }, - "ts": 0.004380175 + "ts": 0.00270915 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc0", "id": 18, "in_irq": false, "params": {}, - "ts": 0.004388875 + "ts": 0.002720075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.002731625 }, { "core_id": 0, @@ -1681,45 +1453,42 @@ "id": 4, "in_irq": false, "params": { - "tid": 12280900 + "tid": 12254080 }, - "ts": 0.004405225 + "ts": 0.0027421 }, { "core_id": 1, "ctx_name": "free0", - "id": 49, + "id": 4, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 + "tid": 12289748 }, - "ts": 0.00441405 + "ts": 0.0027596 }, { "core_id": 1, "ctx_name": "free0", - "id": 53, + "id": 49, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 }, - "ts": 0.004430975 + "ts": 0.00277655 }, { - "addr": "0x3ffb8294", + "addr": "0x3ffb8858", "callers": [ - "0x400d3bbb", - "0x400d0ac5", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6bef", + "0x400e693b", + "0x40088d94", "0x0", "0x0", "0x0", @@ -1730,17 +1499,48 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.0044397 + "ts": 0.00278805 }, { - "addr": "0x3ffb9c1c", + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.002824 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.002835875 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 3, + "in_irq": false, + "params": {}, + "ts": 0.00285125 + }, + { + "addr": "0x3ffb8868", "callers": [ - "0x4008b4df", - "0x400d3c04", - "0x400d0ac5", - "0x40089bbc", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6c38", + "0x400e693b", + "0x40088d94", "0x0", "0x0", "0x0", @@ -1751,17 +1551,30 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.0044711 + "ts": 0.002863625 }, { - "addr": "0x3ffb82a0", + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.002878375 + }, + { + "addr": "0x3ffb926c", "callers": [ - "0x4008b4ed", - "0x400d3c04", - "0x400d0ac5", - "0x40089bbc", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6c38", + "0x400e693b", + "0x40088d94", "0x0", "0x0", "0x0", @@ -1771,8 +1584,8 @@ "ctx_name": "main", "id": 512, "in_irq": false, - "size": 356, - "ts": 0.004498675 + "size": 340, + "ts": 0.002905675 }, { "core_id": 0, @@ -1780,9 +1593,9 @@ "id": 8, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 0.004529925 + "ts": 0.002928325 }, { "core_id": 0, @@ -1792,9 +1605,9 @@ "params": { "name": "alloc1", "prio": 5, - "tid": 12288672 + "tid": 12292716 }, - "ts": 0.004540825 + "ts": 0.002941 }, { "core_id": 0, @@ -1802,12 +1615,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073454108, - "sz": 2196, - "tid": 12288672, + "base": 1073449064, + "sz": 4294965096, + "tid": 12292716, "unused": 0 }, - "ts": 0.004547375 + "ts": 0.00295 }, { "core_id": 0, @@ -1815,9 +1628,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 0.004555525 + "ts": 0.0029609 }, { "core_id": 0, @@ -1827,7 +1640,7 @@ "params": { "irq_num": 30 }, - "ts": 0.004568975 + "ts": 0.002976625 }, { "core_id": 0, @@ -1835,35 +1648,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00457775 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.004592525 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.00461795 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0046294 + "ts": 0.002988 }, { "core_id": 0, @@ -1871,18 +1656,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 0.004644525 + "ts": 0.00300485 }, { - "addr": "0x3ffb8408", + "addr": "0x3ffb93d0", "callers": [ - "0x4008a2a6", - "0x400d3a80", - "0x40089bbc", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x40088679", + "0x400d6aa4", + "0x40088d94", "0x0", "0x0", "0x0", @@ -1893,8 +1678,8 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 120, - "ts": 0.004654925 + "size": 124, + "ts": 0.0030403 }, { "core_id": 0, @@ -1906,16 +1691,16 @@ "uxItemSize": 4, "uxQueueLength": 10 }, - "ts": 0.00466545 + "ts": 0.0030546 }, { - "addr": "0x3ffba5e4", + "addr": "0x3ffb9450", "callers": [ - "0x4008b4df", - "0x400d3abd", - "0x40089bbc", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6ae0", + "0x40088d94", "0x0", "0x0", "0x0", @@ -1927,16 +1712,16 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.004694775 + "ts": 0.00309395 }, { - "addr": "0x3ffb8484", + "addr": "0x3ffb9e54", "callers": [ - "0x4008b4ed", - "0x400d3abd", - "0x40089bbc", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6ae0", + "0x40088d94", "0x0", "0x0", "0x0", @@ -1947,8 +1732,8 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 356, - "ts": 0.00471815 + "size": 340, + "ts": 0.00312835 }, { "core_id": 0, @@ -1956,9 +1741,9 @@ "id": 8, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 0.004751775 + "ts": 0.0031551 }, { "core_id": 0, @@ -1968,9 +1753,9 @@ "params": { "name": "free1", "prio": 5, - "tid": 12289156 + "tid": 12295764 }, - "ts": 0.004762675 + "ts": 0.0031676 }, { "core_id": 0, @@ -1978,12 +1763,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073456612, - "sz": 2204, - "tid": 12289156, + "base": 1073452112, + "sz": 4294965088, + "tid": 12295764, "unused": 0 }, - "ts": 0.004769375 + "ts": 0.003176775 }, { "core_id": 0, @@ -1991,19 +1776,40 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 0.004777425 + "ts": 0.003187575 }, { - "addr": "0x3ffb85ec", + "addr": "0x3ffb9fb8", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 2, + "ts": 0.0032237 + }, + { + "addr": "0x3ffb9fc8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -2014,7 +1820,7 @@ "id": 512, "in_irq": false, "size": 4, - "ts": 0.0048012 + "ts": 0.0032581 }, { "core_id": 0, @@ -2024,10 +1830,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 0.004813875 + "ts": 0.003275 }, { "core_id": 0, @@ -2037,10 +1843,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 0.00482785 + "ts": 0.003296925 }, { "core_id": 1, @@ -2048,8 +1854,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (330) example: Task[0x3ffb8124]: free memory @ 0x3ffb828c\n", - "ts": 0.004936525 + "msg": "I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848\n", + "ts": 0.00333965 }, { "core_id": 1, @@ -2057,18 +1863,18 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (330) example: Task[0x3ffb8124]: free memory @ 0x3ffb828c\n", - "ts": 0.004936525 + "msg": "I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848\n", + "ts": 0.00333965 }, { "core_id": 1, - "ctx_name": "SysTick", + "ctx_name": "FROM_CPU1", "id": 2, "in_irq": true, "params": { - "irq_num": 5 + "irq_num": 31 }, - "ts": 0.004947675 + "ts": 0.0033598 }, { "core_id": 1, @@ -2076,7 +1882,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00495715 + "ts": 0.00337125 }, { "core_id": 1, @@ -2084,9 +1890,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 0.0049712 + "ts": 0.003388225 }, { "core_id": 0, @@ -2094,8 +1900,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (331) example: Task[0x3ffb82a0]: allocated 4 bytes @ 0x3ffb85ec\n", - "ts": 0.004990925 + "msg": "I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8\n", + "ts": 0.00340705 }, { "core_id": 0, @@ -2103,15 +1909,28 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (331) example: Task[0x3ffb82a0]: allocated 4 bytes @ 0x3ffb85ec\n", - "ts": 0.004990925 + "msg": "I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8\n", + "ts": 0.00340705 }, { - "addr": "0x3ffb828c", + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.00342115 + }, + { + "addr": "0x3ffb8848", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -2125,41 +1944,35 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.00500315 + "ts": 0.0034343 }, { "core_id": 0, "ctx_name": "alloc1", - "id": 53, + "id": 34, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 + "xTicksToDelay": 30 }, - "ts": 0.005011525 + "ts": 0.003446125 }, { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12288292 + "irq_num": 30 }, - "ts": 0.005023375 + "ts": 0.0034648 }, { "core_id": 0, "ctx_name": "alloc1", - "id": 34, + "id": 18, "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.0050333 + "params": {}, + "ts": 0.00347875 }, { "core_id": 1, @@ -2169,36 +1982,25 @@ "params": { "irq_num": 31 }, - "ts": 0.005042275 + "ts": 0.003492825 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, + "ctx_name": "main", + "id": 4, "in_irq": false, "params": { - "cause": 4, - "tid": 12288672 + "tid": 12254080 }, - "ts": 0.00505055 + "ts": 0.003504725 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 0.005058725 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.00506865 + "ts": 0.0035156 }, { "core_id": 1, @@ -2206,17 +2008,30 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 0.005077825 + "ts": 0.00353485 }, { + "addr": "0x3ffb8848", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6bef", + "0x400e693b", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0" + ], "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "main", + "id": 512, "in_irq": false, - "params": {}, - "ts": 0.0050864 + "size": 8, + "ts": 0.003547175 }, { "core_id": 1, @@ -2224,22 +2039,12 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, "xTicksToWait": 4294967295 }, - "ts": 0.00509575 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 4, - "in_irq": false, - "params": { - "tid": 12280900 - }, - "ts": 0.0051052 + "ts": 0.003564225 }, { "core_id": 1, @@ -2249,54 +2054,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 0.005113725 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.005130625 - }, - { - "addr": "0x3ffb85f4", - "callers": [ - "0x400d3bbb", - "0x400d0ac5", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "main", - "id": 512, - "in_irq": false, - "size": 8, - "ts": 0.00513895 + "ts": 0.0035829 }, { - "addr": "0x3ffbafac", + "addr": "0x3ffb9fd8", "callers": [ - "0x4008b4df", - "0x400d3c04", - "0x400d0ac5", - "0x40089bbc", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6c38", + "0x400e693b", + "0x40088d94", "0x0", "0x0", "0x0", @@ -2307,35 +2078,30 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.005171025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (331) example: Task[0x3ffb8484]: free memory @ 0x3ffb85ec\n", - "ts": 0.0051955 + "ts": 0.003600675 }, { "core_id": 1, "ctx_name": "free1", - "id": 26, + "id": 53, "in_irq": false, - "lvl": 0, - "msg": "I (331) example: Task[0x3ffb8484]: free memory @ 0x3ffb85ec\n", - "ts": 0.0051955 + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.0036134 }, { - "addr": "0x3ffb8600", + "addr": "0x3ffba9dc", "callers": [ - "0x4008b4ed", - "0x400d3c04", - "0x400d0ac5", - "0x40089bbc", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6c38", + "0x400e693b", + "0x40088d94", "0x0", "0x0", "0x0", @@ -2345,40 +2111,26 @@ "ctx_name": "main", "id": 512, "in_irq": false, - "size": 356, - "ts": 0.005205975 + "size": 340, + "ts": 0.003639925 }, { - "addr": "0x3ffb85ec", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], "core_id": 1, "ctx_name": "free1", - "id": 513, + "id": 26, "in_irq": false, - "size": 0, - "ts": 0.005214875 + "lvl": 0, + "msg": "I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8\n", + "ts": 0.003663425 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, + "ctx_name": "free1", + "id": 26, "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.005236175 + "lvl": 0, + "msg": "I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8\n", + "ts": 0.003663425 }, { "core_id": 0, @@ -2386,19 +2138,19 @@ "id": 8, "in_irq": false, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 0.005247025 + "ts": 0.0036748 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 0.00525555 + "ts": 0.003691 }, { "core_id": 0, @@ -2408,9 +2160,9 @@ "params": { "name": "alloc2", "prio": 5, - "tid": 12289536 + "tid": 12298716 }, - "ts": 0.00526545 + "ts": 0.003703775 }, { "core_id": 0, @@ -2418,20 +2170,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073459116, - "sz": 2196, - "tid": 12289536, + "base": 1073455064, + "sz": 4294965096, + "tid": 12298716, "unused": 0 }, - "ts": 0.005273425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.005281875 + "ts": 0.00371475 }, { "core_id": 0, @@ -2439,17 +2183,17 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 0.005290525 + "ts": 0.00372765 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, + "ctx_name": "free1", + "id": 18, "in_irq": false, "params": {}, - "ts": 0.005307225 + "ts": 0.0037451 }, { "core_id": 0, @@ -2459,7 +2203,17 @@ "params": { "irq_num": 30 }, - "ts": 0.005321225 + "ts": 0.00375595 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.003766625 }, { "core_id": 0, @@ -2467,7 +2221,28 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00532995 + "ts": 0.003777475 + }, + { + "addr": "0x3ffb9fc8", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.003792825 }, { "core_id": 0, @@ -2475,18 +2250,62 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289536 + "tid": 12298716 + }, + "ts": 0.00380445 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.00382735 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 }, - "ts": 0.005344575 + "ts": 0.003839325 }, { - "addr": "0x3ffb8768", + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0038505 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 3, + "in_irq": false, + "params": {}, + "ts": 0.003862175 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.00387205 + }, + { + "addr": "0x3ffbab40", "callers": [ - "0x4008a2a6", - "0x400d3a80", - "0x40089bbc", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x40088679", + "0x400d6aa4", + "0x40088d94", "0x0", "0x0", "0x0", @@ -2497,8 +2316,8 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 120, - "ts": 0.005369825 + "size": 124, + "ts": 0.0038881 }, { "core_id": 0, @@ -2510,16 +2329,16 @@ "uxItemSize": 4, "uxQueueLength": 10 }, - "ts": 0.005383475 + "ts": 0.003902475 }, { - "addr": "0x3ffbb974", + "addr": "0x3ffbabc0", "callers": [ - "0x4008b4df", - "0x400d3abd", - "0x40089bbc", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6ae0", + "0x40088d94", "0x0", "0x0", "0x0", @@ -2531,16 +2350,16 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.00541335 + "ts": 0.003941825 }, { - "addr": "0x3ffb49a8", + "addr": "0x3ffbb5c4", "callers": [ - "0x4008b4ed", - "0x400d3abd", - "0x40089bbc", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6ae0", + "0x40088d94", "0x0", "0x0", "0x0", @@ -2551,8 +2370,8 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 356, - "ts": 0.00543725 + "size": 340, + "ts": 0.003976225 }, { "core_id": 0, @@ -2560,9 +2379,9 @@ "id": 8, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 0.00546805 + "ts": 0.0040022 }, { "core_id": 0, @@ -2572,9 +2391,9 @@ "params": { "name": "free2", "prio": 5, - "tid": 12274088 + "tid": 12301764 }, - "ts": 0.005479125 + "ts": 0.0040147 }, { "core_id": 0, @@ -2582,12 +2401,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073461620, - "sz": 2204, - "tid": 12274088, + "base": 1073458112, + "sz": 4294965088, + "tid": 12301764, "unused": 0 }, - "ts": 0.005485675 + "ts": 0.004023875 }, { "core_id": 0, @@ -2595,9 +2414,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 0.005493825 + "ts": 0.004034675 }, { "core_id": 1, @@ -2607,24 +2426,24 @@ "params": { "irq_num": 31 }, - "ts": 0.005507775 + "ts": 0.004050925 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 0.0055182 + "ts": 0.004063775 }, { - "addr": "0x3ffb87e4", + "addr": "0x3ffb9fc8", "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", @@ -2635,8 +2454,8 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 6, - "ts": 0.005526475 + "size": 3, + "ts": 0.00407545 }, { "core_id": 1, @@ -2644,33 +2463,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12274088 - }, - "ts": 0.0055348 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.0055434 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 + "tid": 12301764 }, - "ts": 0.0055529 + "ts": 0.0040869 }, { "core_id": 1, @@ -2680,45 +2475,70 @@ "params": { "irq_num": 31 }, - "ts": 0.00556785 + "ts": 0.004113275 }, { + "addr": "0x3ffbb728", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], "core_id": 0, "ctx_name": "alloc2", - "id": 53, + "id": 512, "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.005576775 + "size": 6, + "ts": 0.004125025 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.005585 + "ts": 0.00413645 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.004148425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 0.005603325 + "ts": 0.0041587 }, { "core_id": 0, "ctx_name": "alloc2", - "id": 26, + "id": 53, "in_irq": false, - "lvl": 0, - "msg": "I (331) example: Task[0x3ffb8600]: allocated 6 bytes @ 0x3ffb87e4\n", - "ts": 0.00563115 + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.0041771 }, { "core_id": 0, @@ -2726,26 +2546,17 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (331) example: Task[0x3ffb8600]: allocated 6 bytes @ 0x3ffb87e4\n", - "ts": 0.00563115 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.005644325 + "msg": "I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728\n", + "ts": 0.0042294 }, { "core_id": 0, "ctx_name": "alloc2", - "id": 3, + "id": 26, "in_irq": false, - "params": {}, - "ts": 0.005655825 + "lvl": 0, + "msg": "I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728\n", + "ts": 0.0042294 }, { "core_id": 0, @@ -2755,10 +2566,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289896, + "xQueue": 12299072, "xTicksToWait": 0 }, - "ts": 0.00566755 + "ts": 0.0042464 }, { "core_id": 0, @@ -2766,9 +2577,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 0.005677625 + "ts": 0.00425955 }, { "core_id": 1, @@ -2778,7 +2589,7 @@ "params": { "irq_num": 31 }, - "ts": 0.005690575 + "ts": 0.004275825 }, { "core_id": 0, @@ -2788,36 +2599,15 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.0056993 + "ts": 0.004286675 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.005707225 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.005715775 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.0057285 + "ts": 0.00429745 }, { "core_id": 0, @@ -2827,92 +2617,48 @@ "params": { "irq_num": 30 }, - "ts": 0.005736825 + "ts": 0.004311325 }, { "core_id": 1, "ctx_name": "free2", - "id": 49, + "id": 4, "in_irq": false, "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 + "tid": 12301764 }, - "ts": 0.005745075 + "ts": 0.004322125 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 0.005753575 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.005761825 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 4, - "in_irq": false, - "params": { - "tid": 12280900 - }, - "ts": 0.00577175 + "ts": 0.004332975 }, { "core_id": 1, "ctx_name": "free2", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.005779925 - }, - { - "core_id": 0, - "ctx_name": "main", "id": 49, "in_irq": false, "params": { "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.00579205 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 }, - "ts": 0.0058008 + "ts": 0.004344875 }, { "core_id": 0, "ctx_name": "main", - "id": 53, + "id": 4, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 + "tid": 12254080 }, - "ts": 0.0058175 + "ts": 0.00435545 }, { "core_id": 1, @@ -2922,10 +2668,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 0.005833675 + "ts": 0.004367625 }, { "core_id": 1, @@ -2935,39 +2681,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 0.0058478 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (332) example: Wait notify 0\n", - "ts": 0.00586085 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (332) example: Wait notify 0\n", - "ts": 0.00586085 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12280900 - }, - "ts": 0.005875075 + "ts": 0.004394675 }, { "core_id": 0, @@ -2977,218725 +2694,61 @@ "params": { "irq_num": 30 }, - "ts": 0.005887375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0058961 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (332) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.005913525 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (332) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.005913525 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.005921475 + "ts": 0.004405525 }, { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], "core_id": 1, "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.0059318 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.00595055 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.0059633 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.005972075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, + "id": 6, "in_irq": false, - "params": {}, - "ts": 0.0059875 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, "params": { - "irq_num": 5 + "tid": 12254080 }, - "ts": 0.00661795 + "ts": 0.0044172 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 0.0066295 + "ts": 0.00442855 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, + "ctx_name": "main", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.006643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, "params": { - "irq_num": 5 + "tid": 12254080 }, - "ts": 0.0067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.006757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.006770775 + "ts": 0.004446675 }, { "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, + "ctx_name": "main", + "id": 49, + "in_irq": false, "params": { - "irq_num": 5 + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 }, - "ts": 0.00761795 + "ts": 0.004461 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.007643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.007756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0077706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.00861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.00864325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.008756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.00961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.00962955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.009643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.009756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.01061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.01063255 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.010646175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.010756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.01161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.011643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.011757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.011770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.01261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.012643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.012756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.01361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.01364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.013756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0137706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.01461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.01462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.014643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.014756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.01561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.015643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.015757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.015770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.01661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0166295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.016643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.016756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.01761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.01764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.017756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0177706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.01861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.01862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.018643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.018756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.01961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.019643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.019757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.019770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.02061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0206295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.020643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.020756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.02161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.02164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.021756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0217706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.02261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0226326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.022646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.022756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.02361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.023643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.023757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.023770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.02461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0246295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.024643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.024756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.02561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.02564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.025756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0257706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.02661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.02662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.026643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.026756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.02761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.027643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.027757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.027770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.02861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.028643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.028756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.02961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.02964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.029756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.03061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.03062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.030643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.030756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.03161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.031643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.031757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.031770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.03261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.032643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.032756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.03361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.033629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.033638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.033652975 - }, - { - "addr": "0x3ffb828c", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 4, - "ts": 0.03367565 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.033690725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.0337048 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.03374775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (360) example: Task[0x3ffb7f40]: allocated 4 bytes @ 0x3ffb828c\n", - "ts": 0.0337685 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (360) example: Task[0x3ffb7f40]: allocated 4 bytes @ 0x3ffb828c\n", - "ts": 0.0337685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.03377705 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.0337857 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.03379585 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.03380665 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.03381965 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.0338282 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.033836125 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.033844675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.0338573 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.033865675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.033874 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.033882875 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.033892275 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.03390155 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.033916375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (360) example: Task[0x3ffb8124]: free memory @ 0x3ffb828c\n", - "ts": 0.033964325 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (360) example: Task[0x3ffb8124]: free memory @ 0x3ffb828c\n", - "ts": 0.033964325 - }, - { - "addr": "0x3ffb828c", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.03398275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.0340005 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.03401325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.034022025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.03403745 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.03461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.034629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.03463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.034653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 8, - "ts": 0.03467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.034689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.0347037 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (361) example: Task[0x3ffb82a0]: allocated 8 bytes @ 0x3ffb87e4\n", - "ts": 0.034759525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (361) example: Task[0x3ffb82a0]: allocated 8 bytes @ 0x3ffb87e4\n", - "ts": 0.034759525 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0347712 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.03477985 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.034789125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.03479825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.034812925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.03482295 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.034831875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.03484035 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.034848375 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.034858275 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.034867325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0348758 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.0348853 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.034894425 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.034903525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.03491775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (361) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.0349658 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (361) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.0349658 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.03498115 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.0350028 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.0350155 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0350243 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.035039875 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.03561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.035629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0356388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.035652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 12, - "ts": 0.035676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.0356896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.035703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0357476 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (362) example: Task[0x3ffb8600]: allocated 12 bytes @ 0x3ffb87e4\n", - "ts": 0.03576865 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (362) example: Task[0x3ffb8600]: allocated 12 bytes @ 0x3ffb87e4\n", - "ts": 0.03576865 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.03577685 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.035785 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.035795725 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.0358065 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.035819525 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.035828225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.03583615 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.035844675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.0358575 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.0358659 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.035878125 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.035886175 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.035894625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.035904725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.035919675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (362) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.035967725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (362) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.035967725 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.035983075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.03600165 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.0360145 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.03602325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0360387 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.03661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0366295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.03664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.036756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.03761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.03762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.037643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.037756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0377706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.03861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.038643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.038757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.038770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.03961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.039643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.039756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.04061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.040632575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0406462 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.040756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.04161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.041643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.041757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.041770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.04261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.042643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.042756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.04361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.04364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.043756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0437706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.04461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.04462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.044643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.044756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.04561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.045643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.045757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.045770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.04661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0466295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.046643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.046756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.04761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.04764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.047756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0477706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.04861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.04862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.048643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.048756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.04961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.049643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.049757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.049770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.05061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0506295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.050643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.050756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.05161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.05164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.051756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0517706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.05261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.052631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.05264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.052756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.05361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.053643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.053757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.053770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.05461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0546295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.054643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.054756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.05561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.05564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.055756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0557706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.05661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.05662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.056643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.056756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.05761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.057643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.057757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.057770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.05861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.058643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.058756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.05961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.05964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.059756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.06061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.06062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.060643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.060756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.06161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.061643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.061757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.061770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.06261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.062643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.062756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.06361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.063629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.063638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.063652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 6, - "ts": 0.06367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.063692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.0637068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0637475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (390) example: Task[0x3ffb7f40]: allocated 6 bytes @ 0x3ffb87e4\n", - "ts": 0.063768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (390) example: Task[0x3ffb7f40]: allocated 6 bytes @ 0x3ffb87e4\n", - "ts": 0.063768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.063776875 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.063785525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.063795675 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.06380645 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.063819475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.063828 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.06383595 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.063844475 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.0638571 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.0638655 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.0638738 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.063882675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.063892075 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.063901375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.0639162 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (390) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.063964125 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (390) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.063964125 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.06398265 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.06400135 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.0640141 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.064022875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0640383 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.06461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.064629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.06463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.064653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 12, - "ts": 0.06467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.064689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.0647037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.064747575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (391) example: Task[0x3ffb82a0]: allocated 12 bytes @ 0x3ffb87e4\n", - "ts": 0.064768525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (391) example: Task[0x3ffb82a0]: allocated 12 bytes @ 0x3ffb87e4\n", - "ts": 0.064768525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0647802 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.0647884 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.064798825 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.0648097 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.06482265 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.06483135 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.064839275 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.064847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.06486055 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.064868925 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.064877225 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.064885975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.0648954 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.064904675 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.0649195 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (391) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.0649675 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (391) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.0649675 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.06498305 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.065004025 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.0650167 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0650255 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.065041075 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.06561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.065629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0656388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.065652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 18, - "ts": 0.065676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.0656896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.065703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0657476 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (392) example: Task[0x3ffb8600]: allocated 18 bytes @ 0x3ffb87e4\n", - "ts": 0.06576865 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (392) example: Task[0x3ffb8600]: allocated 18 bytes @ 0x3ffb87e4\n", - "ts": 0.06576865 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.06577685 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.065785 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.065795725 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.0658065 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.065819525 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.065828225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.06583615 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.065844675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.0658575 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.0658659 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.0658771 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.065885275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.06589365 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0659039 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.06591885 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (392) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.0659669 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (392) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.0659669 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.06598225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.066000825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.066013675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.066022425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.066037875 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.06661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0666295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.06664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.066756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.06761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.06762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.067643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.067756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0677706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.06861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.068643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.068757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.068770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.06961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.069643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.069756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.07061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.070632575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0706462 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.070756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.07161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.071643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.071757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.071770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.07261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.072643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.072756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.07361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.07364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.073756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0737706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.07461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.07462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.074643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.074756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.07561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.075643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.075757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.075770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.07661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0766295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.076643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.076756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.07761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.07764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.077756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0777706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.07861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.07862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.078643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.078756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.07961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.079643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.079757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.079770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.08061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0806295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.080643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.080756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.08161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.08164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.081756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0817706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.08261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0826326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.082646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.082756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.08361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.083643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.083757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.083770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.08461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0846295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.084643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.084756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.08561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.08564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.085756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0857706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.08661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.08662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.086643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.086756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.08761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.087643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.087757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.087770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.08861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.088643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.088756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.08961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.08964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.089756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.09061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.09062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.090643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.090756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.09161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.091643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.091757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.091770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.09261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.092643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.092756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.09361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.093629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.093638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.093652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 8, - "ts": 0.09367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.093692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.0937068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0937475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (420) example: Task[0x3ffb7f40]: allocated 8 bytes @ 0x3ffb87e4\n", - "ts": 0.093768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (420) example: Task[0x3ffb7f40]: allocated 8 bytes @ 0x3ffb87e4\n", - "ts": 0.093768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.093776875 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.093785525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.093795675 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.09380645 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.093819475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.093828 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.09383595 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.093844475 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.0938571 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.0938655 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.0938738 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.093882675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.093892075 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.093901375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.0939162 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (420) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.093964125 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (420) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.093964125 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.093982 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.0940007 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.09401345 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.094022225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.09403765 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.09461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.094629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.09463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.094653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 16, - "ts": 0.09467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.094689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.0947037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.094747575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (421) example: Task[0x3ffb82a0]: allocated 16 bytes @ 0x3ffb87e4\n", - "ts": 0.094768525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (421) example: Task[0x3ffb82a0]: allocated 16 bytes @ 0x3ffb87e4\n", - "ts": 0.094768525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.094779775 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.094787775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.094798525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.094809375 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.094822325 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.09483105 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.094838975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.094847525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.094860225 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.094868625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.094876925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.09488565 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.0948951 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.09490435 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.094919175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (421) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.094967175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (421) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.094967175 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.09498275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.0950043 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.095016975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.095025775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.09504135 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.09561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.095629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0956388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.095652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 24, - "ts": 0.095676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.0956896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.095703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0957476 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (422) example: Task[0x3ffb8600]: allocated 24 bytes @ 0x3ffb87e4\n", - "ts": 0.09576865 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (422) example: Task[0x3ffb8600]: allocated 24 bytes @ 0x3ffb87e4\n", - "ts": 0.09576865 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.09577685 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.095785 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.095795725 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.0958065 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.095819525 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.095828225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.09583615 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.095844675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.0958575 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.0958659 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.095878125 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.095886175 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.095894625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.095904725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.095919675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (422) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.095967725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (422) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.095967725 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.095983075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.09600165 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.0960145 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.09602325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0960387 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.09661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0966295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.09664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.096756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.09761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.09762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.097643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.097756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0977706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.09861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.098643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.098757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.098770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.09961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.099643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.099756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.10061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.100632575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1006462 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.100756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.10161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.101643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.101757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.101770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.10261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.102643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.102756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.10361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.10364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.103756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1037706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.10461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.10462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.104643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.104756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.10561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.105643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.105757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.105770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.10661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1066295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.106643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.106756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.10761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.10764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.107756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1077706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.10861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.10862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.108643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.108756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.10961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.109643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.109757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.109770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.11061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1106295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.110643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.110756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.11161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.11164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.111756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1117706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.11261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1126326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.112646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.112756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.11361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.113643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.113757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.113770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.11461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1146295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.114643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.114756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.11561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.11564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.115756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1157706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.11661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.11662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.116643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.116756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.11761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.117643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.117757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.117770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.11861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.118643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.118756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.11961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.11964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.119756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.12061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.12062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.120643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.120756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.12161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.121643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.121757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.121770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.12261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.122643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.122756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.12361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.123629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.123638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.123652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 10, - "ts": 0.12367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.12369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.123706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1237475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (450) example: Task[0x3ffb7f40]: allocated 10 bytes @ 0x3ffb87e4\n", - "ts": 0.1237691 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (450) example: Task[0x3ffb7f40]: allocated 10 bytes @ 0x3ffb87e4\n", - "ts": 0.1237691 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.123778325 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.1237867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1237971 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.123807875 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.1238209 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.1238296 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1238375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.12384605 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.123858775 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.12386715 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.123875425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.123884425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.1238938 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.123903025 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.12391795 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (450) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.123966 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (450) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.123966 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.123984475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.124003175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.124015925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1240247 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.124040125 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.12461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.124629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.12463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.124653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 20, - "ts": 0.12467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.124689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.1247037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.124747575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (451) example: Task[0x3ffb82a0]: allocated 20 bytes @ 0x3ffb87e4\n", - "ts": 0.124768525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (451) example: Task[0x3ffb82a0]: allocated 20 bytes @ 0x3ffb87e4\n", - "ts": 0.124768525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.124779775 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.124787775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.124798525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.124809375 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.124822325 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.12483105 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.124838975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.124847525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.124860225 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.124868625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.124876925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.12488565 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.1248951 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.12490435 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.124919175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (451) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.124967175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (451) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.124967175 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.12498275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.1250043 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.125016975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.125025775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.12504135 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.12561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.125629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1256388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.125652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 30, - "ts": 0.125676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.1256896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.125703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1257476 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (452) example: Task[0x3ffb8600]: allocated 30 bytes @ 0x3ffb87e4\n", - "ts": 0.12576865 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (452) example: Task[0x3ffb8600]: allocated 30 bytes @ 0x3ffb87e4\n", - "ts": 0.12576865 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.12577685 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.125785 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.125795725 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.1258065 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.125819525 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.125828225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.12583615 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.125844675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.1258575 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.1258659 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.125878125 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.125886175 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.125894625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.125904725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.125919675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (452) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.125967725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (452) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.125967725 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.125983075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.12600165 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.1260145 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.12602325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1260387 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.12661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1266295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.12664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.126756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.12761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.12762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.127643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.127756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1277706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.12861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.128643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.128757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.128770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.12961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.129643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.129756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.13061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.130632575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1306462 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.130756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.13161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.131643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.131757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.131770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.13261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.132643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.132756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.13361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.13364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.133756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1337706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.13461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.13462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.134643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.134756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.13561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.135643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.135757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.135770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.13661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1366295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.136643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.136756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.13761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.13764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.137756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1377706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.13861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.13862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.138643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.138756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.13961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.139643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.139757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.139770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.14061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1406295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.140643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.140756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.14161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.14164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.141756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1417706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.14261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1426326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.142646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.142756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.14361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.143643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.143757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.143770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.14461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1446295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.144643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.144756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.14561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.14564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.145756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1457706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.14661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.14662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.146643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.146756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.14761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.147643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.147757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.147770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.14861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.148643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.148756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.14961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.14964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.149756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.15061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.15062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.150643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.150756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.15161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.151643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.151757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.151770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.15261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.152643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.152756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.15361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.153629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.153638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.153652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 12, - "ts": 0.15367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.15369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.153706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1537475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (480) example: Task[0x3ffb7f40]: allocated 12 bytes @ 0x3ffb87e4\n", - "ts": 0.1537691 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (480) example: Task[0x3ffb7f40]: allocated 12 bytes @ 0x3ffb87e4\n", - "ts": 0.1537691 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.153778325 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.1537867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1537971 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.153807875 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.1538209 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.1538296 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1538375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.15384605 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.153858775 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.15386715 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.153875425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.153884425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.1538938 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.153903025 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.15391795 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (480) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.153966 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (480) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.153966 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.153984475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.154003175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.154015925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1540247 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.154040125 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.15461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.154629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.15463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.154653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 24, - "ts": 0.15467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.154689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.1547037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.154747575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (481) example: Task[0x3ffb82a0]: allocated 24 bytes @ 0x3ffb87e4\n", - "ts": 0.154768525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (481) example: Task[0x3ffb82a0]: allocated 24 bytes @ 0x3ffb87e4\n", - "ts": 0.154768525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.154779775 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.154787775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.154798525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.154809375 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.154822325 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.15483105 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.154838975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.154847525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.154860225 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.154868625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.154876925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.15488565 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.1548951 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.15490435 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.154919175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (481) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.154967175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (481) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.154967175 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.15498275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.1550043 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.155016975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.155025775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.15504135 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.15561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.155629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1556388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.155652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 36, - "ts": 0.155676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.1556896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.155703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1557476 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (482) example: Task[0x3ffb8600]: allocated 36 bytes @ 0x3ffb87e4\n", - "ts": 0.15576865 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (482) example: Task[0x3ffb8600]: allocated 36 bytes @ 0x3ffb87e4\n", - "ts": 0.15576865 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.15577685 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.155785 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.155795725 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.1558065 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.155819525 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.155828225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.15583615 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.155844675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.1558575 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.1558659 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.155878125 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.155886175 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.155894625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.155904725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.155919675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (482) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.155967725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (482) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.155967725 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.155983075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.15600165 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.1560145 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.15602325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1560387 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.15661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1566295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.15664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.156756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.15761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.15762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.157643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.157756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1577706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.15861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.158643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.158757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.158770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.15961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.159643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.159756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.16061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.160632575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1606462 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.160756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.16161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.161643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.161757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.161770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.16261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.162643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.162756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.16361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.16364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.163756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1637706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.16461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.16462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.164643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.164756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.16561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.165643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.165757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.165770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.16661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1666295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.166643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.166756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.16761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.16764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.167756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1677706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.16861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.16862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.168643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.168756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.16961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.169643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.169757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.169770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.17061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1706295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.170643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.170756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.17161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.17164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.171756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1717706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.17261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1726326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.172646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.172756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.17361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.173643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.173757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.173770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.17461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1746295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.174643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.174756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.17561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.17564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.175756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1757706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.17661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.17662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.176643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.176756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.17761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.177643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.177757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.177770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.17861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.178643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.178756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.17961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.17964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.179756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.18061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.18062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.180643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.180756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.18161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.181643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.181757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.181770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.18261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.182643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.182756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.18361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.183629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.183638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.183652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 14, - "ts": 0.18367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.18369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.183706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1837475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (510) example: Task[0x3ffb7f40]: allocated 14 bytes @ 0x3ffb87e4\n", - "ts": 0.1837691 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (510) example: Task[0x3ffb7f40]: allocated 14 bytes @ 0x3ffb87e4\n", - "ts": 0.1837691 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.183778325 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.1837867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1837971 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.183807875 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.1838209 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.1838296 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1838375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.18384605 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.183858775 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.18386715 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.183875425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.183884425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.1838938 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.183903025 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.18391795 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (510) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.183966 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (510) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.183966 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.183984475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.184003175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.184015925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1840247 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.184040125 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.18461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.184629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.18463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.184653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 28, - "ts": 0.18467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.184689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.1847037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.184747575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (511) example: Task[0x3ffb82a0]: allocated 28 bytes @ 0x3ffb87e4\n", - "ts": 0.184768525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (511) example: Task[0x3ffb82a0]: allocated 28 bytes @ 0x3ffb87e4\n", - "ts": 0.184768525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.184779775 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.184787775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.184798525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.184809375 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.184822325 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.18483105 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.184838975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.184847525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.184860225 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.184868625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.184876925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.18488565 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.1848951 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.18490435 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.184919175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (511) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.184967175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (511) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.184967175 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.18498275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.1850043 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.185016975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.185025775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.18504135 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.18561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.185629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1856388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.185652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 42, - "ts": 0.185676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.1856896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.185703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1857476 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (512) example: Task[0x3ffb8600]: allocated 42 bytes @ 0x3ffb87e4\n", - "ts": 0.18576865 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (512) example: Task[0x3ffb8600]: allocated 42 bytes @ 0x3ffb87e4\n", - "ts": 0.18576865 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.18577685 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.185785 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.185795725 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.1858065 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.185819525 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.185828225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.18583615 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.185844675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.1858575 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.1858659 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.185878125 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.185886175 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.185894625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.185904725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.185919675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (512) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.185967725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (512) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.185967725 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.185983075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.18600165 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.1860145 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.18602325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1860387 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.18661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1866295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.18664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.186756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.18761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.18762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.187643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.187756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1877706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.18861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.188643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.188757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.188770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.18961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.189643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.189756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.19061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.190632575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1906462 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.190756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.19161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.191643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.191757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.191770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.19261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.192643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.192756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.19361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.19364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.193756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1937706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.19461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.19462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.194643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.194756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.19561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.195643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.195757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.195770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.19661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1966295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.196643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.196756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.19761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.19764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.197756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1977706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.19861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.19862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.198643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.198756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.19961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.1996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.199643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.199757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.199770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.20061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2006295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.200643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.200756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.20161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.20164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.201756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2017706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.20261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2026326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.202646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.202756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.20361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.203643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.203757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.203770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.20461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2046295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.204643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.204756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.20561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.20564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.205756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2057706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.20661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.20662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.206643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.206756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.20761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.207643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.207757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.207770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.20861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.208643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.208756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.20961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.20964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.209756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.21061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.21062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.210643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.210756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.21161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.211643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.211757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.211770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.21261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.212643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.212756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.21361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.213629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.213638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.213652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 16, - "ts": 0.21367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.21369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.213706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2137475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (540) example: Task[0x3ffb7f40]: allocated 16 bytes @ 0x3ffb87e4\n", - "ts": 0.2137691 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (540) example: Task[0x3ffb7f40]: allocated 16 bytes @ 0x3ffb87e4\n", - "ts": 0.2137691 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.213778325 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.2137867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2137971 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.213807875 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.2138209 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.2138296 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2138375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.21384605 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.213858775 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.21386715 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.213875425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.213884425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.2138938 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.213903025 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.21391795 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (540) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.213966 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (540) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.213966 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.213984475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.214003175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.214015925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2140247 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.214040125 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.21461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.214629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.21463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.214653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 32, - "ts": 0.21467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.214689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.2147037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.214747575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (541) example: Task[0x3ffb82a0]: allocated 32 bytes @ 0x3ffb87e4\n", - "ts": 0.214768525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (541) example: Task[0x3ffb82a0]: allocated 32 bytes @ 0x3ffb87e4\n", - "ts": 0.214768525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.214779775 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.214787775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.214798525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.214809375 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.214822325 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.21483105 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.214838975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.214847525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.214860225 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.214868625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.214876925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.21488565 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.2148951 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.21490435 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.214919175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (541) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.214967175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (541) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.214967175 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.21498275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.2150043 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.215016975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.215025775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.21504135 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.21561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.215629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2156388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.215652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 48, - "ts": 0.215676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.2156896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.215703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2157476 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (542) example: Task[0x3ffb8600]: allocated 48 bytes @ 0x3ffb87e4\n", - "ts": 0.21576865 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (542) example: Task[0x3ffb8600]: allocated 48 bytes @ 0x3ffb87e4\n", - "ts": 0.21576865 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.21577685 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.215785 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.215795725 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.2158065 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.215819525 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.215828225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.21583615 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.215844675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.2158575 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.2158659 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.215878125 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.215886175 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.215894625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.215904725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.215919675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (542) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.215967725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (542) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.215967725 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.215983075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.21600165 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.2160145 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.21602325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2160387 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.21661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2166295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.21664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.216756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.21761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.21762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.217643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.217756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2177706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.21861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.218643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.218757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.218770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.21961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.219643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.219756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.22061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.220632575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2206462 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.220756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.22161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.221643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.221757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.221770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.22261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.222643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.222756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.22361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.22364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.223756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2237706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.22461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.22462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.224643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.224756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.22561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.225643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.225757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.225770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.22661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2266295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.226643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.226756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.22761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.22764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.227756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2277706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.22861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.22862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.228643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.228756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.22961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.229643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.229757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.229770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.23061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2306295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.230643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.230756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.23161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.23164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.231756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2317706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.23261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2326326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.232646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.232756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.23361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.233643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.233757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.233770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.23461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2346295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.234643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.234756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.23561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.23564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.235756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2357706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.23661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.23662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.236643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.236756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.23761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.237643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.237757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.237770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.23861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.238643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.238756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.23961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.23964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.239756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.24061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.24062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.240643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.240756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.24161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.241643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.241757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.241770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.24261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.242643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.242756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.24361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.243629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.243638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.243652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 18, - "ts": 0.24367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.24369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.243706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2437475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (570) example: Task[0x3ffb7f40]: allocated 18 bytes @ 0x3ffb87e4\n", - "ts": 0.2437691 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (570) example: Task[0x3ffb7f40]: allocated 18 bytes @ 0x3ffb87e4\n", - "ts": 0.2437691 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.243778325 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.2437867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2437971 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.243807875 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.2438209 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.2438296 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2438375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.24384605 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.243858775 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.24386715 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.243875425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.243884425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.2438938 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.243903025 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.24391795 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (570) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.243966 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (570) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.243966 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.243985825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.244004525 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.2440173 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.24402605 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2440415 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.24461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.244629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.24463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.244653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 36, - "ts": 0.24467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.244689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.2447037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.244747575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (571) example: Task[0x3ffb82a0]: allocated 36 bytes @ 0x3ffb87e4\n", - "ts": 0.244768525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (571) example: Task[0x3ffb82a0]: allocated 36 bytes @ 0x3ffb87e4\n", - "ts": 0.244768525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.244779775 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.244787775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2447986 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.244809475 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.244822425 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.244831125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.24483905 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.2448476 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.244860325 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.2448687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.244877 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.24488575 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.244895175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.24490445 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.244919275 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (571) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.244967275 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (571) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.244967275 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.244982825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.245004375 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.24501705 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.24502585 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.245041425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.24561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.245629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2456388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.245652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 54, - "ts": 0.245676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.2456896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.245703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2457476 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (572) example: Task[0x3ffb8600]: allocated 54 bytes @ 0x3ffb87e4\n", - "ts": 0.24576865 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (572) example: Task[0x3ffb8600]: allocated 54 bytes @ 0x3ffb87e4\n", - "ts": 0.24576865 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.24577685 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.245785 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.245795725 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.2458065 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.245819525 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.245828225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.24583615 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.245844675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.2458575 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.2458659 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.245878175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2458862 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.24589465 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.245904775 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.2459197 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (572) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.24596775 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (572) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.24596775 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.245983125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.2460017 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.246014525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2460233 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.246038725 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.24661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2466295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.24664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.246756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.24761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.24762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.247643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.247756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2477706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.24861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.248643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.248757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.248770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.24961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.249643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.249756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.25061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.25063195 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.250645575 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.250756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.25161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.251643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.251757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.251770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.25261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.252643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.252756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.25361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.25364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.253756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2537706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.25461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.25462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.254643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.254756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.25561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.255643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.255757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.255770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.25661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2566295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.256643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.256756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.25761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.25764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.257756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2577706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.25861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.25862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.258643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.258756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.25961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.259643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.259757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.259770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.26061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2606295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.260643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.260756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.26161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.26164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.261756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2617706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.26261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2626326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.262646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.262756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.26361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.263643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.263757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.263770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.26461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2646295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.264643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.264756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.26561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.26564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.265756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2657706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.26661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.26662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.266643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.266756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.26761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.267643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.267757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.267770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.26861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.268643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.268756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.26961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.26964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.269756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.27061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.27062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.270643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.270756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.27161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.271643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.271757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.271770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.27261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.272643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.272756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.27361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.273629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.273638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.273652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 20, - "ts": 0.27367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.273692625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.2737067 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2737475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (600) example: Task[0x3ffb7f40]: allocated 20 bytes @ 0x3ffb87e4\n", - "ts": 0.2737684 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (600) example: Task[0x3ffb7f40]: allocated 20 bytes @ 0x3ffb87e4\n", - "ts": 0.2737684 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.273777675 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.273785875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.273796675 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.273807475 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.273820475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.273829175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.273837075 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.273845625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.27385835 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.27386675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.273875025 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.273884025 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.2738934 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.273902625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.27391755 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (600) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.2739656 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (600) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.2739656 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.27398405 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.27400275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.2740155 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.274024275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2740397 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.27461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.274629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.27463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.274653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 40, - "ts": 0.27467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.274689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.2747037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.274747575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (601) example: Task[0x3ffb82a0]: allocated 40 bytes @ 0x3ffb87e4\n", - "ts": 0.274768525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (601) example: Task[0x3ffb82a0]: allocated 40 bytes @ 0x3ffb87e4\n", - "ts": 0.274768525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.274779775 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.274787775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2747986 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.274809475 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.274822425 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.274831125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.27483905 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.2748476 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.274860325 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.2748687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.274877 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.27488575 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.274895175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.27490445 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.274919275 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (601) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.274967275 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (601) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.274967275 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.274982825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.275004375 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.27501705 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.27502585 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.275041425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.27561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.275629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2756388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.275652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 60, - "ts": 0.275676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.2756896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.275703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2757476 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (602) example: Task[0x3ffb8600]: allocated 60 bytes @ 0x3ffb87e4\n", - "ts": 0.27576865 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (602) example: Task[0x3ffb8600]: allocated 60 bytes @ 0x3ffb87e4\n", - "ts": 0.27576865 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.27577685 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.275785 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.275795825 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.2758066 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.275819625 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.275828325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.27583625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.275844775 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.2758576 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.275866 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.275878275 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2758863 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.27589475 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.275904875 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.2759198 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (602) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.27596785 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (602) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.27596785 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.275983225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.2760018 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.276014625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2760234 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.276038825 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.27661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2766295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.27664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.276756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.27761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.27762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.277643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.277756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2777706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.27861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.278643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.278757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.278770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.27961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.279643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.279756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.28061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.28063195 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.280645575 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.280756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.28161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.281643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.281757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.281770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.28261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.282643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.282756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.28361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.28364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.283756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2837706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.28461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.28462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.284643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.284756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.28561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.285643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.285757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.285770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.28661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2866295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.286643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.286756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.28761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.28764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.287756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2877706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.28861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.28862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.288643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.288756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.28961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.289643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.289757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.289770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.29061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2906295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.290643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.290756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.29161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.29164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.291756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2917706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.29261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2926326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.292646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.292756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.29361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.293643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.293757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.293770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.29461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2946295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.294643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.294756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.29561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.29564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.295756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2957706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.29661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.29662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.296643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.296756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.29761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.297643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.297757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.297770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.29861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.298643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.298756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.29961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.29964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.299756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.30061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.30062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.300643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.300756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.30161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.301643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.301757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.301770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.30261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.302643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.302756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.30361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.303629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.303638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.303652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 22, - "ts": 0.30367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.303692625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.3037067 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3037475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (630) example: Task[0x3ffb7f40]: allocated 22 bytes @ 0x3ffb87e4\n", - "ts": 0.3037684 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (630) example: Task[0x3ffb7f40]: allocated 22 bytes @ 0x3ffb87e4\n", - "ts": 0.3037684 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.303777675 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.303785875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.303796575 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.30380735 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.303820375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.303829075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.303836975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.303845525 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.30385825 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.303866625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.303874975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.303884075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.303893 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.303902575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.3039175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (630) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.30396555 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (630) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.30396555 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.303984 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.3040027 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.30401545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.304024225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.30403965 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.30461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.304629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.30463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.304653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 44, - "ts": 0.30467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.304689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.3047037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.304747575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (631) example: Task[0x3ffb82a0]: allocated 44 bytes @ 0x3ffb87e4\n", - "ts": 0.304768525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (631) example: Task[0x3ffb82a0]: allocated 44 bytes @ 0x3ffb87e4\n", - "ts": 0.304768525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.304779775 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.304787775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3047986 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.304809475 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.304822425 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.304831125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.30483905 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.3048476 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.304860325 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.3048687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.30487695 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.304885675 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.304895125 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.304904375 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.3049192 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (631) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.3049672 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (631) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.3049672 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.304982775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.3050043 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.305017 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3050258 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.305041375 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.30561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.305629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3056388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.305652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 66, - "ts": 0.305676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.3056896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.305703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.30574755 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (632) example: Task[0x3ffb8600]: allocated 66 bytes @ 0x3ffb87e4\n", - "ts": 0.3057685 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (632) example: Task[0x3ffb8600]: allocated 66 bytes @ 0x3ffb87e4\n", - "ts": 0.3057685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3057767 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.30578485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.30579555 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.30580635 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.30581935 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.30582805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.305835975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.305844525 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.305857325 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.305865725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.30587795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.305885975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.305894425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.30590455 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.305919475 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (632) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.305967525 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (632) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.305967525 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.3059829 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.306001475 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.3060143 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.306023075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3060385 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.30661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3066295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.30664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.306756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.30761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.30762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.307643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.307756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3077706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.30861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.308643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.308757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.308770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.30961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.309643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.309756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.31061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.31063195 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.310645575 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.310756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.31161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.311643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.311757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.311770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.31261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.312643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.312756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.31361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.31364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.313756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3137706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.31461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.31462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.314643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.314756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.31561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.315643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.315757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.315770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.31661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3166295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.316643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.316756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.31761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.31764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.317756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3177706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.31861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.31862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.318643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.318756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.31961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.319643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.319757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.319770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.32061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3206295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.320643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.320756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.32161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.32164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.321756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3217706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.32261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3226326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.322646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.322756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.32361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.323643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.323757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.323770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.32461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3246295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.324643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.324756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.32561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.32564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.325756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3257706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.32661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.32662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.326643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.326756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.32761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.327643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.327757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.327770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.32861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.328643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.328756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.32961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.32964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.329756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.33061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.33062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.330643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.330756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.33161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.331643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.331757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.331770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.33261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.332643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.332756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.33361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.333629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.333638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.333652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 24, - "ts": 0.33367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.333692625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.3337067 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3337475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (660) example: Task[0x3ffb7f40]: allocated 24 bytes @ 0x3ffb87e4\n", - "ts": 0.3337685 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (660) example: Task[0x3ffb7f40]: allocated 24 bytes @ 0x3ffb87e4\n", - "ts": 0.3337685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.333777725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.333785875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.333796475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.333807275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.333820275 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.333828975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.333836875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.333845425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.33385815 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.33386655 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.333874825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.333883825 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.3338932 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.333902425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.33391735 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (660) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.33396545 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (660) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.33396545 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.3339839 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.3340026 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.33401535 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.334024125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.33403955 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.33461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.334629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.33463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.334653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 48, - "ts": 0.33467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.334689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.3347037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.334747575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (661) example: Task[0x3ffb82a0]: allocated 48 bytes @ 0x3ffb87e4\n", - "ts": 0.334768525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (661) example: Task[0x3ffb82a0]: allocated 48 bytes @ 0x3ffb87e4\n", - "ts": 0.334768525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3347796 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.334787625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.33479845 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.334809325 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.334822275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.334830975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3348389 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.33484745 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.334860175 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.33486855 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.33487685 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3348856 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.334895025 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3349043 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.334919125 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (661) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.334967175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (661) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.334967175 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.334982725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.335004275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.33501695 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.33502575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.335041325 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.33561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.335629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3356388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.335652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 72, - "ts": 0.335676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.3356896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.335703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3357476 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (662) example: Task[0x3ffb8600]: allocated 72 bytes @ 0x3ffb87e4\n", - "ts": 0.33576855 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (662) example: Task[0x3ffb8600]: allocated 72 bytes @ 0x3ffb87e4\n", - "ts": 0.33576855 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.33577675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.3357849 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3357956 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.3358064 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.3358194 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.3358281 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.335836025 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.335844575 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.335857375 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.335865775 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.33587805 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3358861 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.33589455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.33590465 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.3359196 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (662) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.3359677 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (662) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.3359677 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.33598305 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.336001625 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.336014475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.336023225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.336038675 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.33661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3366295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.33664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.336756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.33761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.33762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.337643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.337756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3377706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.33861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.338643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.338757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.338770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.33961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.339643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.339756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.34061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.34063195 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.340645575 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.340756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.34161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.341643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.341757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.341770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.34261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.342643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.342756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.34361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.34364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.343756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3437706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.34461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.34462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.344643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.344756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.34561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.345643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.345757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.345770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.34661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3466295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.346643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.346756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.34761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.34764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.347756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3477706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.34861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.34862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.348643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.348756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.34961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.349643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.349757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.349770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.35061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3506295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.350643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.350756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.35161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.35164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.351756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3517706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.35261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3526326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.352646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.352756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.35361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.353643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.353757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.353770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.35461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3546295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.354643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.354756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.35561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.35564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.355756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3557706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.35661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.35662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.356643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.356756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.35761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.357643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.357757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.357770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.35861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.358643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.358756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.35961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.35964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.359756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.36061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.36062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.360643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.360756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.36161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.361643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.361757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.361770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.36261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.362643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.362756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.36361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.363629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.363638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.363652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 26, - "ts": 0.36367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.363692625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.3637067 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3637475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (690) example: Task[0x3ffb7f40]: allocated 26 bytes @ 0x3ffb87e4\n", - "ts": 0.3637685 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (690) example: Task[0x3ffb7f40]: allocated 26 bytes @ 0x3ffb87e4\n", - "ts": 0.3637685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.363777725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.363785875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.363796475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.363807275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.363820275 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.363828975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.363836875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.363845425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.36385815 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.36386655 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.363874825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.363883825 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.3638932 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.363902425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.36391735 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (690) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.36396545 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (690) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.36396545 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.3639839 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.3640026 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.36401535 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.364024125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.36403955 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.36461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.364629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.36463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.364653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 52, - "ts": 0.36467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.364689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.3647037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.364747575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (691) example: Task[0x3ffb82a0]: allocated 52 bytes @ 0x3ffb87e4\n", - "ts": 0.364768525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (691) example: Task[0x3ffb82a0]: allocated 52 bytes @ 0x3ffb87e4\n", - "ts": 0.364768525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3647796 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.364787625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.36479845 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.364809325 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.364822275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.364830975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3648389 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.36484745 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.364860175 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.36486855 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.36487685 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3648856 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.364895025 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3649043 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.364919125 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (691) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.364967175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (691) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.364967175 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.364982725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.365004275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.36501695 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.36502575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.365041325 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.36561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.365629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3656388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.365652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 78, - "ts": 0.365676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.3656896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.365703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3657476 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (692) example: Task[0x3ffb8600]: allocated 78 bytes @ 0x3ffb87e4\n", - "ts": 0.36576855 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (692) example: Task[0x3ffb8600]: allocated 78 bytes @ 0x3ffb87e4\n", - "ts": 0.36576855 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.36577675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.3657849 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3657956 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.3658064 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.3658194 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.3658281 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.365836025 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.365844575 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.365857375 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.365865775 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.36587805 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3658861 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.36589455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.36590465 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.3659196 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (692) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.3659677 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (692) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.3659677 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.36598305 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.366001625 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.366014475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.366023225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.366038675 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.36661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3666295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.36664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.366756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.36761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.36762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.367643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.367756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3677706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.36861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.368643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.368757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.368770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.36961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.369643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.369756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.37061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.37063195 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.370645575 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.370756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.37161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.371643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.371757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.371770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.37261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.372643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.372756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.37361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.37364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.373756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3737706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.37461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.37462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.374643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.374756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.37561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.375643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.375757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.375770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.37661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3766295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.376643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.376756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.37761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.37764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.377756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3777706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.37861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.37862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.378643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.378756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.37961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.379643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.379757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.379770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.38061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3806295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.380643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.380756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.38161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.38164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.381756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3817706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.38261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3826326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.382646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.382756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.38361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.383643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.383757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.383770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.38461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3846295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.384643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.384756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.38561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.38564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.385756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3857706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.38661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.38662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.386643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.386756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.38761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.387643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.387757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.387770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.38861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.388643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.388756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.38961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.38964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.389756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.39061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.39062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.390643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.390756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.39161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.391643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.391757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.391770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.39261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.392643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.392756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.39361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.393629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.393638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.393652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 28, - "ts": 0.39367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.393692625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.3937067 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3937475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (720) example: Task[0x3ffb7f40]: allocated 28 bytes @ 0x3ffb87e4\n", - "ts": 0.3937685 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (720) example: Task[0x3ffb7f40]: allocated 28 bytes @ 0x3ffb87e4\n", - "ts": 0.3937685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.393777725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.393785875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.393796475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.393807275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.393820275 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.393828975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.393836875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.393845425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.39385815 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.39386655 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.393874825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.393883825 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.3938932 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.393902425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.39391735 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (720) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.39396545 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (720) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.39396545 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.3939839 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.3940026 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.39401535 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.394024125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.39403955 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.39461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.394629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.39463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.394653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 56, - "ts": 0.39467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.394689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.3947037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.394747575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (721) example: Task[0x3ffb82a0]: allocated 56 bytes @ 0x3ffb87e4\n", - "ts": 0.394768525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (721) example: Task[0x3ffb82a0]: allocated 56 bytes @ 0x3ffb87e4\n", - "ts": 0.394768525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3947796 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.394787625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.39479845 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.394809325 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.394822275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.394830975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3948389 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.39484745 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.394860175 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.39486855 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.39487685 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3948856 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.394895025 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3949043 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.394919125 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (721) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.394967175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (721) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.394967175 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.394982725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.395004275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.39501695 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.39502575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.395041325 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.39561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.395629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3956388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.395652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 84, - "ts": 0.395676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.3956896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.395703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3957476 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (722) example: Task[0x3ffb8600]: allocated 84 bytes @ 0x3ffb87e4\n", - "ts": 0.39576855 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (722) example: Task[0x3ffb8600]: allocated 84 bytes @ 0x3ffb87e4\n", - "ts": 0.39576855 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.39577675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.3957849 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3957956 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.3958064 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.3958194 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.3958281 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.395836025 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.395844575 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.395857375 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.395865775 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.39587805 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3958861 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.39589455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.39590465 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.3959196 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (722) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.3959677 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (722) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.3959677 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.39598305 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.396001625 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.396014475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.396023225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.396038675 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.39661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3966295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.39664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.396756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.39761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.39762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.397643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.397756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3977706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.39861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.398643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.398757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.398770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.39961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.3996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.399643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.3997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.399756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.3997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.40061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.40063195 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.400645575 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.400756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.40161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.401643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.401757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.401770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.40261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.402643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.402756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.40361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.40364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.403756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4037706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.40461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.40462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.404643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.404756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.40561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.405643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.405757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.405770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.40661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4066295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.406643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.406756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.40761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.40764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.407756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4077706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.40861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.40862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.408643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.408756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.40961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.409643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.409757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.409770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.41061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4106295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.410643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.410756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.41161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.41164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.411756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4117706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.41261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4126326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.412646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.412756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.41361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.413643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.413757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.413770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.41461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4146295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.414643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.414756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.41561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.41564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.415756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4157706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.41661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.41662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.416643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.416756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.41761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.417643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.417757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.417770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.41861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.418643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.418756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.41961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.41964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.419756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.42061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.42062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.420643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.420756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.42161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.421643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.421757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.421770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.42261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.422643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.422756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.42361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.423629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.423638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.423652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 30, - "ts": 0.42367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.423692625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.4237067 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4237475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (750) example: Task[0x3ffb7f40]: allocated 30 bytes @ 0x3ffb87e4\n", - "ts": 0.4237685 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (750) example: Task[0x3ffb7f40]: allocated 30 bytes @ 0x3ffb87e4\n", - "ts": 0.4237685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.423777725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.423785875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.423796475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.423807275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.423820275 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.423828975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.423836875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.423845425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.42385815 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.42386655 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.423874825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.423883825 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.4238932 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.423902425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.42391735 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (750) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.42396545 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (750) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.42396545 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.4239839 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.4240026 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.42401535 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.424024125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.42403955 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.42461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.424629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.42463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.424653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 60, - "ts": 0.42467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.424689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.4247037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.424747575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (751) example: Task[0x3ffb82a0]: allocated 60 bytes @ 0x3ffb87e4\n", - "ts": 0.424768525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (751) example: Task[0x3ffb82a0]: allocated 60 bytes @ 0x3ffb87e4\n", - "ts": 0.424768525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4247796 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.424787625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.42479845 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.424809325 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.424822275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.424830975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4248389 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.42484745 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.424860175 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.42486855 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.42487685 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4248856 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.424895025 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4249043 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.424919125 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (751) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.424967175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (751) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.424967175 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.424982725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.425004275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.42501695 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.42502575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.425041325 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.42561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.425629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4256388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.425652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 90, - "ts": 0.425676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.4256896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.425703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4257476 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (752) example: Task[0x3ffb8600]: allocated 90 bytes @ 0x3ffb87e4\n", - "ts": 0.42576855 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (752) example: Task[0x3ffb8600]: allocated 90 bytes @ 0x3ffb87e4\n", - "ts": 0.42576855 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.42577675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.4257849 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4257956 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.4258064 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.4258194 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.4258281 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.425836025 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.425844575 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.425857375 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.425865775 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.42587805 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4258861 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.42589455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.42590465 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.4259196 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (752) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.4259677 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (752) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.4259677 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.42598305 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.426001625 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.426014475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.426023225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.426038675 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.42661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4266295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.42664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.426756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.42761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.42762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.427643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.427756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4277706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.42861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.428643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.428757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.428770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.42961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.429643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.429756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.43061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.43063195 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.430645575 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.430756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.43161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.431643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.431757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.431770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.43261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.432643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.432756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.43361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.43364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.433756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4337706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.43461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.43462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.434643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.434756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.43561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.435643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.435757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.435770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.43661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4366295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.436643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.436756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.43761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.43764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.437756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4377706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.43861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.43862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.438643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.438756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.43961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.439643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.439757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.439770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.44061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4406295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.440643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.440756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.44161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.44164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.441756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4417706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.44261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4426326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.442646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.442756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.44361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.443643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.443757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.443770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.44461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4446295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.444643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.444756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.44561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.44564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.445756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4457706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.44661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.44662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.446643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.446756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.44761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.447643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.447757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.447770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.44861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.448643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.448756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.44961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.44964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.449756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.45061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.45062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.450643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.450756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.45161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.451643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.451757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.451770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.45261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.452643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.452756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.45361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.453629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.453638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.453652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 32, - "ts": 0.45367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.453692625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.4537067 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4537475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (780) example: Task[0x3ffb7f40]: allocated 32 bytes @ 0x3ffb87e4\n", - "ts": 0.4537685 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (780) example: Task[0x3ffb7f40]: allocated 32 bytes @ 0x3ffb87e4\n", - "ts": 0.4537685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.453777725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.453785875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.453796475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.453807275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.453820275 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.453828975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.453836875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.453845425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.45385815 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.45386655 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.453874825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.453883825 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.4538932 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.453902425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.45391735 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (780) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.45396545 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (780) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.45396545 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.4539839 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.4540026 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.45401535 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.454024125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.45403955 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.45461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.454629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.45463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.454653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 64, - "ts": 0.45467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.454689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.4547037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4547476 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (781) example: Task[0x3ffb82a0]: allocated 64 bytes @ 0x3ffb87e4\n", - "ts": 0.454768575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (781) example: Task[0x3ffb82a0]: allocated 64 bytes @ 0x3ffb87e4\n", - "ts": 0.454768575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.45477965 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.454787675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.454798525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.454809375 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.454822325 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.45483105 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.454838975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.454847525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.454860225 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.454868625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.454876925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.45488565 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.4548951 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.45490435 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.454919175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (781) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.454967225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (781) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.454967225 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.4549828 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.455004325 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.455017025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.455025825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4550414 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.45561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.455629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4556388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.455652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 96, - "ts": 0.455676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.4556896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.455703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4557476 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (782) example: Task[0x3ffb8600]: allocated 96 bytes @ 0x3ffb87e4\n", - "ts": 0.45576855 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (782) example: Task[0x3ffb8600]: allocated 96 bytes @ 0x3ffb87e4\n", - "ts": 0.45576855 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.45577675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.4557849 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4557956 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.4558064 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.4558194 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.4558281 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.455836025 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.455844575 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.455857375 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.455865775 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.45587805 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4558861 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.45589455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.45590465 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.4559196 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (782) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.4559677 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (782) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.4559677 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.45598305 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.456001625 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.456014475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.456023225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.456038675 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.45661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4566295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.45664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.456756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.45761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.45762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.457643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.457756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4577706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.45861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.458643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.458757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.458770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.45961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.459643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.459756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.46061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.46063195 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.460645575 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.460756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.46161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.461643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.461757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.461770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.46261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.462643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.462756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.46361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.46364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.463756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4637706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.46461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.46462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.464643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.464756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.46561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.465643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.465757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.465770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.46661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4666295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.466643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.466756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.46761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.46764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.467756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4677706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.46861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.46862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.468643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.468756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.46961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.469643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.469757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.469770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.47061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4706295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.470643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.470756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.47161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.47164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.471756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4717706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.47261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4726326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.472646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.472756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.47361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.473643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.473757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.473770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.47461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4746295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.474643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.474756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.47561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.47564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.475756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4757706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.47661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.47662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.476643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.476756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.47761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.477643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.477757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.477770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.47861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.478643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.478756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.47961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.47964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.479756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.48061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.48062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.480643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.480756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.48161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.481643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.481757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.481770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.48261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.482643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.482756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.48361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.483629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.483638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.483652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 34, - "ts": 0.48367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.483692625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.4837067 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4837475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (810) example: Task[0x3ffb7f40]: allocated 34 bytes @ 0x3ffb87e4\n", - "ts": 0.4837685 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (810) example: Task[0x3ffb7f40]: allocated 34 bytes @ 0x3ffb87e4\n", - "ts": 0.4837685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.483777725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.483785875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.483796475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.483807275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.483820275 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.483828975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.483836875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.483845425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.48385815 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.48386655 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.483874825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.483883825 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.4838932 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.483902425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.48391735 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (810) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.48396545 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (810) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.48396545 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.4839839 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.4840026 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.48401535 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.484024125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.48403955 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.48461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.484629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.48463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.484653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 68, - "ts": 0.48467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.484689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.4847037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4847476 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (811) example: Task[0x3ffb82a0]: allocated 68 bytes @ 0x3ffb87e4\n", - "ts": 0.484768575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (811) example: Task[0x3ffb82a0]: allocated 68 bytes @ 0x3ffb87e4\n", - "ts": 0.484768575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.48477965 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.484787675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.484798525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.484809375 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.484822325 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.48483105 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.484838975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.484847525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.484860225 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.484868625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.484876925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.48488565 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.4848951 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.48490435 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.484919175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (811) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.484967225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (811) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.484967225 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.4849828 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.485004325 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.485017025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.485025825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4850414 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.48561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.485629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4856388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.485652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 102, - "ts": 0.485676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.4856896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.485703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4857475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (812) example: Task[0x3ffb8600]: allocated 102 bytes @ 0x3ffb87e4\n", - "ts": 0.485768975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (812) example: Task[0x3ffb8600]: allocated 102 bytes @ 0x3ffb87e4\n", - "ts": 0.485768975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.485778 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.4857864 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.485796825 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.485807675 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.485820625 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.485829325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.48583725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.4858458 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.485858525 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.485866925 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.485879175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4858872 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.48589565 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.485905775 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.4859207 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (812) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.4859688 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (812) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.4859688 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.485984175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.48600275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.486015575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.48602435 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.486039775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.48661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4866295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.48664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.486756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.48761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.48762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.487643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.487756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4877706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.48861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.488643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.488757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.488770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.48961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.489643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.489756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.49061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.490632575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4906462 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.490756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.49161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.491643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.491757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.491770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.49261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.492643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.492756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.49361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.49364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.493756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4937706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.49461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.49462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.494643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.494756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.49561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.495643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.495757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.495770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.49661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4966295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.496643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.496756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.49761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.49764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.497756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4977706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.49861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.49862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.498643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.498756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.4987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.49961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.4996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.499643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.4997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.499757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.499770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.50061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5006295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.500643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.500756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.50161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.50164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.501756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5017706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.50261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5026326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.502646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.502756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.50361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.503643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.503757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.503770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.50461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5046295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.504643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.504756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.50561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.50564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.505756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5057706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.50661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.50662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.506643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.506756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.50761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.507643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.507757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.507770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.50861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.508643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.508756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.50961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.50964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.509756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.51061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.51062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.510643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.510756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.51161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.511643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.511757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.511770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.51261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.512643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.512756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.51361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.513629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.513638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.513652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 36, - "ts": 0.51367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.51369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.513706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5137475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (840) example: Task[0x3ffb7f40]: allocated 36 bytes @ 0x3ffb87e4\n", - "ts": 0.51376915 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (840) example: Task[0x3ffb7f40]: allocated 36 bytes @ 0x3ffb87e4\n", - "ts": 0.51376915 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5137782 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.5137866 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.513797 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.513807775 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.5138208 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.5138295 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5138374 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.51384595 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.513858675 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.51386705 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.513875325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.513884325 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.5138937 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.513902925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.51391785 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (840) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.51396595 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (840) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.51396595 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.513984425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.514003125 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.514015875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.51402465 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.514040075 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.51461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.514629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.51463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.514653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 72, - "ts": 0.51467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.514689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.5147037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5147476 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (841) example: Task[0x3ffb82a0]: allocated 72 bytes @ 0x3ffb87e4\n", - "ts": 0.514768575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (841) example: Task[0x3ffb82a0]: allocated 72 bytes @ 0x3ffb87e4\n", - "ts": 0.514768575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.514779675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.5147877 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.51479845 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.514809325 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.514822275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.514830975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5148389 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.51484745 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.514860175 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.51486855 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.51487685 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5148856 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.514895025 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5149043 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.514919125 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (841) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.514967175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (841) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.514967175 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.514982725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.515004275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.515016975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.515025775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.51504135 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.51561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.515629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5156388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.515652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 108, - "ts": 0.515676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.5156896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.515703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5157475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (842) example: Task[0x3ffb8600]: allocated 108 bytes @ 0x3ffb87e4\n", - "ts": 0.515768975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (842) example: Task[0x3ffb8600]: allocated 108 bytes @ 0x3ffb87e4\n", - "ts": 0.515768975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.515778 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.5157864 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.515796825 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.515807675 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.515820625 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.515829325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.51583725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.5158458 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.515858525 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.515866925 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.51587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.515887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.515895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.515905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.51592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (842) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.51596885 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (842) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.51596885 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.515984225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.5160028 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.516015625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5160244 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.516039825 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.51661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5166295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.51664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.516756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.51761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.51762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.517643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.517756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5177706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.51861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.518643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.518757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.518770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.51961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.519643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.519756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.52061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.52063395 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.520647575 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.520756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.52161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.521643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.521757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.521770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.52261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.522643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.522756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.52361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.52364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.523756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5237706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.52461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.52462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.524643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.524756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.52561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.525643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.525757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.525770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.52661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5266295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.526643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.526756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.52761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.52764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.527756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5277706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.52861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.52862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.528643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.528756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.52961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.529643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.529757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.529770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.53061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5306295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.530643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.530756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.53161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.53164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.531756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5317706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.53261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5326326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.532646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.532756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.53361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.533643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.533757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.533770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.53461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5346295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.534643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.534756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.53561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.53564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.535756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5357706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.53661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.53662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.536643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.536756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.53761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.537643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.537757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.537770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.53861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.538643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.538756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.53961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.53964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.539756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.54061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.54062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.540643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.540756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.54161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.541643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.541757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.541770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.54261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.542643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.542756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.54361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.543629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.543638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.543652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 38, - "ts": 0.54367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.543692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.5437068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5437475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (870) example: Task[0x3ffb7f40]: allocated 38 bytes @ 0x3ffb87e4\n", - "ts": 0.543768825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (870) example: Task[0x3ffb7f40]: allocated 38 bytes @ 0x3ffb87e4\n", - "ts": 0.543768825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.54377805 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.5437864 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.543796925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.5438077 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.543820725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.543829425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.543837325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.543845875 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.5438586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.543866975 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.54387525 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.54388425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.543893625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.54390285 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.543917775 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (870) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.543965875 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (870) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.543965875 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.54398375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.54400245 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.544015225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.544023975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.544039425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.54461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.544629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.54463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.544653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 76, - "ts": 0.54467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.544689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.5447037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5447476 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (871) example: Task[0x3ffb82a0]: allocated 76 bytes @ 0x3ffb87e4\n", - "ts": 0.544768575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (871) example: Task[0x3ffb82a0]: allocated 76 bytes @ 0x3ffb87e4\n", - "ts": 0.544768575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.544780275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.5447886 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.54479905 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.5448099 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.54482285 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.544831575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5448395 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.54484805 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.54486075 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.54486915 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.54487745 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.544886175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.544895625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.544904875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.5449197 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (871) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.54496775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (871) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.54496775 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.544983325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.545004275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.545016975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.545025775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.54504135 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.54561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.545629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5456388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.545652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 114, - "ts": 0.545676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.5456896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.545703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5457475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (872) example: Task[0x3ffb8600]: allocated 114 bytes @ 0x3ffb87e4\n", - "ts": 0.545768975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (872) example: Task[0x3ffb8600]: allocated 114 bytes @ 0x3ffb87e4\n", - "ts": 0.545768975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.545778 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.5457864 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.545796825 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.545807675 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.545820625 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.545829325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.54583725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.5458458 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.545858525 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.545866925 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.54587815 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.545886325 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.5458947 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.545904975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.5459199 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (872) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.545968 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (872) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.545968 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.545983375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.54600195 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.546014775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.54602355 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.546038975 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.54661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5466295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.54664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.546756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.54761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.54762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.547643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.547756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5477706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.54861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.548643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.548757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.548770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.54961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.549643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.549756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.55061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.550632575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5506462 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.550756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.55161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.551643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.551757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.551770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.55261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.552643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.552756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.55361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.55364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.553756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5537706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.55461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.55462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.554643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.554756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.55561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.555643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.555757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.555770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.55661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5566295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.556643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.556756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.55761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.55764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.557756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5577706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.55861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.55862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.558643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.558756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.55961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.559643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.559757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.559770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.56061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5606295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.560643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.560756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.56161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.56164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.561756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5617706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.56261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.562631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.56264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.562756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.56361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.563643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.563757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.563770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.56461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5646295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.564643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.564756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.56561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.56564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.565756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5657706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.56661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.56662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.566643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.566756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.56761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.567643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.567757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.567770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.56861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.568643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.568756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.56961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.56964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.569756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.57061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.57062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.570643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.570756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.57161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.571643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.571757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.571770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.57261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.572643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.572756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.57361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.573629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.573638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.573652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 40, - "ts": 0.57367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.573692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.5737068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5737475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (900) example: Task[0x3ffb7f40]: allocated 40 bytes @ 0x3ffb87e4\n", - "ts": 0.573768825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (900) example: Task[0x3ffb7f40]: allocated 40 bytes @ 0x3ffb87e4\n", - "ts": 0.573768825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.57377805 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.5737864 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.57379695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.573807725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.57382075 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.57382945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.57383735 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.5738459 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.573858625 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.573867 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.573875275 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.573884275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.57389365 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.573902875 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.5739178 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (900) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.5739659 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (900) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.5739659 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.57398445 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.57400315 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.574015925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.574024675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.574040125 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.57461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.574629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.57463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.574653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 80, - "ts": 0.57467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.574689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.5747037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5747476 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (901) example: Task[0x3ffb82a0]: allocated 80 bytes @ 0x3ffb87e4\n", - "ts": 0.574768575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (901) example: Task[0x3ffb82a0]: allocated 80 bytes @ 0x3ffb87e4\n", - "ts": 0.574768575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.57477975 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.5747879 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5747987 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.574809575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.574822525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.574831225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.57483915 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.5748477 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.574860425 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.5748688 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.5748771 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.57488585 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.574895275 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.57490455 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.574919375 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (901) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.574967425 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (901) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.574967425 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.574982975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.575004625 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.5750173 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5750261 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.575041675 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.57561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.575629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5756388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.575652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 120, - "ts": 0.575676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.5756896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.575703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5757475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (902) example: Task[0x3ffb8600]: allocated 120 bytes @ 0x3ffb87e4\n", - "ts": 0.575768975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (902) example: Task[0x3ffb8600]: allocated 120 bytes @ 0x3ffb87e4\n", - "ts": 0.575768975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.575778 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.5757864 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.575796925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.575807775 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.575820725 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.575829425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.57583735 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.5758459 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.575858625 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.575867025 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.575879275 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5758873 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.57589575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.575905875 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.5759208 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (902) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.5759689 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (902) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.5759689 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.575984275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.57600285 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.576015675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.57602445 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.576039875 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.57661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5766295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.57664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.576756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.57761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.57762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.577643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.577756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5777706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.57861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.578643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.578757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.578770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.57961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.579643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.579756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.58061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.58063195 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.580645575 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.580756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.58161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.581643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.581757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.581770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.58261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.582643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.582756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.58361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.58364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.583756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5837706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.58461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.58462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.584643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.584756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.58561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.585643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.585757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.585770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.58661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5866295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.586643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.586756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.58761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.58764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.587756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5877706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.58861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.58862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.588643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.588756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.58961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.589643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.589757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.589770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.59061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5906295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.590643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.590756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.59161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.59164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.591756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5917706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.59261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5926326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.592646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.592756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.59361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.593643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.593757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.593770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.59461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5946295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.594643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.594756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.59561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.59564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.595756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5957706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.59661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.59662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.596643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.596756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.59761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.597643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.597757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.597770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.59861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.598643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.598756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.59961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.5996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.59964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.5997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.599756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.5997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.60061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.60062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.600643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.600756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.60161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.601643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.601757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.601770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.60261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.602643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.602756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.60361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.603629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.603638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.603652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 42, - "ts": 0.60367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.603692625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.6037067 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6037475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (930) example: Task[0x3ffb7f40]: allocated 42 bytes @ 0x3ffb87e4\n", - "ts": 0.6037685 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (930) example: Task[0x3ffb7f40]: allocated 42 bytes @ 0x3ffb87e4\n", - "ts": 0.6037685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.603777725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.603785875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.603796475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.603807275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.603820275 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.603828975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.603836875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.603845425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.60385815 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.60386655 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.603874875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.603884 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.6038929 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.603902475 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.6039174 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (930) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.6039655 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (930) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.6039655 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.60398395 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.60400265 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.604015425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.604024175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.604039625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.60461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.604629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.60463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.604653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 84, - "ts": 0.60467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.604689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.6047037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6047476 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (931) example: Task[0x3ffb82a0]: allocated 84 bytes @ 0x3ffb87e4\n", - "ts": 0.604768575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (931) example: Task[0x3ffb82a0]: allocated 84 bytes @ 0x3ffb87e4\n", - "ts": 0.604768575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.60477965 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.604787675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.604798525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.604809375 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.604822325 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.60483105 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.604838975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.604847525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.604860225 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.604868625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.604876875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6048856 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.604895025 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6049043 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.604919125 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (931) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.604967175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (931) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.604967175 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.604982725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.605004275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.60501695 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.60502575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.605041325 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.60561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.605629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6056388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.605652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 126, - "ts": 0.605676925 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.6056896 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.605703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6057475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (932) example: Task[0x3ffb8600]: allocated 126 bytes @ 0x3ffb87e4\n", - "ts": 0.605768975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (932) example: Task[0x3ffb8600]: allocated 126 bytes @ 0x3ffb87e4\n", - "ts": 0.605768975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.605778 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.6057864 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.605796825 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.605807675 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.605820625 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.605829325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.60583725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.6058458 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.605858525 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.605866925 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.605879125 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.605887175 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.605895625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.605905725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.605920675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (932) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.605968775 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (932) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.605968775 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.605984125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.6060027 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.60601555 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6060243 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.60603975 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.60661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6066295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.60664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.606756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.60761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.60762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.607643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.607756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6077706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.60861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.608643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.608757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.608770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.60961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.609643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.609756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.61061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.610632575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6106462 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.610756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.61161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.611643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.611757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.611770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.61261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.612643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.612756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.61361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.61364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.613756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6137706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.61461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.61462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.614643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.614756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.61561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.615643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.615757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.615770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.61661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6166295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.616643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.616756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.61761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.61764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.617756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6177706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.61861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.61862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.618643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.618756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.61961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.619643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.619757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.619770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.62061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6206295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.620643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.620756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.62161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.62164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.621756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6217706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.62261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6226326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.622646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.622756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.62361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.623643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.623757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.623770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.62461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6246295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.624643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.624756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.62561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.62564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.625756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6257706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.62661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.62662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.626643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.626756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.62761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.627643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.627757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.627770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.62861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.628643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.628756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.62961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.62964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.629756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.63061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.63062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.630643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.630756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.63161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.631643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.631757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.631770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.63261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.632643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.632756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.63361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.633629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.633638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.633652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 44, - "ts": 0.63367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.63369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.633706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6337475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (960) example: Task[0x3ffb7f40]: allocated 44 bytes @ 0x3ffb87e4\n", - "ts": 0.63376915 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (960) example: Task[0x3ffb7f40]: allocated 44 bytes @ 0x3ffb87e4\n", - "ts": 0.63376915 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6337782 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.6337866 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.633797 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.633807775 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.6338208 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.6338295 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6338374 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.63384595 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.633858675 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.63386705 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.633875325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.633884325 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.6338937 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.633902925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.63391785 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (960) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.63396595 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (960) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.63396595 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.633984425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.634003125 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.634015875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.63402465 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.634040075 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.63461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.634629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.63463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.634653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 88, - "ts": 0.63467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.634689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.6347037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6347476 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (961) example: Task[0x3ffb82a0]: allocated 88 bytes @ 0x3ffb87e4\n", - "ts": 0.634768575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (961) example: Task[0x3ffb82a0]: allocated 88 bytes @ 0x3ffb87e4\n", - "ts": 0.634768575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.634779675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.6347877 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.63479845 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.634809325 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.634822275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.634830975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6348389 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.63484745 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.634860175 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.63486855 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.63487685 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6348856 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.634895025 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6349043 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.634919125 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (961) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.634967175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (961) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.634967175 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.634982725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.635004275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.635016975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.635025775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.63504135 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.63561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.635629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6356388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.635652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 132, - "ts": 0.6356768 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.6356895 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.6357035 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6357475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (962) example: Task[0x3ffb8600]: allocated 132 bytes @ 0x3ffb87e4\n", - "ts": 0.635768725 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (962) example: Task[0x3ffb8600]: allocated 132 bytes @ 0x3ffb87e4\n", - "ts": 0.635768725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.63577795 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.63578615 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.63579705 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.63580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.635820825 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.635829525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.63583745 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.6358461 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.635858775 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.635867025 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.6358793 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.635887325 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.635895775 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.635905875 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.6359208 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (962) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.6359689 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (962) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4\n", - "ts": 0.6359689 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.635984275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.63600225 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.6360151 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.63602385 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6360393 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.63661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6366295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.63664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.636756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.63761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.63762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.637643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.637756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6377706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.63861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.638643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.638757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.638770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.63961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.639643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.639756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.64061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.640632575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6406462 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.640756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.64161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.641643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.641757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.641770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.64261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.642643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.642756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.64361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.64364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.643756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6437706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.64461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.64462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.644643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.644756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.64561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.645643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.645757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.645770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.64661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6466295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.646643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.646756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.64761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.64764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.647756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6477706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.64861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.64862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.648643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.648756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.64961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.649643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.649757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.649770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.65061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6506295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.650643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.650756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.65161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.65164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.651756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6517706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.65261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.652631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.65264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.652756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.65361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.653643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.653757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.653770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.65461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6546295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.654643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.654756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.65561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.65564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.655756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6557706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.65661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.65662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.656643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.656756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.65761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.657643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.657757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.657770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.65861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.658643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.658756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.65961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.65964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.659756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.66061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.66062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.660643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.660756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.66161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.661643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.661757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.661770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.66261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.662643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.662756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.66361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.663629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.663638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.663652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 46, - "ts": 0.66367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.663692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.6637068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6637475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (990) example: Task[0x3ffb7f40]: allocated 46 bytes @ 0x3ffb87e4\n", - "ts": 0.663768825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (990) example: Task[0x3ffb7f40]: allocated 46 bytes @ 0x3ffb87e4\n", - "ts": 0.663768825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.66377805 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.6637864 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.663796925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.6638077 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.663820725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.663829425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.663837325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.663845875 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.6638586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.663866975 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.66387525 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.66388425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.663893625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.66390285 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.663917775 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (990) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.663965875 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (990) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.663965875 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.663984425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.664003125 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.6640159 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.66402465 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6640401 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.66461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.664629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.66463885 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.664653025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 92, - "ts": 0.66467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.664689675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.6647037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6647476 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (991) example: Task[0x3ffb82a0]: allocated 92 bytes @ 0x3ffb87e4\n", - "ts": 0.664768575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (991) example: Task[0x3ffb82a0]: allocated 92 bytes @ 0x3ffb87e4\n", - "ts": 0.664768575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.66477975 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.6647879 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6647987 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.664809575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.664822525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.664831225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.66483915 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.6648477 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.664860425 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.6648688 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.6648771 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.66488585 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.664895275 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.66490455 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.664919375 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (991) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.664967425 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (991) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.664967425 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.664982975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.665004625 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.6650173 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6650261 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.665041675 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.66561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.665629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6656388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.665652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 138, - "ts": 0.665676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.665689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.665703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6657475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (992) example: Task[0x3ffb8600]: allocated 138 bytes @ 0x3ffb4b10\n", - "ts": 0.665769075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (992) example: Task[0x3ffb8600]: allocated 138 bytes @ 0x3ffb4b10\n", - "ts": 0.665769075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.665778125 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.6657865 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.665797 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.6658078 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.665820775 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.665829475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6658374 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.66584605 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.665858725 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.665866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.665879125 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.665887125 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.66589555 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.66590565 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.665920575 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (992) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.665968675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (992) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.665968675 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.66598405 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.66600205 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.6660149 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.66602365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6660391 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.66661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6666295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.66664325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.666756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.66761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.66762955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.667643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.667756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6677706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.66861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.668643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.668757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.668770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.66961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.669643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.669756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.67061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.670632575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6706462 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.670756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.67161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.671643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.671757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.671770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.67261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.672643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.672756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.67361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.67364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.673756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6737706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.67461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.67462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.674643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.674756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.67561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.675643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.675757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.675770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.67661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6766295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.676643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.676756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.67761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.67764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.677756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6777706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.67861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.67862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.678643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.678756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.67961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.679643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.679757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.679770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.68061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6806295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.680643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.680756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.68161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.68164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.681756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6817706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.68261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6826326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.682646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.682756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.68361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.683643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.683757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.683770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.68461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6846295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.684643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.684756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.68561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.68564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.685756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6857706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.68661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.68662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.686643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.686756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.68761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.687643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.687757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.687770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.68861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.688643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.688756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.68961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.68964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.689756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.69061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.69062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.690643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.690756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.69161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.691643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.691757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.691770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.69261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.692643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.692756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.69361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.693629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.693638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.693652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 48, - "ts": 0.69367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.69369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.693706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6937475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1020) example: Task[0x3ffb7f40]: allocated 48 bytes @ 0x3ffb87e4\n", - "ts": 0.693769175 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1020) example: Task[0x3ffb7f40]: allocated 48 bytes @ 0x3ffb87e4\n", - "ts": 0.693769175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6937774 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.69378555 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.69379635 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.693807225 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.693820175 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.693828875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.693836775 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.693845325 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.69385805 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.693866425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.693874725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.693883475 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.693892925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.693902125 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.69391695 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1020) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.69396625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1020) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.69396625 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.693984675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.69400325 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.694015925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.694024725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6940403 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.69461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.694629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6946388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.694652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 96, - "ts": 0.69467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.694689625 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.6947037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6947475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1021) example: Task[0x3ffb82a0]: allocated 96 bytes @ 0x3ffb87e4\n", - "ts": 0.694769 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1021) example: Task[0x3ffb82a0]: allocated 96 bytes @ 0x3ffb87e4\n", - "ts": 0.694769 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6947799 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.6947879 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6947988 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.6948096 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.694822575 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.694831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6948392 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.69484785 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.694860525 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.694868775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.694877075 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6948861 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.69489485 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.69490475 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.694919575 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1021) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.694968925 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1021) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.694968925 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.6949844 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.695006 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.6950187 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6950275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.695043075 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.69561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.695629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6956388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.695652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 144, - "ts": 0.695676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.695689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.695703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6957475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1022) example: Task[0x3ffb8600]: allocated 144 bytes @ 0x3ffb4b10\n", - "ts": 0.69576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1022) example: Task[0x3ffb8600]: allocated 144 bytes @ 0x3ffb4b10\n", - "ts": 0.69576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6957782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.6957867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.695797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.69580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.695820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.6958294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.695837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.69584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.6958586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.695866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.6958792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.695887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.695895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6959058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.695920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1022) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.695970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1022) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.695970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.69598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.696003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.6960164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.696025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.696040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.69661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.69662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.696643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.696756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.69761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.697643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.697757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.697770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.69861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.698643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.698756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.69961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.6996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.69964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.6997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.699756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.6997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.70061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.700631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.70064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.700756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.70161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.701643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.701757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.701770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.70261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.702643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.702756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.70361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.70364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.703756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7037706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.70461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.70462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.704643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.704756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.70561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.705643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.705757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.705770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.70661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7066295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.706643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.706756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.70761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.70764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.707756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7077706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.70861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.70862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.708643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.708756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.70961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.709643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.709757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.709770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.71061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7106295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.710643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.710756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.71161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.71164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.711756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7117706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.71261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7126326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.712646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.712756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.71361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.713643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.713757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.713770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.71461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7146295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.714643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.714756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.71561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.71564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.715756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7157706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.71661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.71662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.716643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.716756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.71761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.717643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.717757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.717770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.71861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.718643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.718756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.71961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.71964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.719756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.72061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.72062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.720643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.720756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.72161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.721643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.721757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.721770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.72261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.722643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.722756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.72361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.723629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.723638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.723652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 50, - "ts": 0.72367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.72369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.723706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7237475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1050) example: Task[0x3ffb7f40]: allocated 50 bytes @ 0x3ffb87e4\n", - "ts": 0.723769175 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1050) example: Task[0x3ffb7f40]: allocated 50 bytes @ 0x3ffb87e4\n", - "ts": 0.723769175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7237774 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.72378555 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.72379635 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.723807225 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.723820175 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.723828875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.723836775 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.723845325 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.72385805 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.723866425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.723874725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.723883475 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.723892925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.723902125 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.72391695 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1050) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.72396625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1050) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.72396625 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.723984675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.72400325 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.724015925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.724024725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7240403 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.72461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.724629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7246388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.724652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 100, - "ts": 0.72467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.724689625 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.7247037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7247475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1051) example: Task[0x3ffb82a0]: allocated 100 bytes @ 0x3ffb87e4\n", - "ts": 0.724769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1051) example: Task[0x3ffb82a0]: allocated 100 bytes @ 0x3ffb87e4\n", - "ts": 0.724769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.724780075 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.724789075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.724798975 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.72480975 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.724822775 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.7248313 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.724839275 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.72484785 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.7248605 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.724868875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.7248772 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.724886075 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.72489545 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.72490465 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.724919475 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1051) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.724968725 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1051) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.724968725 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.724984325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.72500595 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.72501865 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.72502745 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.725043025 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.72561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.725629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7256388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.725652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 150, - "ts": 0.725676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.725689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.725703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7257475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1052) example: Task[0x3ffb8600]: allocated 150 bytes @ 0x3ffb4b10\n", - "ts": 0.72576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1052) example: Task[0x3ffb8600]: allocated 150 bytes @ 0x3ffb4b10\n", - "ts": 0.72576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7257782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.7257867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.725797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.72580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.725820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.7258294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.725837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.72584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.7258586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.725866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.725878175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.72588635 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.725894725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.725904975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.725919925 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1052) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.725969275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1052) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.725969275 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.72598465 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.726002775 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.7260156 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.72602435 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7260398 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.72661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.72662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.726643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.726756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.72761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.727643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.727757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.727770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.72861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.728643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.728756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.72961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.72964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.729756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.73061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7306326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.730646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.730756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.73161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.731643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.731757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.731770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.73261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.732643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.732756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.73361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.73364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.733756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7337706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.73461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.73462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.734643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.734756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.73561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.735643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.735757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.735770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.73661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7366295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.736643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.736756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.73761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.73764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.737756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7377706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.73861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.73862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.738643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.738756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.73961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.739643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.739757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.739770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.74061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7406295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.740643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.740756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.74161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.74164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.741756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7417706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.74261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7426326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.742646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.742756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.74361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.743643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.743757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.743770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.74461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7446295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.744643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.744756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.74561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.74564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.745756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7457706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.74661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.74662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.746643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.746756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.74761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.747643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.747757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.747770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.74861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.748643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.748756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.74961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.74964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.749756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.75061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.75062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.750643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.750756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.75161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.751643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.751757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.751770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.75261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.752643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.752756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.75361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.753629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.753638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.753652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 52, - "ts": 0.75367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.753692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.7537068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7537475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1080) example: Task[0x3ffb7f40]: allocated 52 bytes @ 0x3ffb87e4\n", - "ts": 0.753768925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1080) example: Task[0x3ffb7f40]: allocated 52 bytes @ 0x3ffb87e4\n", - "ts": 0.753768925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.753777525 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.7537862 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.75379635 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.7538072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.75382015 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.753828875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.753836775 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.753845325 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.753858025 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.753866425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.753874725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.75388345 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.7538929 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7539021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.753916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1080) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.75396625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1080) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.75396625 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.7539841 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.75400265 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.75401535 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.75402415 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.754039725 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.75461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.754629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7546388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.754652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 104, - "ts": 0.75467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.754689625 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.7547037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7547475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1081) example: Task[0x3ffb82a0]: allocated 104 bytes @ 0x3ffb87e4\n", - "ts": 0.754769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1081) example: Task[0x3ffb82a0]: allocated 104 bytes @ 0x3ffb87e4\n", - "ts": 0.754769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.754781275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.754789775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.75480015 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.754810925 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.75482395 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.754832475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.75484045 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.754849025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.754861675 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.75487005 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.754878375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.75488725 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.754896625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.754905825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.75492065 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1081) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.7549699 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1081) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.7549699 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.7549855 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.755007125 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.7550198 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7550286 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.755044175 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.75561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.755629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7556388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.755652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 156, - "ts": 0.755676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.755689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.755703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7557475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1082) example: Task[0x3ffb8600]: allocated 156 bytes @ 0x3ffb4b10\n", - "ts": 0.75576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1082) example: Task[0x3ffb8600]: allocated 156 bytes @ 0x3ffb4b10\n", - "ts": 0.75576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7557782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.7557867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.755797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.75580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.755820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.7558294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.755837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.75584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.7558586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.755866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.75587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.755887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.755895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.755905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.75592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1082) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.7559701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1082) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.7559701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.755985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.7560036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.756016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7560252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.75604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.75661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.75662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.756643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.756756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.75761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.757643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.757757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.757770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.75861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.758643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.758756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.75961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.75964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.759756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.76061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7606326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.760646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.760756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.76161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.761643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.761757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.761770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.76261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.762643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.762756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.76361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.76364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.763756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7637706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.76461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.76462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.764643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.764756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.76561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.765643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.765757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.765770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.76661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7666295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.766643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.766756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.76761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.76764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.767756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7677706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.76861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.76862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.768643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.768756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.76961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.769643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.769757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.769770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.77061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7706295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.770643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.770756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.77161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.77164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.771756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7717706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.77261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.772631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.77264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.772756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.77361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.773643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.773757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.773770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.77461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7746295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.774643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.774756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.77561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.77564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.775756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7757706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.77661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.77662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.776643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.776756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.77761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.777643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.777757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.777770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.77861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.778643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.778756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.77961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.77964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.779756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.78061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.78062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.780643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.780756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.78161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.781643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.781757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.781770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.78261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.782643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.782756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.78361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.783629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.783638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.783652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 54, - "ts": 0.78367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.783692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.7837068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7837475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1110) example: Task[0x3ffb7f40]: allocated 54 bytes @ 0x3ffb87e4\n", - "ts": 0.783768925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1110) example: Task[0x3ffb7f40]: allocated 54 bytes @ 0x3ffb87e4\n", - "ts": 0.783768925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.783777525 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.7837862 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.78379635 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.7838072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.78382015 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.783828875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.783836775 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.783845325 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.783858025 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.783866425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.783874725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.78388345 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.7838929 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7839021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.783916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1110) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.78396625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1110) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.78396625 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.783984675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.784003225 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.784015925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.784024725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7840403 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.78461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.784629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7846388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.784652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 108, - "ts": 0.78467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.784689625 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.7847037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7847475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1111) example: Task[0x3ffb82a0]: allocated 108 bytes @ 0x3ffb87e4\n", - "ts": 0.784769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1111) example: Task[0x3ffb82a0]: allocated 108 bytes @ 0x3ffb87e4\n", - "ts": 0.784769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.784781275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.784789775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.78480015 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.784810925 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.78482395 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.784832475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.78484045 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.784849025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.784861675 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.78487005 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.784878375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.78488725 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.784896625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.784905825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.78492065 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1111) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.7849699 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1111) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.7849699 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.7849855 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.785007025 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.785019725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.785028525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7850441 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.78561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.785629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7856388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.785652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 162, - "ts": 0.785676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.785689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.785703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7857475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1112) example: Task[0x3ffb8600]: allocated 162 bytes @ 0x3ffb4b10\n", - "ts": 0.78576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1112) example: Task[0x3ffb8600]: allocated 162 bytes @ 0x3ffb4b10\n", - "ts": 0.78576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7857782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.7857867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.785797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.78580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.785820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.7858294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.785837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.78584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.7858586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.785866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.78587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.785887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.785895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.785905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.78592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1112) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.7859701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1112) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.7859701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.785985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.7860036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.786016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7860252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.78604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.78661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.78662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.786643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.786756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.78761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.787643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.787757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.787770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.78861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.788643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.788756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.78961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.78964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.789756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.79061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7906326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.790646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.790756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.79161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.791643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.791757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.791770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.79261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.792643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.792756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.79361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.79364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.793756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7937706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.79461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.79462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.794643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.794756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.79561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.795643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.795757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.795770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.79661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7966295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.796643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.796756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.79761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.79764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.797756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7977706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.79861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.79862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.798643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.798756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.7987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.79961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.7996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.799643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.7997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.799757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.799770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.80061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8006295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.800643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.800756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.80161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.80164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.801756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8017706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.80261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8026326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.802646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.802756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.80361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.803643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.803757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.803770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.80461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8046295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.804643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.804756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.80561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.80564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.805756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8057706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.80661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.80662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.806643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.806756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.80761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.807643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.807757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.807770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.80861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.808643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.808756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.80961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.80964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.809756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.81061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.81062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.810643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.810756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.81161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.811643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.811757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.811770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.81261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.812643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.812756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.81361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.813629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.813638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.813652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 56, - "ts": 0.81367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.813692625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.8137067 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8137475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1140) example: Task[0x3ffb7f40]: allocated 56 bytes @ 0x3ffb87e4\n", - "ts": 0.8137689 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1140) example: Task[0x3ffb7f40]: allocated 56 bytes @ 0x3ffb87e4\n", - "ts": 0.8137689 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.813777825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.813786325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8137964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.81380725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.8138202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.813828925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.813836825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.813845375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.813858075 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.813866475 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.813874775 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8138835 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.81389295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.81390215 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.813916975 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1140) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.8139663 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1140) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.8139663 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.8139847 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.814003275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.81401595 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.81402475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.814040325 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.81461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.814629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8146388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.814652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 112, - "ts": 0.81467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.814689625 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.8147037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8147475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1141) example: Task[0x3ffb82a0]: allocated 112 bytes @ 0x3ffb87e4\n", - "ts": 0.814769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1141) example: Task[0x3ffb82a0]: allocated 112 bytes @ 0x3ffb87e4\n", - "ts": 0.814769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.814783625 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.814791875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.814802625 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.814813425 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.814826425 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.814834975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.814842925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.8148515 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.81486415 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.81487255 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.81488085 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.814889725 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.814899125 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8149083 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.814923125 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1141) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.814972375 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1141) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.814972375 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.814987975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.815009525 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.8150222 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.815031 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.815046575 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.81561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.815629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8156388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.815652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 168, - "ts": 0.815676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.815689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.815703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8157475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1142) example: Task[0x3ffb8600]: allocated 168 bytes @ 0x3ffb4b10\n", - "ts": 0.81576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1142) example: Task[0x3ffb8600]: allocated 168 bytes @ 0x3ffb4b10\n", - "ts": 0.81576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8157782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.8157867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.815797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.81580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.815820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.8158294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.815837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.81584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.8158586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.815866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.81587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.815887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.815895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.815905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.81592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1142) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.8159701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1142) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.8159701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.815985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.8160036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.816016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8160252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.81604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.81661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.81662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.816643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.816756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.81761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.817643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.817757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.817770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.81861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.818643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.818756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.81961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.81964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.819756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.82061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8206326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.820646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.820756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.82161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.821643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.821757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.821770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.82261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.822643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.822756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.82361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.82364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.823756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8237706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.82461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.82462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.824643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.824756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.82561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.825643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.825757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.825770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.82661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8266295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.826643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.826756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.82761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.82764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.827756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8277706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.82861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.82862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.828643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.828756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.82961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.829643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.829757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.829770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.83061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8306295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.830643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.830756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.83161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.83164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.831756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8317706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.83261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8326326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.832646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.832756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.83361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.833643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.833757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.833770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.83461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8346295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.834643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.834756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.83561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.83564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.835756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8357706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.83661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.83662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.836643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.836756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.83761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.837643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.837757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.837770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.83861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.838643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.838756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.83961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.83964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.839756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.84061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.84062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.840643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.840756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.84161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.841643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.841757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.841770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.84261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.842643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.842756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.84361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.843629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.843638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.843652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 58, - "ts": 0.84367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.843692625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.8437067 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8437475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1170) example: Task[0x3ffb7f40]: allocated 58 bytes @ 0x3ffb87e4\n", - "ts": 0.8437689 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1170) example: Task[0x3ffb7f40]: allocated 58 bytes @ 0x3ffb87e4\n", - "ts": 0.8437689 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.843777825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.843786325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8437964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.84380725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.8438202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.843828925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.843836825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.843845375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.843858075 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.843866475 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.843874775 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8438835 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.84389295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.84390215 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.843916975 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1170) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.8439663 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1170) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.8439663 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.8439847 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.844003275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.84401595 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.84402475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.844040325 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.84461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.844629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8446388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.844652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 116, - "ts": 0.84467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.844689625 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.8447037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8447475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1171) example: Task[0x3ffb82a0]: allocated 116 bytes @ 0x3ffb87e4\n", - "ts": 0.844769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1171) example: Task[0x3ffb82a0]: allocated 116 bytes @ 0x3ffb87e4\n", - "ts": 0.844769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.844781275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.844789775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.84480015 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.844810925 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.84482395 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.844832475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.84484045 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.844849025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.844861675 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.84487005 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.844878375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.84488725 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.844896625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.844905825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.84492065 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1171) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.8449699 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1171) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.8449699 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.8449855 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.845006425 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.8450191 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8450279 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.845043475 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.84561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.845629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8456388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.845652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 174, - "ts": 0.845676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.845689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.845703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8457475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1172) example: Task[0x3ffb8600]: allocated 174 bytes @ 0x3ffb4b10\n", - "ts": 0.84576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1172) example: Task[0x3ffb8600]: allocated 174 bytes @ 0x3ffb4b10\n", - "ts": 0.84576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8457782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.8457867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.845797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.84580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.845820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.8458294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.845837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.84584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.8458586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.845866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.8458792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.845887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.845895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8459058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.845920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1172) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.845970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1172) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.845970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.84598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.846003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.8460164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.846025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.846040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.84661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.84662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.846643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.846756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.84761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.847643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.847757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.847770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.84861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.848643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.848756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.84961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.84964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.849756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.85061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.850631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.85064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.850756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.85161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.851643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.851757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.851770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.85261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.852643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.852756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.85361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.85364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.853756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8537706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.85461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.85462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.854643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.854756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.85561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.855643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.855757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.855770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.85661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8566295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.856643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.856756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.85761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.85764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.857756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8577706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.85861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.85862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.858643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.858756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.85961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.859643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.859757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.859770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.86061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8606295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.860643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.860756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.86161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.86164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.861756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8617706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.86261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8626326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.862646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.862756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.86361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.863643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.863757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.863770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.86461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8646295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.864643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.864756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.86561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.86564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.865756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8657706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.86661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.86662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.866643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.866756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.86761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.867643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.867757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.867770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.86861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.868643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.868756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.86961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.86964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.869756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.87061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.87062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.870643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.870756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.87161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.871643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.871757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.871770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.87261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.872643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.872756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.87361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.873629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.873638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.873652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 60, - "ts": 0.87367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.87369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.873706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8737475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1200) example: Task[0x3ffb7f40]: allocated 60 bytes @ 0x3ffb87e4\n", - "ts": 0.873769175 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1200) example: Task[0x3ffb7f40]: allocated 60 bytes @ 0x3ffb87e4\n", - "ts": 0.873769175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8737774 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.87378555 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.87379635 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.873807225 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.873820175 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.873828875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.873836775 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.873845325 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.87385805 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.873866425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.873874725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.873883475 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.873892925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.873902125 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.87391695 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1200) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.87396625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1200) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.87396625 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.873984675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.87400325 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.874015925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.874024725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8740403 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.87461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.874629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8746388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.874652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 120, - "ts": 0.87467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.874689625 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.8747037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8747475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1201) example: Task[0x3ffb82a0]: allocated 120 bytes @ 0x3ffb87e4\n", - "ts": 0.874769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1201) example: Task[0x3ffb82a0]: allocated 120 bytes @ 0x3ffb87e4\n", - "ts": 0.874769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.874780075 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.874789075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.874798975 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.87480975 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.874822775 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.8748313 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.874839275 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.87484785 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.8748605 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.874868875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.8748772 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.874886075 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.87489545 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.87490465 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.874919475 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1201) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.874968725 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1201) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.874968725 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.874984325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.87500595 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.87501865 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.87502745 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.875043025 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.87561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.875629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8756388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.875652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 180, - "ts": 0.875676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.875689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.875703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8757475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1202) example: Task[0x3ffb8600]: allocated 180 bytes @ 0x3ffb4b10\n", - "ts": 0.87576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1202) example: Task[0x3ffb8600]: allocated 180 bytes @ 0x3ffb4b10\n", - "ts": 0.87576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8757782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.8757867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.875797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.87580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.875820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.8758294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.875837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.87584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.8758586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.875866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.875878175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.87588635 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.875894725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.875904975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.875919925 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1202) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.875969275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1202) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.875969275 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.87598465 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.876002775 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.8760156 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.87602435 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8760398 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.87661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.87662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.876643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.876756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.87761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.877643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.877757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.877770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.87861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.878643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.878756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.87961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.87964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.879756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.88061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8806326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.880646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.880756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.88161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.881643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.881757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.881770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.88261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.882643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.882756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.88361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.88364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.883756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8837706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.88461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.88462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.884643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.884756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.88561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.885643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.885757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.885770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.88661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8866295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.886643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.886756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.88761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.88764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.887756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8877706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.88861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.88862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.888643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.888756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.88961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.889643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.889757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.889770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.89061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8906295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.890643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.890756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.89161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.89164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.891756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8917706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.89261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8926326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.892646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.892756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.89361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.893643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.893757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.893770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.89461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8946295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.894643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.894756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.89561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.89564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.895756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8957706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.89661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.89662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.896643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.896756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.89761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.897643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.897757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.897770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.89861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.898643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.898756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.89961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.8996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.89964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.8997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.899756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.8997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.90061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.90062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.900643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.900756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.90161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.901643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.901757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.901770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.90261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.902643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.902756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.90361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.903629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.903638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.903652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 62, - "ts": 0.90367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.903692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.9037068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9037475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1230) example: Task[0x3ffb7f40]: allocated 62 bytes @ 0x3ffb87e4\n", - "ts": 0.903768925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1230) example: Task[0x3ffb7f40]: allocated 62 bytes @ 0x3ffb87e4\n", - "ts": 0.903768925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.903777525 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.9037862 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.90379635 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.9038072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.90382015 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.903828875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.903836775 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.903845325 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.903858025 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.903866425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.903874675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9038834 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.90389285 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.90390205 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.903916875 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1230) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.903966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1230) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.903966175 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.903984025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.9040026 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.904015275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.904024075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.90403965 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.90461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.904629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9046388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.904652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 124, - "ts": 0.90467695 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.904689625 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.9047037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9047475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1231) example: Task[0x3ffb82a0]: allocated 124 bytes @ 0x3ffb87e4\n", - "ts": 0.904769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1231) example: Task[0x3ffb82a0]: allocated 124 bytes @ 0x3ffb87e4\n", - "ts": 0.904769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.904781275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.904789775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.90480015 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.904810925 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.90482395 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.904832475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.90484045 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.904849025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.904861675 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.90487005 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.9048783 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.904887175 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.90489655 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.904905725 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.90492055 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1231) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.9049698 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1231) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.9049698 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.9049854 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.905007025 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.905019725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.905028525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9050441 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.90561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.905629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9056388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.905652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 186, - "ts": 0.905676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.905689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.905703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9057475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1232) example: Task[0x3ffb8600]: allocated 186 bytes @ 0x3ffb4b10\n", - "ts": 0.90576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1232) example: Task[0x3ffb8600]: allocated 186 bytes @ 0x3ffb4b10\n", - "ts": 0.90576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9057782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.9057867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.905797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.90580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.905820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.9058294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.905837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.90584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.9058586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.905866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.905879175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.905887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.905895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.905905775 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.905920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1232) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.905970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1232) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.905970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.90598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.906003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.9060164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.90602515 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9060406 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.90661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.90662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.906643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.906756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.90761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.907643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.907757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.907770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.90861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.908643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.908756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.90961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.90964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.909756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.91061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9106326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.910646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.910756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.91161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.911643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.911757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.911770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.91261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.912643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.912756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.91361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.91364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.913756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9137706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.91461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.91462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.914643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.914756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.91561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.915643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.915757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.915770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.91661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9166295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.916643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.916756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.91761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.91764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.917756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9177706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.91861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.91862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.918643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.918756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.91961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.919643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.919757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.919770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.92061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9206295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.920643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.920756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.92161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.92164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.921756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9217706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.92261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.922631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.92264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.922756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.92361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.923643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.923757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.923770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.92461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9246295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.924643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.924756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.92561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.92564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.925756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9257706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.92661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.92662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.926643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.926756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.92761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.927643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.927757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.927770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.92861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.928643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.928756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.92961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.92964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.929756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.93061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.93062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.930643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.930756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.93161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.931643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.931757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.931770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.93261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.932643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.932756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.93361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.933629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.933638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.933652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 64, - "ts": 0.93367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.933692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.9337068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9337475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1260) example: Task[0x3ffb7f40]: allocated 64 bytes @ 0x3ffb87e4\n", - "ts": 0.93376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1260) example: Task[0x3ffb7f40]: allocated 64 bytes @ 0x3ffb87e4\n", - "ts": 0.93376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.933777425 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.933785425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.933796175 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.933807025 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.933819975 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.9338287 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9338366 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.93384515 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.93385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.93386625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.93387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.933883275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.933892725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.933901925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.93391675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1260) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.933966075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1260) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.933966075 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.9339845 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.93400305 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.93401575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.93402455 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.934040125 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.93461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.934629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9346388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.934652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 128, - "ts": 0.934677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.9346897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.9347037 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9347475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1261) example: Task[0x3ffb82a0]: allocated 128 bytes @ 0x3ffb87e4\n", - "ts": 0.934769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1261) example: Task[0x3ffb82a0]: allocated 128 bytes @ 0x3ffb87e4\n", - "ts": 0.934769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.93478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.93478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.934800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.934810925 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.934823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.934832475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.934840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.934849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.93486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.93487005 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.93487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.934887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.934896625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9349058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.934920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1261) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.934969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1261) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.934969875 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.934985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.9350064 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.9350191 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9350279 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.935043475 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.93561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.935629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9356388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.935652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 192, - "ts": 0.935676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.935689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.935703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9357475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1262) example: Task[0x3ffb8600]: allocated 192 bytes @ 0x3ffb4b10\n", - "ts": 0.93576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1262) example: Task[0x3ffb8600]: allocated 192 bytes @ 0x3ffb4b10\n", - "ts": 0.93576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9357782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.9357867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.935797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.93580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.935820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.9358294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.935837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.93584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.9358586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.935866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.9358792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.935887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.935895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9359058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.935920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1262) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.935970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1262) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.935970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.93598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.936003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.9360164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.936025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.936040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.93661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.93662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.936643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.936756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.93761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.937643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.937757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.937770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.93861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.938643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.938756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.93961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.93964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.939756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.94061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.940631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.94064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.940756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.94161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.941643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.941757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.941770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.94261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.942643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.942756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.94361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.94364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.943756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9437706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.94461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.94462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.944643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.944756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.94561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.945643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.945757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.945770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.94661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9466295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.946643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.946756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.94761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.94764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.947756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9477706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.94861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.94862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.948643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.948756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.94961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.949643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.949757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.949770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.95061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9506295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.950643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.950756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.95161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.95164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.951756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9517706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.95261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9526326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.952646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.952756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.95361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.953643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.953757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.953770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.95461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9546295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.954643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.954756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.95561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.95564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.955756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9557706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.95661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.95662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.956643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.956756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.95761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.957643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.957757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.957770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.95861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.958643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.958756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.95961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.95964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.959756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.96061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.96062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.960643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.960756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.96161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.961643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.961757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.961770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.96261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.962643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.962756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.96361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.963629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.963638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.963652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 66, - "ts": 0.96367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.96369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.963706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9637475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1290) example: Task[0x3ffb7f40]: allocated 66 bytes @ 0x3ffb87e4\n", - "ts": 0.963768225 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1290) example: Task[0x3ffb7f40]: allocated 66 bytes @ 0x3ffb87e4\n", - "ts": 0.963768225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.963776475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.9637847 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9637953 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.963806175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.963819125 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.963827825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.963835725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.963844275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.963857 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.963865375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.963873675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.963882425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.963891875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.963901075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.9639159 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1290) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.9639652 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1290) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.9639652 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.963983625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.9640022 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.964014875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.964023675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.96403925 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.96461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.964629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9646388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.964652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 132, - "ts": 0.964676825 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.964689525 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.9647035 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9647475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1291) example: Task[0x3ffb82a0]: allocated 132 bytes @ 0x3ffb87e4\n", - "ts": 0.964769175 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1291) example: Task[0x3ffb82a0]: allocated 132 bytes @ 0x3ffb87e4\n", - "ts": 0.964769175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.96477995 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.964788675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9647988 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.964809575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.9648226 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.964831125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9648391 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.964847675 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.964860325 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.9648687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.964877025 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9648859 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.964895275 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.964904475 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.9649193 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1291) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.96496855 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1291) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.96496855 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.96498415 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.9650052 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.965017875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.965026675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.96504225 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.96561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.965629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9656388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.965652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 198, - "ts": 0.965676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.965689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.965703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9657475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1292) example: Task[0x3ffb8600]: allocated 198 bytes @ 0x3ffb4b10\n", - "ts": 0.96576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1292) example: Task[0x3ffb8600]: allocated 198 bytes @ 0x3ffb4b10\n", - "ts": 0.96576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9657782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.9657867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.965797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.96580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.965820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.9658294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.965837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.96584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.9658586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.965866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.96587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.965887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.965895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.965905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.96592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1292) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.9659701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1292) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.9659701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.965985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.9660036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.966016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9660252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.96604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.96661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.96662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.966643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.966756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.96761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.967643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.967757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.967770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.96861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.968643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.968756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.96961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.96964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.969756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.97061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9706326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.970646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.970756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.97161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.971643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.971757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.971770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.97261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.972643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.972756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.97361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.97364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.973756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9737706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.97461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.97462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.974643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.974756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.97561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.975643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.975757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.975770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.97661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9766295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.976643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.976756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.97761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.97764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.977756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9777706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.97861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.97862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.978643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.978756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.97961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.979643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.979757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.979770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.98061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9806295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.980643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.980756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.98161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.98164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.981756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9817706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.98261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.982631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.98264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.982756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.98361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.983643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.983757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.983770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.98461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9846295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.984643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.984756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.98561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.98564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.985756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9857706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.98661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.98662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.986643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.986756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.98761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.987643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.987757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.987770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.98861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.988643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.988756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.98961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.98964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.989756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.99061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.99062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.990643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.990756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.99161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.991643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.991757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.991770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.99261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.992643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.992756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.99361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 0.993629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.993638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 0.993652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 68, - "ts": 0.99367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.993692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.9937068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9937475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1320) example: Task[0x3ffb7f40]: allocated 68 bytes @ 0x3ffb87e4\n", - "ts": 0.99376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1320) example: Task[0x3ffb7f40]: allocated 68 bytes @ 0x3ffb87e4\n", - "ts": 0.99376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.993777425 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 0.993785425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.993796175 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.993807025 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.993819975 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.9938287 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9938366 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 0.99384515 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.99385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.99386625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.99387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.993883275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.993892725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.993901925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.99391675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1320) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.993966075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1320) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 0.993966075 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.9939845 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.99400305 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.99401575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.99402455 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.994040125 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.99461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 0.994629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9946388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.994652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 136, - "ts": 0.99467625 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.99468895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.994702925 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9947475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1321) example: Task[0x3ffb82a0]: allocated 136 bytes @ 0x3ffb87e4\n", - "ts": 0.994769625 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1321) example: Task[0x3ffb82a0]: allocated 136 bytes @ 0x3ffb87e4\n", - "ts": 0.994769625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.994781075 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.9947897 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.99479985 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.99481065 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.99482365 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.9948322 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.99484015 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.994848725 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.994861375 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.994869775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.994878075 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.99488695 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.99489635 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.994905525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.99492035 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1321) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.9949696 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1321) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", - "ts": 0.9949696 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.9949852 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.99500555 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.99501825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.99502705 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.995042625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.99561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 0.995629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9956388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.995652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 204, - "ts": 0.995676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.995689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.995703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9957475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1322) example: Task[0x3ffb8600]: allocated 204 bytes @ 0x3ffb4b10\n", - "ts": 0.99576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1322) example: Task[0x3ffb8600]: allocated 204 bytes @ 0x3ffb4b10\n", - "ts": 0.99576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9957782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.9957867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.995797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.99580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.995820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.9958294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.995837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 0.99584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.9958586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.995866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.9958792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.995887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.995895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9959058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.995920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1322) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.995970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1322) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 0.995970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.99598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 0.996003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.9960164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.996025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.996040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.99661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.99662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.996643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.996756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.99761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.997643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.997757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.997770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.99861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.998643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.998756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.99961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.9996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.99964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.9997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.999756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.9997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.00061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.000631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.00064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.000756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.00161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.001643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.001757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.001770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.00261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.002643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.002756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.00361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.00364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.003756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0037706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.00461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.00462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.004643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.004756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.00561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.005643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.005757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.005770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.00661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0066295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.006643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.006756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.00761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.00764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.007756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0077706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.00861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.00862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.008643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.008756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.00961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.009643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.009757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.009770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.01061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0106295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.010643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.010756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.01161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.01164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.011756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0117706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.01261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0126326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.012646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.012756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.01361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.013643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.013757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.013770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.01461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0146295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.014643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.014756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.01561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.01564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.015756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0157706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.01661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.01662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.016643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.016756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.01761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.017643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.017757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.017770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.01861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.018643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.018756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.01961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.01964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.019756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.02061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.02062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.020643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.020756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.02161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.021643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.021757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.021770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.02261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.022643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.022756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.02361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.023629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.023638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.023652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 70, - "ts": 1.02367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.02369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.023706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0237475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1350) example: Task[0x3ffb7f40]: allocated 70 bytes @ 0x3ffb87e4\n", - "ts": 1.023768225 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1350) example: Task[0x3ffb7f40]: allocated 70 bytes @ 0x3ffb87e4\n", - "ts": 1.023768225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.023776475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.0237847 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0237953 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.023806175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.023819125 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.023827825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.023835725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.023844275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.023857 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.023865375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.023873675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.023882425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.023891875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.023901075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.0239159 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1350) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.0239652 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1350) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.0239652 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.023983625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.0240022 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.024014875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.024023675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.02403925 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.02461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.024629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0246388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.024652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 140, - "ts": 1.024677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.0246897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.024703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0247475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1351) example: Task[0x3ffb82a0]: allocated 140 bytes @ 0x3ffb4b10\n", - "ts": 1.024769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1351) example: Task[0x3ffb82a0]: allocated 140 bytes @ 0x3ffb4b10\n", - "ts": 1.024769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.02478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.02478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.02479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.024809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.02482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.024831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.02483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.024847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.024860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.02486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.024877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.02488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.024895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.024904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.02491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1351) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.0249687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1351) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.0249687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.0249843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.02500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.02501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.02502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.025042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.02561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.025629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0256388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.025652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 210, - "ts": 1.025676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.025689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.025703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0257475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1352) example: Task[0x3ffb8600]: allocated 210 bytes @ 0x3ffb4b10\n", - "ts": 1.02576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1352) example: Task[0x3ffb8600]: allocated 210 bytes @ 0x3ffb4b10\n", - "ts": 1.02576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0257782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.0257867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.025797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.02580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.025820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.0258294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.025837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.02584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.0258586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.025866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.02587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.025887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.025895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.025905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.02592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1352) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.0259701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1352) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.0259701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.025985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.0260036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.026016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0260252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.02604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.02661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.02662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.026643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.026756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.02761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.027643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.027757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.027770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.02861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.028643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.028756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.02961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.02964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.029756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.03061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0306326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.030646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.030756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.03161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.031643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.031757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.031770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.03261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.032643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.032756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.03361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.03364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.033756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0337706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.03461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.03462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.034643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.034756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.03561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.035643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.035757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.035770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.03661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0366295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.036643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.036756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.03761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.03764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.037756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0377706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.03861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.03862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.038643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.038756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.03961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.039643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.039757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.039770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.04061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0406295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.040643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.040756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.04161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.04164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.041756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0417706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.04261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.042631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.04264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.042756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.04361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.043643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.043757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.043770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.04461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0446295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.044643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.044756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.04561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.04564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.045756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0457706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.04661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.04662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.046643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.046756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.04761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.047643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.047757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.047770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.04861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.048643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.048756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.04961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.04964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.049756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.05061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.05062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.050643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.050756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.05161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.051643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.051757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.051770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.05261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.052643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.052756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.05361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.053629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.053638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.053652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 72, - "ts": 1.05367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.053692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.0537068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0537475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1380) example: Task[0x3ffb7f40]: allocated 72 bytes @ 0x3ffb87e4\n", - "ts": 1.05376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1380) example: Task[0x3ffb7f40]: allocated 72 bytes @ 0x3ffb87e4\n", - "ts": 1.05376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.053777425 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.053785425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.053796175 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.053807025 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.053819975 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.0538287 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0538366 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.05384515 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.05385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.05386625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.05387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.053883275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.053892725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.053901925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.05391675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1380) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.053966075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1380) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.053966075 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.0539845 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.05400305 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.05401575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.05402455 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.054040125 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.05461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.054629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0546388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.054652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 144, - "ts": 1.054677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.0546897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.054703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0547475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1381) example: Task[0x3ffb82a0]: allocated 144 bytes @ 0x3ffb4b10\n", - "ts": 1.054769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1381) example: Task[0x3ffb82a0]: allocated 144 bytes @ 0x3ffb4b10\n", - "ts": 1.054769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.05478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.05478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.054800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.0548109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.054823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.05483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.054840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.054849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.05486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.054870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.05487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.054887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.0548966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0549058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.054920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1381) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.054969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1381) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.054969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.054985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.055005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.055018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.055027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0550429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.05561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.055629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0556388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.055652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 216, - "ts": 1.055676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.055689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.055703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0557475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1382) example: Task[0x3ffb8600]: allocated 216 bytes @ 0x3ffb4b10\n", - "ts": 1.05576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1382) example: Task[0x3ffb8600]: allocated 216 bytes @ 0x3ffb4b10\n", - "ts": 1.05576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0557782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.0557867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.055797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.05580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.055820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.0558294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.055837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.05584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.0558586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.055866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.0558792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.055887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.055895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0559058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.055920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1382) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.055970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1382) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.055970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.05598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.056003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.0560164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.056025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.056040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.05661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.05662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.056643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.056756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.05761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.057643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.057757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.057770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.05861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.058643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.058756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.05961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.05964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.059756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.06061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.060631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.06064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.060756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.06161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.061643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.061757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.061770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.06261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.062643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.062756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.06361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.06364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.063756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0637706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.06461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.06462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.064643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.064756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.06561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.065643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.065757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.065770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.06661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0666295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.066643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.066756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.06761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.06764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.067756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0677706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.06861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.06862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.068643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.068756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.06961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.069643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.069757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.069770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.07061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0706295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.070643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.070756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.07161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.07164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.071756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0717706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.07261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0726326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.072646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.072756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.07361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.073643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.073757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.073770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.07461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0746295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.074643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.074756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.07561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.07564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.075756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0757706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.07661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.07662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.076643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.076756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.07761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.077643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.077757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.077770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.07861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.078643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.078756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.07961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.07964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.079756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.08061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.08062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.080643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.080756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.08161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.081643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.081757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.081770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.08261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.082643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.082756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.08361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.083629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.083638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.083652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 74, - "ts": 1.08367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.08369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.083706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0837475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1410) example: Task[0x3ffb7f40]: allocated 74 bytes @ 0x3ffb87e4\n", - "ts": 1.083768225 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1410) example: Task[0x3ffb7f40]: allocated 74 bytes @ 0x3ffb87e4\n", - "ts": 1.083768225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.083776475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.0837847 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0837953 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.083806175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.083819125 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.083827825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.083835725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.083844275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.083857 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.083865375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.083873675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.083882425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.083891875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.083901075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.0839159 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1410) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.0839652 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1410) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.0839652 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.083983625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.0840022 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.084014875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.084023675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.08403925 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.08461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.084629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0846388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.084652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 148, - "ts": 1.084677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.0846897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.084703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0847475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1411) example: Task[0x3ffb82a0]: allocated 148 bytes @ 0x3ffb4b10\n", - "ts": 1.084769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1411) example: Task[0x3ffb82a0]: allocated 148 bytes @ 0x3ffb4b10\n", - "ts": 1.084769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.08478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.08478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.08479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.084809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.08482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.084831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.08483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.084847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.084860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.08486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.084877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.08488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.084895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.084904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.08491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1411) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.0849687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1411) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.0849687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.0849843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.08500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.08501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.08502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.085042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.08561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.085629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0856388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.085652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 222, - "ts": 1.085676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.085689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.085703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0857475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1412) example: Task[0x3ffb8600]: allocated 222 bytes @ 0x3ffb4b10\n", - "ts": 1.08576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1412) example: Task[0x3ffb8600]: allocated 222 bytes @ 0x3ffb4b10\n", - "ts": 1.08576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0857782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.0857867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.085797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.08580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.085820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.0858294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.085837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.08584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.0858586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.085866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.08587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.085887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.085895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.085905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.08592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1412) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.0859701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1412) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.0859701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.085985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.0860036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.086016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0860252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.08604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.08661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.08662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.086643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.086756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.08761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.087643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.087757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.087770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.08861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.088643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.088756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.08961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.08964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.089756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.09061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0906326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.090646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.090756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.09161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.091643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.091757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.091770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.09261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.092643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.092756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.09361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.09364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.093756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0937706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.09461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.09462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.094643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.094756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.09561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.095643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.095757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.095770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.09661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0966295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.096643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.096756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.09761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.09764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.097756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0977706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.09861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.09862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.098643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.098756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.0987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.09961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.0996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.099643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.0997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.099757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.099770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.10061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1006295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.100643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.100756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.10161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.10164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.101756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1017706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.10261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.102633975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1026476 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.102756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.10361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.103643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.103757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.103770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.10461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1046295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.104643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.104756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.10561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.10564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.105756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1057706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.10661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.10662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.106643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.106756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.10761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.107643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.107757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.107770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.10861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.108643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.108756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.10961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.10964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.109756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.11061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.11062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.110643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.110756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.11161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.111643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.111757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.111770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.11261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.112643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.112756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.11361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.113629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.113638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.113652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 76, - "ts": 1.11367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.11369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.113706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1137475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1440) example: Task[0x3ffb7f40]: allocated 76 bytes @ 0x3ffb87e4\n", - "ts": 1.113768225 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1440) example: Task[0x3ffb7f40]: allocated 76 bytes @ 0x3ffb87e4\n", - "ts": 1.113768225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.113776475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.1137847 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1137953 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.113806175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.113819125 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.113827825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.113835725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.113844275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.113857 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.113865375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.113873675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.113882425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.113891875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.113901075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.1139159 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1440) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.1139652 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1440) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.1139652 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.113983625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.1140022 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.114014875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.114023675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.11403925 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.11461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.114629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1146388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.114652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 152, - "ts": 1.114677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.1146897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.114703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1147475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1441) example: Task[0x3ffb82a0]: allocated 152 bytes @ 0x3ffb4b10\n", - "ts": 1.114769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1441) example: Task[0x3ffb82a0]: allocated 152 bytes @ 0x3ffb4b10\n", - "ts": 1.114769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.11478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.11478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.11479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.114809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.11482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.114831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.11483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.114847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.114860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.11486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.114877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.11488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.114895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.114904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.11491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1441) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.1149687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1441) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.1149687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.1149843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.11500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.11501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.11502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.115042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.11561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.115629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1156388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.115652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 228, - "ts": 1.115676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.115689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.115703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1157475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1442) example: Task[0x3ffb8600]: allocated 228 bytes @ 0x3ffb4b10\n", - "ts": 1.11576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1442) example: Task[0x3ffb8600]: allocated 228 bytes @ 0x3ffb4b10\n", - "ts": 1.11576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1157782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.1157867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.115797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.11580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.115820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.1158294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.115837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.11584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.1158586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.115866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.11587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.115887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.115895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.115905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.11592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1442) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.1159701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1442) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.1159701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.115985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.1160036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.116016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1160252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.11604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.11661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.11662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.116643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.116756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.11761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.117643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.117757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.117770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.11861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.118643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.118756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.11961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.11964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.119756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.12061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1206326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.120646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.120756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.12161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.121643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.121757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.121770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.12261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.122643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.122756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.12361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.12364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.123756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1237706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.12461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.12462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.124643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.124756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.12561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.125643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.125757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.125770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.12661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1266295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.126643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.126756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.12761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.12764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.127756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1277706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.12861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.12862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.128643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.128756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.12961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.129643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.129757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.129770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.13061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1306295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.130643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.130756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.13161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.13164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.131756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1317706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.13261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.132631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.13264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.132756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.13361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.133643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.133757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.133770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.13461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1346295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.134643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.134756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.13561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.13564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.135756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1357706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.13661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.13662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.136643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.136756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.13761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.137643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.137757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.137770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.13861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.138643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.138756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.13961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.13964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.139756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.14061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.14062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.140643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.140756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.14161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.141643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.141757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.141770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.14261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.142643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.142756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.14361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.143629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.143638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.143652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 78, - "ts": 1.14367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.143692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.1437068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1437475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1470) example: Task[0x3ffb7f40]: allocated 78 bytes @ 0x3ffb87e4\n", - "ts": 1.14376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1470) example: Task[0x3ffb7f40]: allocated 78 bytes @ 0x3ffb87e4\n", - "ts": 1.14376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.143777425 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.143785425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.143796175 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.143807025 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.143819975 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.1438287 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1438366 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.14384515 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.14385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.14386625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.14387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.143883275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.143892725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.143901925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.14391675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1470) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.143966075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1470) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.143966075 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.1439845 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.14400305 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.14401575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.14402455 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.144040125 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.14461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.144629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1446388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.144652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 156, - "ts": 1.144677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.1446897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.144703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1447475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1471) example: Task[0x3ffb82a0]: allocated 156 bytes @ 0x3ffb4b10\n", - "ts": 1.144769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1471) example: Task[0x3ffb82a0]: allocated 156 bytes @ 0x3ffb4b10\n", - "ts": 1.144769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.14478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.14478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.144800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.1448109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.144823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.14483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.144840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.144849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.14486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.144870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.14487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.144887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.1448966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1449058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.144920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1471) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.144969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1471) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.144969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.144985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.145005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.145018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.145027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1450429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.14561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.145629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1456388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.145652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 234, - "ts": 1.145676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.145689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.145703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1457475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1472) example: Task[0x3ffb8600]: allocated 234 bytes @ 0x3ffb4b10\n", - "ts": 1.14576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1472) example: Task[0x3ffb8600]: allocated 234 bytes @ 0x3ffb4b10\n", - "ts": 1.14576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1457782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.1457867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.145797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.14580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.145820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.1458294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.145837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.14584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.1458586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.145866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.1458792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.145887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.145895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1459058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.145920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1472) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.145970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1472) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.145970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.14598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.146003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.1460164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.146025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.146040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.14661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.14662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.146643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.146756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.14761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.147643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.147757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.147770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.14861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.148643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.148756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.14961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.14964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.149756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.15061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.150631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.15064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.150756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.15161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.151643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.151757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.151770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.15261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.152643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.152756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.15361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.15364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.153756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1537706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.15461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.15462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.154643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.154756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.15561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.155643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.155757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.155770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.15661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1566295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.156643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.156756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.15761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.15764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.157756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1577706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.15861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.15862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.158643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.158756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.15961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.159643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.159757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.159770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.16061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1606295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.160643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.160756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.16161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.16164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.161756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1617706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.16261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1626326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.162646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.162756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.16361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.163643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.163757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.163770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.16461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1646295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.164643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.164756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.16561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.16564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.165756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1657706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.16661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.16662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.166643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.166756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.16761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.167643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.167757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.167770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.16861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.168643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.168756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.16961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.16964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.169756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.17061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.17062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.170643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.170756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.17161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.171643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.171757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.171770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.17261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.172643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.172756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.17361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.173629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.173638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.173652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 80, - "ts": 1.17367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.17369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.173706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1737475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1500) example: Task[0x3ffb7f40]: allocated 80 bytes @ 0x3ffb87e4\n", - "ts": 1.173768225 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1500) example: Task[0x3ffb7f40]: allocated 80 bytes @ 0x3ffb87e4\n", - "ts": 1.173768225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.173776475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.1737847 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1737953 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.173806175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.173819125 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.173827825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.173835725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.173844275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.173857 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.173865375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.173873675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.173882425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.173891875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.173901075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.1739159 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1500) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.1739652 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1500) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.1739652 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.173983625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.1740022 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.174014875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.174023675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.17403925 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.17461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.174629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1746388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.174652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 160, - "ts": 1.174677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.1746897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.174703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1747475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1501) example: Task[0x3ffb82a0]: allocated 160 bytes @ 0x3ffb4b10\n", - "ts": 1.174769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1501) example: Task[0x3ffb82a0]: allocated 160 bytes @ 0x3ffb4b10\n", - "ts": 1.174769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.17478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.17478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.17479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.174809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.17482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.174831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.17483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.174847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.174860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.17486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.174877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.17488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.174895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.174904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.17491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1501) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.1749687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1501) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.1749687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.1749843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.17500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.17501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.17502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.175042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.17561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.175629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1756388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.175652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 240, - "ts": 1.175676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.175689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.175703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1757475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1502) example: Task[0x3ffb8600]: allocated 240 bytes @ 0x3ffb4b10\n", - "ts": 1.17576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1502) example: Task[0x3ffb8600]: allocated 240 bytes @ 0x3ffb4b10\n", - "ts": 1.17576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1757782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.1757867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.175797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.17580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.175820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.1758294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.175837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.17584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.1758586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.175866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.17587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.175887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.175895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.175905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.17592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1502) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.1759701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1502) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.1759701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.175985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.1760036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.176016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1760252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.17604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.17661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.17662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.176643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.176756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.17761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.177643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.177757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.177770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.17861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.178643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.178756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.17961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.17964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.179756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.18061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1806326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.180646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.180756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.18161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.181643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.181757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.181770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.18261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.182643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.182756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.18361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.18364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.183756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1837706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.18461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.18462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.184643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.184756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.18561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.185643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.185757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.185770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.18661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1866295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.186643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.186756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.18761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.18764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.187756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1877706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.18861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.18862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.188643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.188756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.18961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.189643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.189757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.189770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.19061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1906295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.190643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.190756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.19161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.19164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.191756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1917706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.19261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.192631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.19264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.192756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.19361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.193643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.193757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.193770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.19461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1946295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.194643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.194756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.19561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.19564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.195756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1957706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.19661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.19662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.196643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.196756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.19761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.197643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.197757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.197770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.19861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.198643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.198756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.19961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.1996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.19964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.1997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.199756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.1997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.20061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.20062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.200643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.200756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.20161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.201643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.201757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.201770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.20261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.202643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.202756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.20361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.203629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.203638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.203652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 82, - "ts": 1.20367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.203692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.2037068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2037475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1530) example: Task[0x3ffb7f40]: allocated 82 bytes @ 0x3ffb87e4\n", - "ts": 1.20376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1530) example: Task[0x3ffb7f40]: allocated 82 bytes @ 0x3ffb87e4\n", - "ts": 1.20376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.203777425 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.203785425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.203796175 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.203807025 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.203819975 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.2038287 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2038366 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.20384515 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.20385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.20386625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.2038745 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.203883225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.203892675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.203901875 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.2039167 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1530) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.203966 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1530) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.203966 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.203984425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.204003 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.204015675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.204024475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.20404005 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.20461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.204629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2046388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.204652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 164, - "ts": 1.204677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.2046897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.204703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2047475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1531) example: Task[0x3ffb82a0]: allocated 164 bytes @ 0x3ffb4b10\n", - "ts": 1.204769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1531) example: Task[0x3ffb82a0]: allocated 164 bytes @ 0x3ffb4b10\n", - "ts": 1.204769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.20478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.20478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.204800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.2048109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.204823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.20483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.204840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.204849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.20486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.204870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.204878275 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.20488715 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.204896525 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2049057 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.204920525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1531) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.204969775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1531) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.204969775 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.204985375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.20500575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.205018425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.205027225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2050428 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.20561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.205629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2056388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.205652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 246, - "ts": 1.205676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.205689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.205703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2057475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1532) example: Task[0x3ffb8600]: allocated 246 bytes @ 0x3ffb4b10\n", - "ts": 1.20576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1532) example: Task[0x3ffb8600]: allocated 246 bytes @ 0x3ffb4b10\n", - "ts": 1.20576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2057782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.2057867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.205797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.20580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.205820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.2058294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.205837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.20584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.2058586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.205866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.205879175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2058872 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.20589565 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.20590575 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.205920675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1532) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.205970025 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1532) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.205970025 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.2059854 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.206003525 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.20601635 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.206025125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.206040575 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.20661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.20662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.206643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.206756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.20761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.207643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.207757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.207770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.20861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.208643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.208756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.20961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.20964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.209756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.21061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.210631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.21064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.210756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.21161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.211643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.211757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.211770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.21261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.212643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.212756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.21361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.21364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.213756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2137706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.21461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.21462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.214643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.214756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.21561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.215643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.215757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.215770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.21661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2166295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.216643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.216756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.21761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.21764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.217756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2177706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.21861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.21862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.218643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.218756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.21961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.219643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.219757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.219770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.22061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2206295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.220643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.220756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.22161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.22164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.221756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2217706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.22261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2226326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.222646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.222756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.22361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.223643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.223757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.223770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.22461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2246295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.224643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.224756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.22561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.22564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.225756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2257706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.22661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.22662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.226643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.226756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.22761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.227643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.227757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.227770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.22861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.228643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.228756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.22961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.22964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.229756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.23061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.23062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.230643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.230756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.23161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.231643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.231757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.231770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.23261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.232643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.232756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.23361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.233629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.233638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.233652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 84, - "ts": 1.23367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.23369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.233706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2337475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1560) example: Task[0x3ffb7f40]: allocated 84 bytes @ 0x3ffb87e4\n", - "ts": 1.233768225 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1560) example: Task[0x3ffb7f40]: allocated 84 bytes @ 0x3ffb87e4\n", - "ts": 1.233768225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.233776475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.2337847 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2337953 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.233806175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.233819125 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.233827825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.233835725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.233844275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.233857 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.233865375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.233873675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.233882425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.233891875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.233901075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.2339159 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1560) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.2339652 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1560) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.2339652 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.233983625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.2340022 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.234014875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.234023675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.23403925 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.23461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.234629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2346388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.234652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 168, - "ts": 1.234677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.2346897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.234703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2347475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1561) example: Task[0x3ffb82a0]: allocated 168 bytes @ 0x3ffb4b10\n", - "ts": 1.234769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1561) example: Task[0x3ffb82a0]: allocated 168 bytes @ 0x3ffb4b10\n", - "ts": 1.234769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.23478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.23478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.23479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.234809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.23482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.234831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.23483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.234847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.234860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.23486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.234877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.23488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.234895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.234904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.23491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1561) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.2349687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1561) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.2349687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.2349843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.23500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.23501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.23502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.235042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.23561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.235629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2356388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.235652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 252, - "ts": 1.235676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.235689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.235703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2357475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1562) example: Task[0x3ffb8600]: allocated 252 bytes @ 0x3ffb4b10\n", - "ts": 1.23576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1562) example: Task[0x3ffb8600]: allocated 252 bytes @ 0x3ffb4b10\n", - "ts": 1.23576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2357782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.2357867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.235797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.23580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.235820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.2358294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.235837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.23584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.2358586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.235866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.23587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.235887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.235895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.235905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.23592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1562) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.2359701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1562) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.2359701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.235985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.2360036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.236016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2360252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.23604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.23661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.23662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.236643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.236756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.23761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.237643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.237757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.237770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.23861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.238643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.238756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.23961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.23964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.239756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.24061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2406326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.240646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.240756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.24161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.241643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.241757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.241770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.24261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.242643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.242756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.24361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.24364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.243756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2437706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.24461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.24462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.244643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.244756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.24561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.245643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.245757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.245770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.24661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2466295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.246643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.246756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.24761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.24764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.247756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2477706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.24861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.24862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.248643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.248756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.24961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.249643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.249757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.249770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.25061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2506295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.250643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.250756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.25161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.25164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.251756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2517706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.25261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.252631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.25264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.252756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.25361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.253643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.253757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.253770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.25461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2546295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.254643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.254756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.25561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.25564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.255756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2557706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.25661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.25662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.256643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.256756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.25761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.257643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.257757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.257770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.25861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.258643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.258756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.25961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.25964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.259756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.26061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.26062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.260643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.260756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.26161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.261643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.261757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.261770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.26261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.262643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.262756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.26361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.263629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.263638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.263652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 86, - "ts": 1.26367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.263692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.2637068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2637475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1590) example: Task[0x3ffb7f40]: allocated 86 bytes @ 0x3ffb87e4\n", - "ts": 1.26376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1590) example: Task[0x3ffb7f40]: allocated 86 bytes @ 0x3ffb87e4\n", - "ts": 1.26376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.263777425 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.263785425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.263796175 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.263807025 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.263819975 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.2638287 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2638366 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.26384515 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.26385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.26386625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.26387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.263883275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.263892725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.263901925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.26391675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1590) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.263966075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1590) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.263966075 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.2639845 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.26400305 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.26401575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.26402455 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.264040125 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.26461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.264629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2646388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.264652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 172, - "ts": 1.264677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.2646897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.264703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2647475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1591) example: Task[0x3ffb82a0]: allocated 172 bytes @ 0x3ffb4b10\n", - "ts": 1.264769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1591) example: Task[0x3ffb82a0]: allocated 172 bytes @ 0x3ffb4b10\n", - "ts": 1.264769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.26478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.26478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.264800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.2648109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.264823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.26483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.264840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.264849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.26486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.264870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.26487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.264887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.2648966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2649058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.264920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1591) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.264969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1591) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.264969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.264985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.265005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.265018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.265027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2650429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.26561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.265629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2656388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.265652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 258, - "ts": 1.265676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.265689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.265703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2657475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1592) example: Task[0x3ffb8600]: allocated 258 bytes @ 0x3ffb4b10\n", - "ts": 1.26576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1592) example: Task[0x3ffb8600]: allocated 258 bytes @ 0x3ffb4b10\n", - "ts": 1.26576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2657782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.2657867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.265797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.26580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.265820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.2658294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.265837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.26584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.2658586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.265866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.2658792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.265887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.265895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2659058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.265920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1592) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.265970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1592) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.265970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.26598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.266003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.2660164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.266025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.266040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.26661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.26662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.266643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.266756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.26761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.267643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.267757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.267770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.26861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.268643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.268756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.26961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.26964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.269756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.27061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.270631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.27064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.270756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.27161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.271643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.271757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.271770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.27261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.272643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.272756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.27361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.27364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.273756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2737706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.27461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.27462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.274643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.274756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.27561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.275643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.275757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.275770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.27661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2766295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.276643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.276756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.27761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.27764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.277756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2777706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.27861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.27862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.278643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.278756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.27961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.279643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.279757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.279770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.28061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2806295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.280643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.280756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.28161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.28164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.281756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2817706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.28261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2826326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.282646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.282756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.28361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.283643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.283757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.283770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.28461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2846295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.284643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.284756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.28561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.28564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.285756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2857706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.28661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.28662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.286643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.286756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.28761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.287643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.287757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.287770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.28861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.288643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.288756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.28961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.28964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.289756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.29061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.29062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.290643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.290756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.29161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.291643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.291757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.291770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.29261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.292643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.292756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.29361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.293629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.293638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.293652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 88, - "ts": 1.29367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.29369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.293706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2937475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1620) example: Task[0x3ffb7f40]: allocated 88 bytes @ 0x3ffb87e4\n", - "ts": 1.293768225 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1620) example: Task[0x3ffb7f40]: allocated 88 bytes @ 0x3ffb87e4\n", - "ts": 1.293768225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.293776475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.2937847 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2937953 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.293806175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.293819125 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.293827825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.293835725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.293844275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.293857 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.293865375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.293873675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.293882425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.293891875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.293901075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.2939159 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1620) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.2939652 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1620) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.2939652 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.293983625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.2940022 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.294014875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.294023675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.29403925 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.29461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.294629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2946388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.294652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 176, - "ts": 1.294677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.2946897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.294703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2947475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1621) example: Task[0x3ffb82a0]: allocated 176 bytes @ 0x3ffb4b10\n", - "ts": 1.294769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1621) example: Task[0x3ffb82a0]: allocated 176 bytes @ 0x3ffb4b10\n", - "ts": 1.294769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.29478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.29478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.29479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.294809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.29482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.294831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.29483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.294847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.294860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.29486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.294877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.29488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.294895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.294904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.29491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1621) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.2949687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1621) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.2949687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.2949843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.29500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.29501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.29502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.295042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.29561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.295629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2956388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.295652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 264, - "ts": 1.295676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.295689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.295703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2957475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1622) example: Task[0x3ffb8600]: allocated 264 bytes @ 0x3ffb4b10\n", - "ts": 1.29576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1622) example: Task[0x3ffb8600]: allocated 264 bytes @ 0x3ffb4b10\n", - "ts": 1.29576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2957782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.2957867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.295797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.29580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.295820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.2958294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.295837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.29584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.2958586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.295866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.29587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.295887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.295895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.295905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.29592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1622) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.2959701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1622) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.2959701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.295985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.2960036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.296016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2960252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.29604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.29661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.29662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.296643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.296756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.29761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.297643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.297757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.297770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.29861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.298643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.298756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.29961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.2996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.29964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.2997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.299756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.2997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.30061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3006326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.300646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.300756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.30161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.301643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.301757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.301770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.30261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.302643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.302756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.30361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.30364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.303756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3037706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.30461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.30462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.304643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.304756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.30561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.305643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.305757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.305770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.30661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3066295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.306643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.306756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.30761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.30764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.307756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3077706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.30861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.30862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.308643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.308756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.30961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.309643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.309757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.309770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.31061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3106295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.310643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.310756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.31161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.31164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.311756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3117706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.31261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.312631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.31264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.312756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.31361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.313643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.313757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.313770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.31461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3146295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.314643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.314756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.31561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.31564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.315756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3157706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.31661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.31662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.316643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.316756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.31761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.317643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.317757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.317770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.31861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.318643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.318756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.31961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.31964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.319756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.32061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.32062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.320643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.320756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.32161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.321643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.321757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.321770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.32261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.322643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.322756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.32361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.323629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.323638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.323652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 90, - "ts": 1.32367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.323692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.3237068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3237475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1650) example: Task[0x3ffb7f40]: allocated 90 bytes @ 0x3ffb87e4\n", - "ts": 1.32376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1650) example: Task[0x3ffb7f40]: allocated 90 bytes @ 0x3ffb87e4\n", - "ts": 1.32376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.323777425 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.323785425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.323796175 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.323807025 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.323819975 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.3238287 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3238366 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.32384515 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.32385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.32386625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.32387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.323883275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.323892725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.323901925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.32391675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1650) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.323966075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1650) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.323966075 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.3239845 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.32400305 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.32401575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.32402455 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.324040125 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.32461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.324629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3246388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.324652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 180, - "ts": 1.324677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.3246897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.324703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3247475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1651) example: Task[0x3ffb82a0]: allocated 180 bytes @ 0x3ffb4b10\n", - "ts": 1.324769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1651) example: Task[0x3ffb82a0]: allocated 180 bytes @ 0x3ffb4b10\n", - "ts": 1.324769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.32478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.32478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.324800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.3248109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.324823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.32483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.324840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.324849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.32486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.324870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.32487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.324887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.3248966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3249058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.324920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1651) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.324969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1651) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.324969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.324985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.325005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.325018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.325027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3250429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.32561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.325629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3256388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.325652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 270, - "ts": 1.325676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.325689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.325703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3257475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1652) example: Task[0x3ffb8600]: allocated 270 bytes @ 0x3ffb4b10\n", - "ts": 1.32576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1652) example: Task[0x3ffb8600]: allocated 270 bytes @ 0x3ffb4b10\n", - "ts": 1.32576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3257782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.3257867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.325797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.32580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.325820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.3258294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.325837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.32584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.3258586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.325866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.3258792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.325887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.325895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3259058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.325920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1652) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.325970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1652) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.325970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.32598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.326003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.3260164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.326025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.326040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.32661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.32662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.326643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.326756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.32761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.327643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.327757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.327770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.32861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.328643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.328756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.32961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.32964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.329756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.33061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.330631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.33064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.330756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.33161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.331643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.331757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.331770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.33261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.332643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.332756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.33361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.33364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.333756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3337706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.33461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.33462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.334643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.334756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.33561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.335643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.335757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.335770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.33661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3366295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.336643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.336756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.33761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.33764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.337756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3377706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.33861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.33862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.338643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.338756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.33961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.339643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.339757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.339770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.34061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3406295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.340643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.340756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.34161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.34164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.341756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3417706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.34261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3426326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.342646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.342756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.34361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.343643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.343757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.343770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.34461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3446295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.344643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.344756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.34561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.34564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.345756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3457706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.34661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.34662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.346643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.346756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.34761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.347643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.347757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.347770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.34861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.348643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.348756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.34961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.34964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.349756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.35061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.35062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.350643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.350756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.35161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.351643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.351757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.351770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.35261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.352643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.352756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.35361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.353629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.353638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.353652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 92, - "ts": 1.35367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.35369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.353706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3537475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1680) example: Task[0x3ffb7f40]: allocated 92 bytes @ 0x3ffb87e4\n", - "ts": 1.353768225 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1680) example: Task[0x3ffb7f40]: allocated 92 bytes @ 0x3ffb87e4\n", - "ts": 1.353768225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.353776475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.3537847 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3537953 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.353806175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.353819125 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.353827825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.353835725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.353844275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.353857 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.353865375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.353873675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.353882425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.353891875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.353901075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.3539159 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1680) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.3539652 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1680) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.3539652 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.353983625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.3540022 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.354014875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.354023675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.35403925 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.35461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.354629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3546388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.354652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 184, - "ts": 1.354677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.3546897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.354703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3547475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1681) example: Task[0x3ffb82a0]: allocated 184 bytes @ 0x3ffb4b10\n", - "ts": 1.354769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1681) example: Task[0x3ffb82a0]: allocated 184 bytes @ 0x3ffb4b10\n", - "ts": 1.354769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.35478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.35478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.35479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.354809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.35482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.354831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.35483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.354847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.354860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.35486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.354877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.35488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.354895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.354904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.35491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1681) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.3549687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1681) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.3549687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.3549843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.35500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.35501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.35502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.355042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.35561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.355629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3556388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.355652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 276, - "ts": 1.355676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.355689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.355703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3557475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1682) example: Task[0x3ffb8600]: allocated 276 bytes @ 0x3ffb4b10\n", - "ts": 1.35576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1682) example: Task[0x3ffb8600]: allocated 276 bytes @ 0x3ffb4b10\n", - "ts": 1.35576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3557782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.3557867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.355797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.35580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.355820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.3558294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.355837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.35584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.3558586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.355866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.35587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.355887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.355895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.355905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.35592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1682) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.3559701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1682) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.3559701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.355985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.3560036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.356016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3560252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.35604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.35661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.35662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.356643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.356756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.35761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.357643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.357757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.357770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.35861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.358643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.358756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.35961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.35964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.359756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.36061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3606326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.360646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.360756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.36161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.361643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.361757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.361770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.36261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.362643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.362756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.36361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.36364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.363756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3637706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.36461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.36462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.364643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.364756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.36561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.365643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.365757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.365770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.36661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3666295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.366643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.366756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.36761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.36764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.367756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3677706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.36861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.36862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.368643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.368756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.36961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.369643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.369757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.369770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.37061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3706295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.370643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.370756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.37161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.37164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.371756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3717706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.37261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.372631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.37264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.372756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.37361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.373643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.373757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.373770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.37461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3746295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.374643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.374756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.37561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.37564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.375756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3757706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.37661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.37662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.376643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.376756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.37761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.377643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.377757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.377770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.37861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.378643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.378756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.37961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.37964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.379756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.38061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.38062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.380643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.380756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.38161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.381643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.381757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.381770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.38261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.382643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.382756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.38361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.383629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.383638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.383652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 94, - "ts": 1.38367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.383692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.3837068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3837475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1710) example: Task[0x3ffb7f40]: allocated 94 bytes @ 0x3ffb87e4\n", - "ts": 1.38376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1710) example: Task[0x3ffb7f40]: allocated 94 bytes @ 0x3ffb87e4\n", - "ts": 1.38376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.383777425 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.383785425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.383796175 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.383807025 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.383819975 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.3838287 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3838366 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.38384515 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.38385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.38386625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.38387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.383883275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.383892725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.383901925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.38391675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1710) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.383966075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1710) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.383966075 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.3839845 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.38400305 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.38401575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.38402455 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.384040125 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.38461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.384629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3846388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.384652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 188, - "ts": 1.384677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.3846897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.384703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3847475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1711) example: Task[0x3ffb82a0]: allocated 188 bytes @ 0x3ffb4b10\n", - "ts": 1.384769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1711) example: Task[0x3ffb82a0]: allocated 188 bytes @ 0x3ffb4b10\n", - "ts": 1.384769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.38478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.38478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.384800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.3848109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.384823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.38483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.384840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.384849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.38486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.384870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.38487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.384887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.3848966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3849058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.384920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1711) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.384969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1711) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.384969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.384985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.385007925 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.3850206 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3850294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.385044975 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.38561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.385629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3856388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.385652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 282, - "ts": 1.385676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.385689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.385703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3857475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1712) example: Task[0x3ffb8600]: allocated 282 bytes @ 0x3ffb4b10\n", - "ts": 1.38576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1712) example: Task[0x3ffb8600]: allocated 282 bytes @ 0x3ffb4b10\n", - "ts": 1.38576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3857782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.3857867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.385797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.38580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.385820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.3858294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.385837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.38584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.3858586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.385866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.38587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.385887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.385895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.385905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.38592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1712) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.3859701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1712) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.3859701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.385985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.3860036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.386016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3860252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.38604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.38661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.38662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.386643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.386756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.38761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.387643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.387757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.387770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.38861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.388643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.388756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.38961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.38964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.389756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.39061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3906326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.390646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.390756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.39161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.391643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.391757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.391770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.39261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.392643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.392756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.39361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.39364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.393756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3937706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.39461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.39462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.394643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.394756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.39561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.395643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.395757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.395770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.39661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3966295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.396643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.396756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.39761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.39764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.397756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3977706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.39861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.39862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.398643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.398756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.3987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.39961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.3996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.399643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.3997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.399757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.399770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.40061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4006295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.400643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.400756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.40161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.40164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.401756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4017706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.40261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.402631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.40264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.402756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.40361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.403643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.403757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.403770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.40461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4046295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.404643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.404756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.40561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.40564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.405756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4057706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.40661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.40662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.406643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.406756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.40761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.407643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.407757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.407770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.40861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.408643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.408756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.40961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.40964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.409756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.41061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.41062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.410643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.410756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.41161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.411643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.411757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.411770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.41261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.412643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.412756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.41361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.413629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.413638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.413652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 96, - "ts": 1.41367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.413692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.4137068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4137475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1740) example: Task[0x3ffb7f40]: allocated 96 bytes @ 0x3ffb87e4\n", - "ts": 1.41376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1740) example: Task[0x3ffb7f40]: allocated 96 bytes @ 0x3ffb87e4\n", - "ts": 1.41376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.413777425 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.413785425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.413796175 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.413807025 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.413819975 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.4138287 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4138366 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.41384515 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.41385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.41386625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.41387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.413883275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.413892725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.413901925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.41391675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1740) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.413966075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1740) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.413966075 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.4139845 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.41400305 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.41401575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.41402455 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.414040125 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.41461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.414629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4146388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.414652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 192, - "ts": 1.414677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.4146897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.414703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4147475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1741) example: Task[0x3ffb82a0]: allocated 192 bytes @ 0x3ffb4b10\n", - "ts": 1.414769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1741) example: Task[0x3ffb82a0]: allocated 192 bytes @ 0x3ffb4b10\n", - "ts": 1.414769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.41478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.41478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.414800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.4148109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.414823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.41483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.414840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.414849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.41486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.414870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.41487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.414887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.4148966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4149058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.414920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1741) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.414969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1741) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.414969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.414985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.415005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.415018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.415027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4150429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.41561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.415629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4156388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.415652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 288, - "ts": 1.415676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.415689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.415703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4157475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1742) example: Task[0x3ffb8600]: allocated 288 bytes @ 0x3ffb4b10\n", - "ts": 1.41576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1742) example: Task[0x3ffb8600]: allocated 288 bytes @ 0x3ffb4b10\n", - "ts": 1.41576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4157782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.4157867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.415797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.41580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.415820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.4158294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.415837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.41584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.4158586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.415866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.4158792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.415887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.415895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4159058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.415920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1742) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.415970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1742) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.415970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.41598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.416003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.4160164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.416025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.416040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.41661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.41662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.416643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.416756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.41761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.417643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.417757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.417770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.41861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.418643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.418756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.41961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.41964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.419756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.42061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.420631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.42064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.420756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.42161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.421643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.421757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.421770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.42261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.422643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.422756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.42361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.42364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.423756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4237706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.42461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.42462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.424643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.424756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.42561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.425643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.425757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.425770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.42661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4266295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.426643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.426756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.42761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.42764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.427756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4277706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.42861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.42862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.428643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.428756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.42961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.429643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.429757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.429770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.43061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4306295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.430643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.430756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.43161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.43164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.431756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4317706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.43261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4326326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.432646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.432756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.43361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.433643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.433757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.433770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.43461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4346295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.434643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.434756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.43561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.43564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.435756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4357706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.43661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.43662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.436643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.436756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.43761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.437643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.437757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.437770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.43861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.438643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.438756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.43961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.43964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.439756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.44061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.44062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.440643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.440756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.44161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.441643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.441757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.441770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.44261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.442643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.442756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.44361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.443629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.443638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.443652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 98, - "ts": 1.44367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.44369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.443706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4437475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1770) example: Task[0x3ffb7f40]: allocated 98 bytes @ 0x3ffb87e4\n", - "ts": 1.443768225 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1770) example: Task[0x3ffb7f40]: allocated 98 bytes @ 0x3ffb87e4\n", - "ts": 1.443768225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.443776475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.4437847 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4437953 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.443806175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.443819125 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.443827825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.443835725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.443844275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.443857 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.443865375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.443873675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.443882425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.443891875 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.443901075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.4439159 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1770) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.4439652 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1770) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.4439652 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.443983625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.4440022 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.444014875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.444023675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.44403925 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.44461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.444629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4446388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.444652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 196, - "ts": 1.444677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.4446897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.444703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4447475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1771) example: Task[0x3ffb82a0]: allocated 196 bytes @ 0x3ffb4b10\n", - "ts": 1.444769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1771) example: Task[0x3ffb82a0]: allocated 196 bytes @ 0x3ffb4b10\n", - "ts": 1.444769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.44478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.44478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.44479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.444809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.44482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.444831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.44483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.444847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.444860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.44486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.444877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.44488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.444895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.444904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.44491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1771) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.4449687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1771) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.4449687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.4449843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.44500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.44501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.44502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.445042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.44561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.445629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4456388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.445652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 294, - "ts": 1.445676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.445689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.445703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4457475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1772) example: Task[0x3ffb8600]: allocated 294 bytes @ 0x3ffb4b10\n", - "ts": 1.44576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1772) example: Task[0x3ffb8600]: allocated 294 bytes @ 0x3ffb4b10\n", - "ts": 1.44576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4457782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.4457867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.445797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.44580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.445820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.4458294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.445837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.44584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.4458586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.445866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.44587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.445887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.445895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.445905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.44592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1772) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.4459701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1772) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.4459701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.445985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.4460036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.446016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4460252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.44604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.44661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.44662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.446643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.446756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.44761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.447643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.447757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.447770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.44861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.448643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.448756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.44961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.44964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.449756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.45061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4506326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.450646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.450756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.45161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.451643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.451757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.451770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.45261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.452643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.452756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.45361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.45364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.453756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4537706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.45461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.45462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.454643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.454756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.45561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.455643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.455757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.455770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.45661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4566295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.456643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.456756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.45761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.45764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.457756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4577706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.45861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.45862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.458643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.458756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.45961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.459643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.459757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.459770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.46061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4606295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.460643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.460756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.46161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.46164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.461756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4617706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.46261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.462631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.46264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.462756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.46361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.463643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.463757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.463770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.46461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4646295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.464643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.464756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.46561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.46564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.465756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4657706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.46661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.46662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.466643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.466756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.46761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.467643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.467757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.467770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.46861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.468643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.468756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.46961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.46964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.469756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.47061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.47062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.470643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.470756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.47161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.471643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.471757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.471770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.47261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.472643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.472756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.47361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.473629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.473638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.473652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 100, - "ts": 1.47367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.473692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.4737068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4737475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1800) example: Task[0x3ffb7f40]: allocated 100 bytes @ 0x3ffb87e4\n", - "ts": 1.473768825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1800) example: Task[0x3ffb7f40]: allocated 100 bytes @ 0x3ffb87e4\n", - "ts": 1.473768825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.473778075 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.473786225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.473796875 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.47380765 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.473820625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.473829325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.473837225 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.4738459 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.47385865 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.4738669 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.4738752 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.473884225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.473892975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.473902875 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.4739177 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1800) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.47396705 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1800) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.47396705 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.4739855 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.474004075 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.47401675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.47402555 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.474041125 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.47461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.474629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4746388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.474652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 200, - "ts": 1.474677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.4746897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.474703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4747475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1801) example: Task[0x3ffb82a0]: allocated 200 bytes @ 0x3ffb4b10\n", - "ts": 1.474769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1801) example: Task[0x3ffb82a0]: allocated 200 bytes @ 0x3ffb4b10\n", - "ts": 1.474769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.474781225 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.474789725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4748001 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.4748109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.4748239 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.47483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4748404 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.474848975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.474861625 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.474870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.474878325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4748872 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.4748966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.474905775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.4749206 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1801) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.47496985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1801) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.47496985 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.47498545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.475006525 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.475019225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.475028025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4750436 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.47561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.475629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4756388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.475652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 300, - "ts": 1.475676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.475689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.475703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4757475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1802) example: Task[0x3ffb8600]: allocated 300 bytes @ 0x3ffb4b10\n", - "ts": 1.47576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1802) example: Task[0x3ffb8600]: allocated 300 bytes @ 0x3ffb4b10\n", - "ts": 1.47576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4757782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.4757867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.475797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.47580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.475820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.4758294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.475837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.47584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.4758586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.475866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.475878175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.47588635 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.475894725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.475904975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.475919925 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1802) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.475969275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1802) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.475969275 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.47598465 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.476002775 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.4760156 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.47602435 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4760398 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.47661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.47662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.476643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.476756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.47761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.477643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.477757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.477770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.47861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.478643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.478756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.47961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.47964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.479756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.48061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4806326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.480646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.480756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.48161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.481643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.481757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.481770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.48261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.482643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.482756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.48361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.48364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.483756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4837706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.48461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.48462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.484643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.484756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.48561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.485643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.485757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.485770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.48661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4866295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.486643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.486756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.48761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.48764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.487756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4877706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.48861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.48862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.488643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.488756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.48961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.489643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.489757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.489770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.49061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4906295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.490643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.490756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.49161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.49164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.491756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4917706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.49261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4926326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.492646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.492756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.49361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.493643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.493757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.493770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.49461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4946295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.494643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.494756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.49561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.49564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.495756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4957706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.49661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.49662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.496643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.496756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.49761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.497643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.497757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.497770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.49861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.498643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.498756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.49961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.4996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.49964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.4997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.499756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.4997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.50061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.50062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.500643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.500756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.50161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.501643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.501757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.501770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.50261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.502643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.502756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.50361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.503629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.503638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.503652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 102, - "ts": 1.50367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.503692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.5037068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5037475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1830) example: Task[0x3ffb7f40]: allocated 102 bytes @ 0x3ffb87e4\n", - "ts": 1.503768825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1830) example: Task[0x3ffb7f40]: allocated 102 bytes @ 0x3ffb87e4\n", - "ts": 1.503768825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.503778075 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.503786225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.503796875 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.503807675 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.50382065 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.50382935 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.50383725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.503845925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.50385865 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.503866925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.503875175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5038842 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.50389295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.50390285 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.503917675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1830) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.503967025 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1830) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.503967025 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.5039848 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.50400335 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.50401605 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.50402485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.504040425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.50461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.504629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5046388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.504652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 204, - "ts": 1.504677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.5046897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.504703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5047475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1831) example: Task[0x3ffb82a0]: allocated 204 bytes @ 0x3ffb4b10\n", - "ts": 1.504769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1831) example: Task[0x3ffb82a0]: allocated 204 bytes @ 0x3ffb4b10\n", - "ts": 1.504769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.50478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.50478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.504800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.5048109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.504823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.50483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.504840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.504849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.50486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.504870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.504878275 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.50488715 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.504896525 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5049057 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.504920525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1831) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.504969775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1831) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.504969775 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.504985375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.50500575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.505018425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.505027225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5050428 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.50561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.505629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5056388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.505652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 306, - "ts": 1.505676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.505689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.505703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5057475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1832) example: Task[0x3ffb8600]: allocated 306 bytes @ 0x3ffb4b10\n", - "ts": 1.50576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1832) example: Task[0x3ffb8600]: allocated 306 bytes @ 0x3ffb4b10\n", - "ts": 1.50576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5057782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.5057867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.505797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.50580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.505820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.5058294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.505837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.50584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.5058586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.505866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.505879175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5058872 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.50589565 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.50590575 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.505920675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1832) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.505970025 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1832) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.505970025 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.5059854 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.506003525 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.50601635 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.506025125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.506040575 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.50661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.50662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.506643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.506756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.50761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.507643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.507757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.507770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.50861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.508643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.508756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.50961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.50964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.509756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.51061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.510631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.51064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.510756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.51161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.511643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.511757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.511770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.51261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.512643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.512756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.51361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.51364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.513756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5137706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.51461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.51462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.514643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.514756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.51561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.515643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.515757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.515770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.51661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5166295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.516643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.516756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.51761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.51764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.517756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5177706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.51861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.51862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.518643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.518756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.51961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.519643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.519757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.519770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.52061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5206295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.520643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.520756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.52161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.52164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.521756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5217706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.52261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5226326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.522646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.522756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.52361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.523643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.523757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.523770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.52461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5246295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.524643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.524756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.52561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.52564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.525756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5257706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.52661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.52662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.526643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.526756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.52761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.527643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.527757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.527770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.52861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.528643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.528756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.52961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.52964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.529756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.53061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.53062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.530643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.530756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.53161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.531643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.531757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.531770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.53261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.532643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.532756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.53361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.533629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.533638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.533652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 104, - "ts": 1.53367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.53369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.533706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5337475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1860) example: Task[0x3ffb7f40]: allocated 104 bytes @ 0x3ffb87e4\n", - "ts": 1.5337684 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1860) example: Task[0x3ffb7f40]: allocated 104 bytes @ 0x3ffb87e4\n", - "ts": 1.5337684 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.533777475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.533785875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5337964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.533807175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.53382015 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.53382885 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.53383675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.533845425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.533858175 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.533866425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.533874725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.53388375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.5338925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5339024 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.533917225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1860) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.533966575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1860) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.533966575 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.533985025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.5340036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.534016275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.534025075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.53404065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.53461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.534629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5346388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.534652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 208, - "ts": 1.534677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.5346897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.534703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5347475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1861) example: Task[0x3ffb82a0]: allocated 208 bytes @ 0x3ffb4b10\n", - "ts": 1.534769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1861) example: Task[0x3ffb82a0]: allocated 208 bytes @ 0x3ffb4b10\n", - "ts": 1.534769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.534781225 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.534789725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5348001 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.5348109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.5348239 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.53483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5348404 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.534848975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.534861625 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.534870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.534878325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5348872 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.5348966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.534905775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.5349206 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1861) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.53496985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1861) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.53496985 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.53498545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.535006425 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.535019125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.535027925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5350435 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.53561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.535629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5356388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.535652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 312, - "ts": 1.535676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.535689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.535703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5357475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1862) example: Task[0x3ffb8600]: allocated 312 bytes @ 0x3ffb4b10\n", - "ts": 1.53576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1862) example: Task[0x3ffb8600]: allocated 312 bytes @ 0x3ffb4b10\n", - "ts": 1.53576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5357782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.5357867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.535797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.53580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.535820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.5358294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.535837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.53584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.5358586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.535866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.53587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.535887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.535895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.535905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.53592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1862) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.5359701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1862) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.5359701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.535985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.5360036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.536016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5360252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.53604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.53661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.53662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.536643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.536756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.53761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.537643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.537757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.537770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.53861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.538643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.538756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.53961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.53964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.539756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.54061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5406326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.540646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.540756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.54161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.541643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.541757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.541770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.54261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.542643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.542756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.54361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.54364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.543756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5437706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.54461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.54462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.544643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.544756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.54561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.545643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.545757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.545770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.54661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5466295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.546643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.546756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.54761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.54764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.547756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5477706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.54861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.54862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.548643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.548756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.54961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.549643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.549757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.549770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.55061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5506295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.550643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.550756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.55161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.55164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.551756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5517706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.55261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5526326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.552646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.552756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.55361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.553643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.553757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.553770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.55461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5546295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.554643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.554756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.55561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.55564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.555756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5557706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.55661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.55662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.556643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.556756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.55761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.557643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.557757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.557770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.55861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.558643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.558756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.55961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.55964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.559756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.56061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.56062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.560643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.560756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.56161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.561643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.561757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.561770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.56261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.562643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.562756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.56361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.563629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.563638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.563652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 106, - "ts": 1.56367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.563692625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.5637067 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5637475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1890) example: Task[0x3ffb7f40]: allocated 106 bytes @ 0x3ffb87e4\n", - "ts": 1.5637688 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1890) example: Task[0x3ffb7f40]: allocated 106 bytes @ 0x3ffb87e4\n", - "ts": 1.5637688 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.56377705 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.5637852 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5637961 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.563806875 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.56381985 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.56382855 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.56383645 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.563845125 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.563857875 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.563866125 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.563874425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.56388345 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.5638922 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5639021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.563916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1890) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.563966275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1890) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.563966275 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.563984725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.564003275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.564015975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.564024775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.56404035 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.56461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.564629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5646388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.564652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 212, - "ts": 1.564677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.5646897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.564703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5647475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1891) example: Task[0x3ffb82a0]: allocated 212 bytes @ 0x3ffb4b10\n", - "ts": 1.564769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1891) example: Task[0x3ffb82a0]: allocated 212 bytes @ 0x3ffb4b10\n", - "ts": 1.564769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.56478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.56478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.56479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.564809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.56482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.564831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.56483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.564847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.564860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.56486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.564877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.56488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.564895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.564904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.56491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1891) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.5649687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1891) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.5649687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.5649843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.56500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.56501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.56502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.565042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.56561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.565629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5656388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.565652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 318, - "ts": 1.565676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.565689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.565703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5657475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1892) example: Task[0x3ffb8600]: allocated 318 bytes @ 0x3ffb4b10\n", - "ts": 1.56576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1892) example: Task[0x3ffb8600]: allocated 318 bytes @ 0x3ffb4b10\n", - "ts": 1.56576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5657782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.5657867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.565797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.56580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.565820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.5658294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.565837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.56584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.5658586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.565866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.56587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.565887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.565895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.565905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.56592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1892) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.5659701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1892) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.5659701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.565985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.5660036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.566016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5660252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.56604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.56661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.56662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.566643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.566756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.56761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.567643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.567757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.567770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.56861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.568643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.568756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.56961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.56964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.569756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.57061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5706326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.570646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.570756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.57161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.571643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.571757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.571770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.57261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.572643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.572756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.57361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.57364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.573756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5737706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.57461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.57462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.574643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.574756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.57561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.575643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.575757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.575770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.57661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5766295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.576643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.576756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.57761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.57764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.577756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5777706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.57861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.57862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.578643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.578756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.57961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.579643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.579757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.579770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.58061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5806295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.580643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.580756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.58161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.58164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.581756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5817706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.58261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.582631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.58264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.582756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.58361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.583643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.583757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.583770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.58461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5846295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.584643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.584756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.58561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.58564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.585756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5857706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.58661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.58662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.586643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.586756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.58761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.587643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.587757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.587770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.58861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.588643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.588756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.58961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.58964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.589756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.59061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.59062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.590643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.590756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.59161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.591643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.591757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.591770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.59261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.592643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.592756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.59361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.593629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.593638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.593652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 108, - "ts": 1.59367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.593692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.5937068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5937475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1920) example: Task[0x3ffb7f40]: allocated 108 bytes @ 0x3ffb87e4\n", - "ts": 1.593768825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1920) example: Task[0x3ffb7f40]: allocated 108 bytes @ 0x3ffb87e4\n", - "ts": 1.593768825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.593778075 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.593786225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.593796875 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.593807675 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.59382065 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.59382935 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.59383725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.593845925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.59385865 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.593866925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.593875225 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.59388425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.593892975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5939029 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.593917725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1920) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.593967075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1920) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.593967075 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.593985525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.594004075 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.594016775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.594025575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.59404115 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.59461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.594629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5946388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.594652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 216, - "ts": 1.594677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.5946897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.594703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5947475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1921) example: Task[0x3ffb82a0]: allocated 216 bytes @ 0x3ffb4b10\n", - "ts": 1.594769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1921) example: Task[0x3ffb82a0]: allocated 216 bytes @ 0x3ffb4b10\n", - "ts": 1.594769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.594781225 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.594789725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5948001 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.5948109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.5948239 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.59483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5948404 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.594848975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.594861625 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.594870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.594878325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5948872 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.5948966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.594905775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.5949206 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1921) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.59496985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1921) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.59496985 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.59498545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.595006525 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.595019225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.595028025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5950436 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.59561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.595629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5956388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.595652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 324, - "ts": 1.595676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.595689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.595703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5957475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1922) example: Task[0x3ffb8600]: allocated 324 bytes @ 0x3ffb4b10\n", - "ts": 1.59576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1922) example: Task[0x3ffb8600]: allocated 324 bytes @ 0x3ffb4b10\n", - "ts": 1.59576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5957782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.5957867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.595797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.59580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.595820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.5958294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.595837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.59584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.5958586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.595866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.595878175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.59588635 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.595894725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.595904975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.595919925 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1922) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.595969275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1922) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.595969275 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.59598465 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.596002775 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.5960156 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.59602435 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5960398 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.59661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.59662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.596643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.596756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.59761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.597643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.597757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.597770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.59861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.598643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.598756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.59961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.5996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.59964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.5997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.599756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.5997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.60061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6006326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.600646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.600756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.60161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.601643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.601757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.601770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.60261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.602643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.602756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.60361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.60364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.603756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6037706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.60461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.60462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.604643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.604756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.60561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.605643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.605757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.605770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.60661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6066295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.606643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.606756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.60761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.60764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.607756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6077706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.60861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.60862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.608643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.608756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.60961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.609643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.609757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.609770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.61061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6106295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.610643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.610756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.61161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.61164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.611756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6117706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.61261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6126326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.612646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.612756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.61361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.613643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.613757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.613770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.61461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6146295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.614643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.614756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.61561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.61564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.615756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6157706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.61661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.61662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.616643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.616756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.61761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.617643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.617757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.617770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.61861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.618643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.618756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.61961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.61964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.619756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.62061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.62062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.620643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.620756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.62161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.621643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.621757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.621770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.62261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.622643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.622756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.62361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.623629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.623638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.623652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 110, - "ts": 1.62367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.623692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.6237068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6237475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1950) example: Task[0x3ffb7f40]: allocated 110 bytes @ 0x3ffb87e4\n", - "ts": 1.623768825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1950) example: Task[0x3ffb7f40]: allocated 110 bytes @ 0x3ffb87e4\n", - "ts": 1.623768825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.623778075 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.623786225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.623796875 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.623807675 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.62382065 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.62382935 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.62383725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.623845925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.62385865 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.623866925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.623875225 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.62388425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.623892975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6239029 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.623917725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1950) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.623967075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1950) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.623967075 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.62398485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.6240034 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.6240161 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6240249 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.624040475 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.62461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.624629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6246388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.624652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 220, - "ts": 1.624677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.6246897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.624703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6247475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1951) example: Task[0x3ffb82a0]: allocated 220 bytes @ 0x3ffb4b10\n", - "ts": 1.624769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1951) example: Task[0x3ffb82a0]: allocated 220 bytes @ 0x3ffb4b10\n", - "ts": 1.624769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.62478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.62478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.624800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.6248109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.624823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.62483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.624840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.624849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.62486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.624870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.62487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.624887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.6248966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6249058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.624920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1951) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.624969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1951) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.624969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.624985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.625005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.625018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.625027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6250429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.62561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.625629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6256388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.625652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 330, - "ts": 1.625676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.625689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.625703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6257475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1952) example: Task[0x3ffb8600]: allocated 330 bytes @ 0x3ffb4b10\n", - "ts": 1.62576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1952) example: Task[0x3ffb8600]: allocated 330 bytes @ 0x3ffb4b10\n", - "ts": 1.62576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6257782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.6257867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.625797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.62580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.625820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.6258294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.625837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.62584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.6258586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.625866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.6258792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.625887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.625895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6259058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.625920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1952) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.625970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1952) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.625970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.62598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.626003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.6260164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.626025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.626040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.62661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.62662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.626643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.626756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.62761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.627643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.627757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.627770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.62861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.628643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.628756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.62961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.62964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.629756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.63061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.630631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.63064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.630756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.63161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.631643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.631757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.631770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.63261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.632643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.632756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.63361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.63364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.633756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6337706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.63461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.63462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.634643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.634756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.63561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.635643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.635757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.635770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.63661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6366295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.636643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.636756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.63761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.63764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.637756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6377706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.63861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.63862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.638643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.638756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.63961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.639643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.639757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.639770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.64061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6406295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.640643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.640756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.64161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.64164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.641756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6417706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.64261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6426326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.642646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.642756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.64361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.643643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.643757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.643770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.64461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6446295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.644643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.644756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.64561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.64564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.645756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6457706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.64661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.64662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.646643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.646756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.64761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.647643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.647757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.647770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.64861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.648643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.648756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.64961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.64964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.649756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.65061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.65062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.650643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.650756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.65161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.651643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.651757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.651770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.65261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.652643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.652756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.65361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.653629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.653638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.653652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 112, - "ts": 1.65367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.65369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.653706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6537475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1980) example: Task[0x3ffb7f40]: allocated 112 bytes @ 0x3ffb87e4\n", - "ts": 1.6537684 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1980) example: Task[0x3ffb7f40]: allocated 112 bytes @ 0x3ffb87e4\n", - "ts": 1.6537684 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.653777475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.653785875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6537964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.653807175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.65382015 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.65382885 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.65383675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.653845425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.653858175 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.653866425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.653874725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.65388375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.6538925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6539024 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.653917225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1980) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.653966575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1980) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.653966575 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.653985025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.6540036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.654016275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.654025075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.65404065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.65461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.654629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6546388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.654652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 224, - "ts": 1.654677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.6546897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.654703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6547475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1981) example: Task[0x3ffb82a0]: allocated 224 bytes @ 0x3ffb4b10\n", - "ts": 1.654769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1981) example: Task[0x3ffb82a0]: allocated 224 bytes @ 0x3ffb4b10\n", - "ts": 1.654769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.654781225 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.654789725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6548001 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.6548109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.6548239 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.65483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6548404 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.654848975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.654861625 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.654870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.654878325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6548872 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.6548966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.654905775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.6549206 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1981) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.65496985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1981) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.65496985 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.65498545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.655006425 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.655019125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.655027925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6550435 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.65561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.655629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6556388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.655652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 336, - "ts": 1.655676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.655689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.655703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6557475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1982) example: Task[0x3ffb8600]: allocated 336 bytes @ 0x3ffb4b10\n", - "ts": 1.65576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1982) example: Task[0x3ffb8600]: allocated 336 bytes @ 0x3ffb4b10\n", - "ts": 1.65576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6557782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.6557867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.655797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.65580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.655820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.6558294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.655837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.65584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.6558586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.655866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.65587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.655887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.655895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.655905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.65592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1982) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.6559701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (1982) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.6559701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.655985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.6560036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.656016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6560252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.65604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.65661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.65662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.656643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.656756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.65761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.657643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.657757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.657770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.65861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.658643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.658756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.65961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.65964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.659756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.66061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6606326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.660646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.660756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.66161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.661643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.661757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.661770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.66261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.662643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.662756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.66361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.66364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.663756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6637706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.66461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.66462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.664643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.664756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.66561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.665643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.665757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.665770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.66661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6666295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.666643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.666756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.66761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.66764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.667756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6677706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.66861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.66862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.668643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.668756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.66961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.669643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.669757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.669770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.67061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6706295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.670643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.670756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.67161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.67164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.671756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6717706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.67261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.672633975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6726476 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.672756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.67361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.673643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.673757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.673770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.67461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6746295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.674643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.674756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.67561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.67564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.675756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6757706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.67661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.67662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.676643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.676756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.67761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.677643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.677757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.677770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.67861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.678643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.678756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.67961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.67964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.679756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.68061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.68062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.680643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.680756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.68161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.681643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.681757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.681770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.68261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.682643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.682756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.68361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.683629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.683638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.683652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 114, - "ts": 1.68367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.68369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.683706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6837475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2010) example: Task[0x3ffb7f40]: allocated 114 bytes @ 0x3ffb87e4\n", - "ts": 1.6837684 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2010) example: Task[0x3ffb7f40]: allocated 114 bytes @ 0x3ffb87e4\n", - "ts": 1.6837684 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.683777475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.683785875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6837964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.683807175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.68382015 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.68382885 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.68383675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.683845425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.683858175 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.683866425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.683874725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.68388375 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.6838925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6839024 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.683917225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2010) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.683966575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2010) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.683966575 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.683985025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.6840036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.684016275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.684025075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.68404065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.68461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.684629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6846388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.684652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 228, - "ts": 1.684677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.6846897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.684703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6847475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2011) example: Task[0x3ffb82a0]: allocated 228 bytes @ 0x3ffb4b10\n", - "ts": 1.684769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2011) example: Task[0x3ffb82a0]: allocated 228 bytes @ 0x3ffb4b10\n", - "ts": 1.684769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.684781225 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.684789725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6848001 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.6848109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.6848239 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.68483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6848404 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.684848975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.684861625 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.684870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.684878325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6848872 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.6848966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.684905775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.6849206 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2011) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.68496985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2011) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.68496985 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.68498545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.685006425 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.685019125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.685027925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6850435 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.68561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.685629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6856388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.685652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 342, - "ts": 1.685676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.685689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.685703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6857475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2012) example: Task[0x3ffb8600]: allocated 342 bytes @ 0x3ffb4b10\n", - "ts": 1.68576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2012) example: Task[0x3ffb8600]: allocated 342 bytes @ 0x3ffb4b10\n", - "ts": 1.68576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6857782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.6857867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.685797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.68580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.685820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.6858294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.685837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.68584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.6858586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.685866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.68587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.685887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.685895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.685905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.68592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2012) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.6859701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2012) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.6859701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.685985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.6860036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.686016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6860252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.68604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.68661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.68662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.686643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.686756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.68761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.687643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.687757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.687770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.68861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.688643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.688756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.68961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.68964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.689756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.69061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6906326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.690646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.690756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.69161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.691643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.691757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.691770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.69261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.692643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.692756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.69361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.69364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.693756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6937706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.69461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.69462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.694643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.694756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.69561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.695643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.695757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.695770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.69661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6966295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.696643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.696756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.69761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.69764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.697756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6977706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.69861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.69862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.698643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.698756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.6987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.69961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.6996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.699643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.6997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.699757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.699770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.70061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7006295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.700643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.700756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.70161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.70164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.701756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7017706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.70261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7026326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.702646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.702756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.70361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.703643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.703757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.703770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.70461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7046295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.704643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.704756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.70561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.70564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.705756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7057706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.70661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.70662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.706643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.706756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.70761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.707643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.707757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.707770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.70861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.708643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.708756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.70961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.70964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.709756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.71061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.71062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.710643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.710756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.71161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.711643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.711757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.711770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.71261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.712643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.712756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.71361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.713629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.713638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.713652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 116, - "ts": 1.71367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.713692625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.7137067 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7137475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2040) example: Task[0x3ffb7f40]: allocated 116 bytes @ 0x3ffb87e4\n", - "ts": 1.7137688 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2040) example: Task[0x3ffb7f40]: allocated 116 bytes @ 0x3ffb87e4\n", - "ts": 1.7137688 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.71377705 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.7137852 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7137961 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.713806875 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.71381985 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.71382855 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.71383645 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.713845125 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.713857875 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.713866125 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.713874425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.71388345 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.7138922 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7139021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.713916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2040) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.713966275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2040) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.713966275 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.713984725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.714003275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.714015975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.714024775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.71404035 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.71461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.714629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7146388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.714652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 232, - "ts": 1.714677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.7146897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.714703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7147475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2041) example: Task[0x3ffb82a0]: allocated 232 bytes @ 0x3ffb4b10\n", - "ts": 1.714769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2041) example: Task[0x3ffb82a0]: allocated 232 bytes @ 0x3ffb4b10\n", - "ts": 1.714769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.71478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.71478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.71479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.714809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.71482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.714831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.71483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.714847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.714860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.71486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.714877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.71488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.714895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.714904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.71491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2041) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.7149687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2041) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.7149687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.7149843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.71500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.71501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.71502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.715042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.71561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.715629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7156388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.715652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 348, - "ts": 1.715676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.715689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.715703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7157475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2042) example: Task[0x3ffb8600]: allocated 348 bytes @ 0x3ffb4b10\n", - "ts": 1.71576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2042) example: Task[0x3ffb8600]: allocated 348 bytes @ 0x3ffb4b10\n", - "ts": 1.71576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7157782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.7157867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.715797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.71580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.715820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.7158294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.715837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.71584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.7158586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.715866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.71587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.715887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.715895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.715905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.71592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2042) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.7159701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2042) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.7159701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.715985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.7160036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.716016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7160252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.71604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.71661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.71662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.716643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.716756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.71761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.717643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.717757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.717770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.71861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.718643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.718756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.71961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.71964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.719756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.72061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7206326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.720646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.720756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.72161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.721643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.721757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.721770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.72261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.722643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.722756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.72361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.72364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.723756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7237706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.72461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.72462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.724643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.724756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.72561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.725643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.725757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.725770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.72661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7266295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.726643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.726756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.72761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.72764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.727756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7277706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.72861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.72862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.728643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.728756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.72961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.729643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.729757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.729770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.73061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7306295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.730643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.730756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.73161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.73164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.731756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7317706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.73261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.732631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.73264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.732756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.73361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.733643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.733757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.733770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.73461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7346295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.734643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.734756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.73561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.73564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.735756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7357706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.73661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.73662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.736643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.736756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.73761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.737643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.737757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.737770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.73861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.738643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.738756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.73961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.73964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.739756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.74061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.74062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.740643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.740756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.74161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.741643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.741757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.741770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.74261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.742643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.742756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.74361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.743629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.743638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.743652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 118, - "ts": 1.74367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.743692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.7437068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7437475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2070) example: Task[0x3ffb7f40]: allocated 118 bytes @ 0x3ffb87e4\n", - "ts": 1.743768825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2070) example: Task[0x3ffb7f40]: allocated 118 bytes @ 0x3ffb87e4\n", - "ts": 1.743768825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.743778075 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.743786225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.743796875 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.743807675 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.74382065 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.74382935 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.74383725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.743845925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.74385865 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.743866925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.743875225 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.74388425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.743892975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7439029 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.743917725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2070) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.743967075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2070) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.743967075 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.743985525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.744004075 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.744016775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.744025575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.74404115 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.74461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.744629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7446388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.744652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 236, - "ts": 1.744677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.7446897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.744703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7447475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2071) example: Task[0x3ffb82a0]: allocated 236 bytes @ 0x3ffb4b10\n", - "ts": 1.744769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2071) example: Task[0x3ffb82a0]: allocated 236 bytes @ 0x3ffb4b10\n", - "ts": 1.744769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.744781225 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.744789725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7448001 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.7448109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.7448239 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.74483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7448404 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.744848975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.744861625 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.744870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.744878325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7448872 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.7448966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.744905775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.7449206 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2071) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.74496985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2071) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.74496985 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.74498545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.745006525 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.745019225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.745028025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7450436 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.74561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.745629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7456388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.745652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 354, - "ts": 1.745676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.745689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.745703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7457475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2072) example: Task[0x3ffb8600]: allocated 354 bytes @ 0x3ffb4b10\n", - "ts": 1.74576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2072) example: Task[0x3ffb8600]: allocated 354 bytes @ 0x3ffb4b10\n", - "ts": 1.74576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7457782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.7457867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.745797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.74580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.745820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.7458294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.745837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.74584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.7458586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.745866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.745878175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.74588635 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.745894725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.745904975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.745919925 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2072) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.745969275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2072) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.745969275 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.74598465 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.746002775 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.7460156 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.74602435 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7460398 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.74661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.74662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.746643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.746756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.74761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.747643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.747757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.747770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.74861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.748643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.748756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.74961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.74964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.749756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.75061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7506326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.750646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.750756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.75161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.751643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.751757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.751770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.75261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.752643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.752756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.75361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.75364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.753756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7537706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.75461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.75462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.754643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.754756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.75561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.755643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.755757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.755770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.75661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7566295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.756643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.756756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.75761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.75764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.757756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7577706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.75861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.75862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.758643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.758756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.75961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.759643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.759757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.759770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.76061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7606295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.760643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.760756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.76161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.76164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.761756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7617706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.76261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7626326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.762646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.762756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.76361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.763643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.763757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.763770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.76461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7646295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.764643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.764756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.76561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.76564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.765756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7657706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.76661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.76662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.766643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.766756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.76761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.767643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.767757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.767770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.76861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.768643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.768756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.76961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.76964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.769756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.77061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.77062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.770643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.770756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.77161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.771643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.771757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.771770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.77261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.772643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.772756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.77361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.773629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.773638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.773652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 120, - "ts": 1.77367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.773692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.7737068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7737475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2100) example: Task[0x3ffb7f40]: allocated 120 bytes @ 0x3ffb87e4\n", - "ts": 1.773768825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2100) example: Task[0x3ffb7f40]: allocated 120 bytes @ 0x3ffb87e4\n", - "ts": 1.773768825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.773778075 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.773786225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.773796875 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.77380765 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.773820625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.773829325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.773837225 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.7738459 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.77385865 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.7738669 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.7738752 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.773884225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.773892975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.773902875 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.7739177 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2100) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.77396705 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2100) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.77396705 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.773984825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.7740034 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.774016075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.774024875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.77404045 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.77461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.774629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7746388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.774652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 240, - "ts": 1.774677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.7746897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.774703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7747475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2101) example: Task[0x3ffb82a0]: allocated 240 bytes @ 0x3ffb4b10\n", - "ts": 1.774769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2101) example: Task[0x3ffb82a0]: allocated 240 bytes @ 0x3ffb4b10\n", - "ts": 1.774769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.77478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.77478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.774800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.7748109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.774823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.77483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.774840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.774849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.77486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.774870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.77487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.774887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.7748966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7749058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.774920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2101) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.774969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2101) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.774969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.774985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.775005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.775018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.775027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7750429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.77561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.775629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7756388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.775652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 360, - "ts": 1.775676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.775689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.775703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7757475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2102) example: Task[0x3ffb8600]: allocated 360 bytes @ 0x3ffb4b10\n", - "ts": 1.77576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2102) example: Task[0x3ffb8600]: allocated 360 bytes @ 0x3ffb4b10\n", - "ts": 1.77576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7757782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.7757867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.775797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.77580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.775820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.7758294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.775837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.77584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.7758586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.775866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.7758792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.775887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.775895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7759058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.775920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2102) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.775970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2102) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.775970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.77598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.776003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.7760164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.776025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.776040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.77661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.77662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.776643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.776756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.77761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.777643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.777757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.777770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.77861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.778643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.778756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.77961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.77964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.779756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.78061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.780631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.78064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.780756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.78161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.781643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.781757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.781770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.78261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.782643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.782756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.78361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.78364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.783756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7837706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.78461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.78462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.784643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.784756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.78561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.785643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.785757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.785770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.78661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7866295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.786643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.786756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.78761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.78764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.787756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7877706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.78861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.78862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.788643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.788756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.78961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.789643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.789757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.789770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.79061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7906295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.790643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.790756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.79161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.79164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.791756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7917706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.79261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7926326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.792646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.792756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.79361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.793643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.793757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.793770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.79461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7946295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.794643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.794756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.79561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.79564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.795756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7957706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.79661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.79662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.796643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.796756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.79761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.797643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.797757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.797770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.79861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.798643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.798756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.79961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.7996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.79964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.7997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.799756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.7997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.80061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.80062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.800643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.800756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.80161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.801643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.801757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.801770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.80261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.802643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.802756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.80361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.803629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.803638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.803652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 122, - "ts": 1.80367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.80369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.803706125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8037475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2130) example: Task[0x3ffb7f40]: allocated 122 bytes @ 0x3ffb87e4\n", - "ts": 1.8037684 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2130) example: Task[0x3ffb7f40]: allocated 122 bytes @ 0x3ffb87e4\n", - "ts": 1.8037684 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.803777475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.803785875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8037964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.803807175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.80382015 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.80382885 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.80383675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.803845425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.803858175 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.803866425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.8038747 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.803883725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.80389245 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.80390235 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.803917175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2130) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.803966525 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2130) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.803966525 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.803984975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.80400355 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.804016225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.804025025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8040406 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.80461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.804629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8046388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.804652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 244, - "ts": 1.804677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.8046897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.804703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8047475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2131) example: Task[0x3ffb82a0]: allocated 244 bytes @ 0x3ffb4b10\n", - "ts": 1.804769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2131) example: Task[0x3ffb82a0]: allocated 244 bytes @ 0x3ffb4b10\n", - "ts": 1.804769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.804781225 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.804789725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8048001 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.8048109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.8048239 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.80483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8048404 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.804848975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.804861625 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.804870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.804878275 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.80488715 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.8048965 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8049057 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.804920525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2131) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.804969775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2131) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.804969775 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.804985375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.80500635 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.805019025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.805027825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8050434 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.80561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.805629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8056388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.805652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 366, - "ts": 1.805676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.805689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.805703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8057475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2132) example: Task[0x3ffb8600]: allocated 366 bytes @ 0x3ffb4b10\n", - "ts": 1.80576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2132) example: Task[0x3ffb8600]: allocated 366 bytes @ 0x3ffb4b10\n", - "ts": 1.80576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8057782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.8057867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.805797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.80580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.805820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.8058294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.805837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.80584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.8058586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.805866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.805879175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8058872 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.80589565 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.80590575 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.805920675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2132) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.805970025 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2132) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.805970025 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.8059854 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.806003525 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.80601635 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.806025125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.806040575 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.80661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.80662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.806643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.806756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.80761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.807643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.807757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.807770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.80861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.808643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.808756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.80961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.80964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.809756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.81061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8106326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.810646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.810756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.81161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.811643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.811757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.811770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.81261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.812643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.812756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.81361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.81364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.813756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8137706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.81461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.81462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.814643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.814756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.81561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.815643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.815757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.815770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.81661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8166295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.816643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.816756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.81761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.81764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.817756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8177706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.81861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.81862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.818643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.818756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.81961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.819643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.819757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.819770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.82061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8206295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.820643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.820756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.82161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.82164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.821756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8217706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.82261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8226326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.822646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.822756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.82361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.823643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.823757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.823770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.82461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8246295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.824643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.824756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.82561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.82564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.825756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8257706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.82661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.82662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.826643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.826756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.82761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.827643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.827757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.827770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.82861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.828643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.828756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.82961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.82964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.829756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.83061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.83062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.830643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.830756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.83161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.831643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.831757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.831770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.83261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.832643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.832756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.83361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.833629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.833638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.833652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 124, - "ts": 1.83367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.833692625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.8337067 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8337475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2160) example: Task[0x3ffb7f40]: allocated 124 bytes @ 0x3ffb87e4\n", - "ts": 1.8337688 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2160) example: Task[0x3ffb7f40]: allocated 124 bytes @ 0x3ffb87e4\n", - "ts": 1.8337688 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.83377705 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.8337852 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8337961 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.833806875 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.83381985 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.83382855 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.83383645 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.833845125 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.833857875 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.833866125 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.833874425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.83388345 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.8338922 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8339021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.833916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2160) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.833966275 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2160) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.833966275 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.833984725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.834003275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.834015975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.834024775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.83404035 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.83461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.834629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8346388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.834652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 248, - "ts": 1.834677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.8346897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.834703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8347475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2161) example: Task[0x3ffb82a0]: allocated 248 bytes @ 0x3ffb4b10\n", - "ts": 1.834769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2161) example: Task[0x3ffb82a0]: allocated 248 bytes @ 0x3ffb4b10\n", - "ts": 1.834769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.83478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.83478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.83479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.834809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.83482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.834831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.83483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.834847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.834860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.83486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.834877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.83488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.834895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.834904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.83491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2161) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.8349687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2161) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.8349687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.8349843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.83500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.83501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.83502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.835042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.83561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.835629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8356388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.835652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 372, - "ts": 1.835676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.835689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.835703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8357475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2162) example: Task[0x3ffb8600]: allocated 372 bytes @ 0x3ffb4b10\n", - "ts": 1.83576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2162) example: Task[0x3ffb8600]: allocated 372 bytes @ 0x3ffb4b10\n", - "ts": 1.83576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8357782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.8357867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.835797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.83580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.835820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.8358294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.835837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.83584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.8358586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.835866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.83587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.835887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.835895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.835905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.83592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2162) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.8359701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2162) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.8359701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.835985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.8360036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.836016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8360252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.83604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.83661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.83662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.836643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.836756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.83761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.837643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.837757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.837770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.83861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.838643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.838756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.83961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.83964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.839756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.84061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8406326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.840646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.840756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.84161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.841643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.841757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.841770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.84261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.842643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.842756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.84361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.84364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.843756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8437706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.84461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.84462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.844643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.844756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.84561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.845643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.845757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.845770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.84661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8466295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.846643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.846756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.84761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.84764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.847756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8477706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.84861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.84862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.848643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.848756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.84961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.849643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.849757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.849770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.85061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8506295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.850643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.850756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.85161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.85164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.851756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8517706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.85261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.852631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.85264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.852756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.85361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.853643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.853757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.853770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.85461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8546295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.854643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.854756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.85561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.85564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.855756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8557706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.85661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.85662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.856643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.856756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.85761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.857643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.857757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.857770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.85861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.858643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.858756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.85961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.85964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.859756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.86061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.86062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.860643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.860756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.86161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.861643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.861757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.861770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.86261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.862643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.862756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.86361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.863629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.863638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.863652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 126, - "ts": 1.86367695 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.863692725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.8637068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8637475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2190) example: Task[0x3ffb7f40]: allocated 126 bytes @ 0x3ffb87e4\n", - "ts": 1.863768825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2190) example: Task[0x3ffb7f40]: allocated 126 bytes @ 0x3ffb87e4\n", - "ts": 1.863768825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.863778075 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.863786225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.863796875 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.863807675 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.86382065 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.86382935 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.86383725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.863845925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.86385865 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.863866925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.863875225 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.86388425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.863892975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8639029 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.863917725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2190) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.863967075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2190) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.863967075 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.863985525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.864004075 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.864016775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.864025575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.86404115 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.86461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.864629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8646388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.864652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 252, - "ts": 1.864677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.8646897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.864703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8647475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2191) example: Task[0x3ffb82a0]: allocated 252 bytes @ 0x3ffb4b10\n", - "ts": 1.864769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2191) example: Task[0x3ffb82a0]: allocated 252 bytes @ 0x3ffb4b10\n", - "ts": 1.864769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.864781225 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.864789725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8648001 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.8648109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.8648239 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.86483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8648404 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.864848975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.864861625 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.864870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.864878325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8648872 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.8648966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.864905775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.8649206 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2191) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.86496985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2191) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.86496985 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.86498545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.865006525 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.865019225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.865028025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8650436 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.86561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.865629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8656388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.865652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 378, - "ts": 1.865676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.865689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.865703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8657475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2192) example: Task[0x3ffb8600]: allocated 378 bytes @ 0x3ffb4b10\n", - "ts": 1.86576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2192) example: Task[0x3ffb8600]: allocated 378 bytes @ 0x3ffb4b10\n", - "ts": 1.86576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8657782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.8657867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.865797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.86580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.865820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.8658294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.865837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.86584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.8658586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.865866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.865878175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.86588635 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.865894725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.865904975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.865919925 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2192) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.865969275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2192) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.865969275 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.86598465 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.866002775 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.8660156 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.86602435 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8660398 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.86661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.86662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.866643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.866756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.86761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.867643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.867757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.867770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.86861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.868643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.868756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.86961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.86964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.869756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.87061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8706326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.870646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.870756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.87161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.871643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.871757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.871770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.87261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.872643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.872756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.87361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.87364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.873756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8737706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.87461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.87462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.874643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.874756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.87561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.875643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.875757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.875770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.87661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8766295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.876643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.876756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.87761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.87764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.877756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8777706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.87861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.87862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.878643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.878756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.87961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.879643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.879757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.879770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.88061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8806295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.880643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.880756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.88161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.88164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.881756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8817706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.88261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8826326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.882646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.882756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.88361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.883643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.883757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.883770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.88461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8846295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.884643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.884756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.88561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.88564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.885756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8857706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.88661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.88662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.886643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.886756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.88761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.887643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.887757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.887770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.88861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.888643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.888756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.88961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.88964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.889756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.89061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.89062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.890643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.890756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.89161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.891643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.891757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.891770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.89261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.892643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.892756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.89361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.893629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.893638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.893652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 128, - "ts": 1.893677025 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.8936928 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.8937068 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8937475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2220) example: Task[0x3ffb7f40]: allocated 128 bytes @ 0x3ffb87e4\n", - "ts": 1.89376885 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2220) example: Task[0x3ffb7f40]: allocated 128 bytes @ 0x3ffb87e4\n", - "ts": 1.89376885 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8937769 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.893785925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8937958 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.893806575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.8938196 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.893828125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.893836075 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.8938446 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.893857225 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.893865625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.893873925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8938828 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.8938922 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8939015 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.893916325 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2220) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.893965575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2220) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.893965575 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.893983375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.894001925 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.894014625 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.894023425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.894039 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.89461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.894629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8946388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.894652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 256, - "ts": 1.894677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.8946897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.894703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8947475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2221) example: Task[0x3ffb82a0]: allocated 256 bytes @ 0x3ffb4b10\n", - "ts": 1.894769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2221) example: Task[0x3ffb82a0]: allocated 256 bytes @ 0x3ffb4b10\n", - "ts": 1.894769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.894781225 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.894789725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8948001 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.8948109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.8948239 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.89483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8948404 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.894848975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.894861625 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.894870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.894878325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8948872 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.8948966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.894905775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.8949206 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2221) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.89496985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2221) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.89496985 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.89498545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.895006525 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.895019225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.895028025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8950436 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.89561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.895629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8956388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.895652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 384, - "ts": 1.895676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.895689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.895703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8957475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2222) example: Task[0x3ffb8600]: allocated 384 bytes @ 0x3ffb4b10\n", - "ts": 1.89576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2222) example: Task[0x3ffb8600]: allocated 384 bytes @ 0x3ffb4b10\n", - "ts": 1.89576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8957782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.8957867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.895797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.89580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.895820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.8958294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.895837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.89584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.8958586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.895866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.895878175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.89588635 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.895894725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.895904975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.895919925 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2222) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.895969275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2222) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.895969275 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.89598465 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.896002775 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.8960156 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.89602435 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8960398 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.89661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.89662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.896643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.896756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.89761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.897643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.897757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.897770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.89861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.898643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.898756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.89961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.8996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.89964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.8997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.899756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.8997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.90061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9006326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.900646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.900756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.90161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.901643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.901757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.901770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.90261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.902643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.902756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.90361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.90364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.903756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9037706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.90461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.90462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.904643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.904756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.90561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.905643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.905757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.905770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.90661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9066295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.906643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.906756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.90761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.90764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.907756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9077706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.90861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.90862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.908643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.908756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.90961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.909643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.909757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.909770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.91061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9106295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.910643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.910756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.91161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.91164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.911756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9117706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.91261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9126326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.912646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.912756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.91361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.913643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.913757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.913770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.91461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9146295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.914643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.914756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.91561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.91564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.915756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9157706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.91661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.91662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.916643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.916756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.91761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.917643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.917757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.917770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.91861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.918643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.918756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.91961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.91964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.919756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.92061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.92062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.920643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.920756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.92161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.921643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.921757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.921770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.92261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.922643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.922756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.92361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.923629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.923638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.923652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 130, - "ts": 1.923676825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.9236926 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.9237066 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9237475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2250) example: Task[0x3ffb7f40]: allocated 130 bytes @ 0x3ffb87e4\n", - "ts": 1.923768875 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2250) example: Task[0x3ffb7f40]: allocated 130 bytes @ 0x3ffb87e4\n", - "ts": 1.923768875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9237772 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.923785925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.923796075 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.92380685 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.923819875 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.9238284 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.92383635 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.923844875 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.9238575 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.9238659 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.9238742 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.923883075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.923892475 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.923901775 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.9239166 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2250) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.92396585 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2250) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.92396585 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.92398365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.924001625 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.924014325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.924023125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9240387 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.92461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.924629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9246388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.924652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 260, - "ts": 1.924677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.9246897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.924703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9247475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2251) example: Task[0x3ffb82a0]: allocated 260 bytes @ 0x3ffb4b10\n", - "ts": 1.924769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2251) example: Task[0x3ffb82a0]: allocated 260 bytes @ 0x3ffb4b10\n", - "ts": 1.924769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.924781225 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.924789725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9248001 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.9248109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.9248239 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.92483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9248404 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.924848975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.924861625 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.924870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.924878325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9248872 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.9248966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.924905775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.9249206 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2251) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.92496985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2251) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.92496985 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.92498545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.925006525 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.925019225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.925028025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9250436 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.92561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.925629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9256388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.925652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 390, - "ts": 1.925676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.925689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.925703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9257475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2252) example: Task[0x3ffb8600]: allocated 390 bytes @ 0x3ffb4b10\n", - "ts": 1.92576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2252) example: Task[0x3ffb8600]: allocated 390 bytes @ 0x3ffb4b10\n", - "ts": 1.92576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9257782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.9257867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.925797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.92580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.925820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.9258294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.925837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.92584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.9258586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.925866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.925878175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.92588635 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.925894725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.925904975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.925919925 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2252) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.925969275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2252) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.925969275 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.92598465 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.926002775 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.9260156 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.92602435 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9260398 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.92661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.92662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.926643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.926756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.92761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.927643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.927757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.927770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.92861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.928643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.928756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.92961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.92964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.929756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.93061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9306326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.930646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.930756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.93161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.931643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.931757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.931770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.93261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.932643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.932756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.93361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.93364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.933756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9337706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.93461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.93462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.934643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.934756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.93561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.935643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.935757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.935770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.93661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9366295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.936643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.936756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.93761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.93764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.937756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9377706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.93861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.93862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.938643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.938756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.93961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.939643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.939757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.939770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.94061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9406295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.940643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.940756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.94161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.94164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.941756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9417706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.94261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9426326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.942646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.942756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.94361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.943643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.943757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.943770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.94461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9446295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.944643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.944756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.94561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.94564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.945756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9457706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.94661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.94662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.946643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.946756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.94761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.947643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.947757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.947770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.94861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.948643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.948756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.94961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.94964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.949756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.95061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.95062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.950643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.950756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.95161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.951643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.951757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.951770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.95261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.952643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.952756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.95361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.953629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.953638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.953652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 132, - "ts": 1.953676825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.9536926 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.9537066 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9537475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2280) example: Task[0x3ffb7f40]: allocated 132 bytes @ 0x3ffb87e4\n", - "ts": 1.953768875 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2280) example: Task[0x3ffb7f40]: allocated 132 bytes @ 0x3ffb87e4\n", - "ts": 1.953768875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9537772 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.953785925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.953796075 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.95380685 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.953819875 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.9538284 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.95383635 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.953844875 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.9538575 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.9538659 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.9538742 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.953883075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.953892475 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.953901775 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.9539166 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2280) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.95396585 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2280) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.95396585 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.95398365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.954001625 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.954014325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.954023125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9540387 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.95461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.954629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9546388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.954652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 264, - "ts": 1.954677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.9546897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.954703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9547475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2281) example: Task[0x3ffb82a0]: allocated 264 bytes @ 0x3ffb4b10\n", - "ts": 1.954769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2281) example: Task[0x3ffb82a0]: allocated 264 bytes @ 0x3ffb4b10\n", - "ts": 1.954769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.954781225 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.954789725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9548001 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.9548109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.9548239 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.95483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9548404 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.954848975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.954861625 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.954870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.954878325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9548872 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.9548966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.954905775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.9549206 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2281) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.95496985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2281) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.95496985 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.95498545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.9550079 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.9550206 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9550294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.955044975 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.95561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.955629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9556388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.955652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 396, - "ts": 1.955676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.955689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.955703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9557475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2282) example: Task[0x3ffb8600]: allocated 396 bytes @ 0x3ffb4b10\n", - "ts": 1.95576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2282) example: Task[0x3ffb8600]: allocated 396 bytes @ 0x3ffb4b10\n", - "ts": 1.95576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9557782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.9557867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.955797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.95580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.955820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.9558294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.955837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.95584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.9558586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.955866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.95587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.955887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.955895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.955905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.95592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2282) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.9559701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2282) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.9559701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.955985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.9560036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.956016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9560252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.95604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.95661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.95662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.956643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.956756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.95761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.957643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.957757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.957770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.95861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.958643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.958756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.95961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.95964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.959756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.96061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9606326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.960646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.960756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.96161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.961643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.961757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.961770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.96261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.962643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.962756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.96361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.96364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.963756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9637706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.96461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.96462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.964643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.964756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.96561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.965643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.965757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.965770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.96661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9666295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.966643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.966756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.96761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.96764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.967756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9677706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.96861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.96862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.968643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.968756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.96961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.969643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.969757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.969770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.97061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9706295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.970643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.970756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.97161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.97164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.971756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9717706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.97261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.972631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.97264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.972756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.97361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.973643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.973757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.973770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.97461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9746295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.974643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.974756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.97561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.97564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.975756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9757706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.97661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.97662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.976643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.976756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.97761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.977643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.977757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.977770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.97861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.978643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.978756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.97961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.97964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.979756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.98061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.98062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.980643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.980756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.98161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.981643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.981757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.981770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.98261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.982643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.982756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.98361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 1.983629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.983638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 1.983652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 134, - "ts": 1.98367625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.98369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.983706025 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9837475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2310) example: Task[0x3ffb7f40]: allocated 134 bytes @ 0x3ffb87e4\n", - "ts": 1.98376835 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2310) example: Task[0x3ffb7f40]: allocated 134 bytes @ 0x3ffb87e4\n", - "ts": 1.98376835 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9837775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 1.9837858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9837964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.983807175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.9838202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.983828725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.983836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 1.9838452 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 1.983857825 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.983866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 1.983874525 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9838834 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.9838928 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9839021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.983916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2310) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.983966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2310) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 1.983966175 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.98398465 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 1.984002625 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.984015325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.984024125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9840397 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.98461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 1.984629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9846388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 1.984652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 268, - "ts": 1.984677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.9846897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.984703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9847475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2311) example: Task[0x3ffb82a0]: allocated 268 bytes @ 0x3ffb4b10\n", - "ts": 1.984769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2311) example: Task[0x3ffb82a0]: allocated 268 bytes @ 0x3ffb4b10\n", - "ts": 1.984769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.98478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 1.98478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.98479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.984809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.98482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.984831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.98483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 1.984847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 1.984860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.98486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 1.984877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.98488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.984895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.984904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.98491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2311) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.9849687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2311) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 1.9849687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.9849843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 1.98500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.98501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.98502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.985042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.98561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 1.985629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9856388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 1.985652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 402, - "ts": 1.985676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.985689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.985703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9857475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2312) example: Task[0x3ffb8600]: allocated 402 bytes @ 0x3ffb4b10\n", - "ts": 1.98576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2312) example: Task[0x3ffb8600]: allocated 402 bytes @ 0x3ffb4b10\n", - "ts": 1.98576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9857782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 1.9857867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.985797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.98580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.985820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 1.9858294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.985837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 1.98584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 1.9858586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 1.985866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 1.98587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.985887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 1.985895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.985905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 1.98592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2312) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.9859701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2312) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 1.9859701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 1.985985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 1.9860036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 1.986016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9860252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.98604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.98661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.98662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.986643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.986756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.98761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.987643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.987757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.987770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.98861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.988643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.988756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.98961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.98964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.989756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.99061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9906326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.990646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.990756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.99161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.991643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.991757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.991770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.99261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.992643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.992756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.99361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.99364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.993756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9937706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.99461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.99462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.994643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.994756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.99561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.995643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.995757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.995770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.99661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9966295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.996643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.996756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.99761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.99764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.997756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9977706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.99861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.99862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.998643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.998756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.9987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.99961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.9996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.999643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 1.9997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 1.999757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 1.999770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.00061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0006295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.000643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.000756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.00161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.00164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.001756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0017706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.00261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.002631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.00264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.002756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.00361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.003643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.003757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.003770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.00461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0046295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.004643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.004756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.00561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.00564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.005756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0057706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.00661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.00662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.006643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.006756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.00761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.007643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.007757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.007770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.00861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.008643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.008756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.00961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.00964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.009756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.01061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.01062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.010643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.010756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.01161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.011643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.011757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.011770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.01261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.012643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.012756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.01361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.013629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.013638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.013652975 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 136, - "ts": 2.01367625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.01369205 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.013706025 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0137475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2340) example: Task[0x3ffb7f40]: allocated 136 bytes @ 0x3ffb87e4\n", - "ts": 2.01376835 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2340) example: Task[0x3ffb7f40]: allocated 136 bytes @ 0x3ffb87e4\n", - "ts": 2.01376835 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0137775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.0137858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0137964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.013807175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.0138202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.013828725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.013836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.0138452 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.013857825 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.013866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.013874525 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0138834 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.0138928 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0139021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.013916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2340) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 2.013966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2340) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", - "ts": 2.013966175 - }, - { - "addr": "0x3ffb87e4", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.01398465 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.014002625 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.014015325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.014024125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0140397 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.01461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.014629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0146388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.014652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 272, - "ts": 2.014677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.0146897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.014703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0147475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2341) example: Task[0x3ffb82a0]: allocated 272 bytes @ 0x3ffb4b10\n", - "ts": 2.014769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2341) example: Task[0x3ffb82a0]: allocated 272 bytes @ 0x3ffb4b10\n", - "ts": 2.014769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.01478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.01478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.01479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.014809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.01482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.014831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.01483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.014847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.014860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.01486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.014877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.01488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.014895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.014904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.01491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2341) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.0149687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2341) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.0149687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.0149843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.01500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.01501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.01502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.015042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.01561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.015629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0156388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.015652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 408, - "ts": 2.015676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.015689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.015703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0157475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2342) example: Task[0x3ffb8600]: allocated 408 bytes @ 0x3ffb4b10\n", - "ts": 2.01576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2342) example: Task[0x3ffb8600]: allocated 408 bytes @ 0x3ffb4b10\n", - "ts": 2.01576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0157782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.0157867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.015797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.01580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.015820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.0158294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.015837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.01584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.0158586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.015866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.01587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.015887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.015895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.015905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.01592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2342) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.0159701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2342) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.0159701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.015985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.0160036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.016016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0160252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.01604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.01661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.01662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.016643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.016756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.01761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.017643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.017757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.017770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.01861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.018643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.018756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.01961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.01964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.019756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.02061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0206326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.020646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.020756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.02161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.021643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.021757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.021770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.02261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.022643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.022756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.02361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.02364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.023756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0237706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.02461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.02462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.024643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.024756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.02561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.025643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.025757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.025770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.02661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0266295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.026643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.026756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.02761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.02764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.027756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0277706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.02861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.02862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.028643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.028756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.02961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.029643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.029757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.029770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.03061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0306295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.030643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.030756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.03161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.03164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.031756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0317706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.03261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.032631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.03264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.032756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.03361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.033643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.033757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.033770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.03461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0346295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.034643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.034756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.03561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.03564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.035756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0357706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.03661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.03662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.036643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.036756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.03761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.037643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.037757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.037770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.03861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.038643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.038756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.03961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.03964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.039756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.04061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.04062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.040643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.040756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.04161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.041643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.041757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.041770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.04261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.042643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.042756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.04361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.043629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.043638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.043652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 138, - "ts": 2.043677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.043692775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.043706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0437475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2370) example: Task[0x3ffb7f40]: allocated 138 bytes @ 0x3ffb4b10\n", - "ts": 2.04376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2370) example: Task[0x3ffb7f40]: allocated 138 bytes @ 0x3ffb4b10\n", - "ts": 2.04376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.043777025 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.043785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.043795925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.0438067 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.043819725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.04382825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0438362 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.043844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.04385735 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.04386575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.04387405 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.043882925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.043892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.043901625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.04391645 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2370) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.0439657 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2370) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.0439657 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.043984175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.044002175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.04401485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.04402365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.044039225 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.04461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.044629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0446388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.044652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 276, - "ts": 2.044677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.0446897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.044703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0447475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2371) example: Task[0x3ffb82a0]: allocated 276 bytes @ 0x3ffb4b10\n", - "ts": 2.044769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2371) example: Task[0x3ffb82a0]: allocated 276 bytes @ 0x3ffb4b10\n", - "ts": 2.044769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.04478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.04478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.04479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.044809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.04482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.044831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.04483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.044847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.044860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.04486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.044877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.04488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.044895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.044904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.04491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2371) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.0449687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2371) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.0449687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.0449843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.04500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.04501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.04502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.045042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.04561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.045629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0456388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.045652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 414, - "ts": 2.045676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.045689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.045703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0457475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2372) example: Task[0x3ffb8600]: allocated 414 bytes @ 0x3ffb4b10\n", - "ts": 2.04576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2372) example: Task[0x3ffb8600]: allocated 414 bytes @ 0x3ffb4b10\n", - "ts": 2.04576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0457782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.0457867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.045797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.04580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.045820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.0458294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.045837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.04584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.0458586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.045866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.04587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.045887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.045895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.045905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.04592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2372) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.0459701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2372) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.0459701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.045985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.0460036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.046016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0460252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.04604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.04661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.04662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.046643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.046756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.04761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.047643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.047757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.047770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.04861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.048643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.048756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.04961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.04964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.049756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.05061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0506326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.050646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.050756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.05161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.051643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.051757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.051770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.05261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.052643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.052756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.05361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.05364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.053756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0537706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.05461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.05462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.054643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.054756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.05561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.055643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.055757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.055770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.05661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0566295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.056643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.056756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.05761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.05764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.057756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0577706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.05861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.05862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.058643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.058756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.05961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.059643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.059757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.059770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.06061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0606295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.060643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.060756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.06161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.06164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.061756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0617706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.06261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.062631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.06264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.062756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.06361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.063643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.063757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.063770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.06461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0646295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.064643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.064756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.06561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.06564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.065756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0657706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.06661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.06662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.066643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.066756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.06761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.067643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.067757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.067770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.06861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.068643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.068756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.06961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.06964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.069756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.07061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.07062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.070643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.070756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.07161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.071643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.071757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.071770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.07261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.072643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.072756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.07361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.073629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.073638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.073652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 140, - "ts": 2.073677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.073692775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.073706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0737475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2400) example: Task[0x3ffb7f40]: allocated 140 bytes @ 0x3ffb4b10\n", - "ts": 2.07376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2400) example: Task[0x3ffb7f40]: allocated 140 bytes @ 0x3ffb4b10\n", - "ts": 2.07376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.073777025 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.073785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0737959 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.0738067 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.0738197 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.07382825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.073836175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.073844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.07385735 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.073865725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.07387405 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.073882925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.073892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0739016 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.073916425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2400) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.073965675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2400) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.073965675 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.07398415 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.07400215 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.07401485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.07402365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.074039225 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.07461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.074629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0746388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.074652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 280, - "ts": 2.074677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.0746897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.074703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0747475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2401) example: Task[0x3ffb82a0]: allocated 280 bytes @ 0x3ffb4b10\n", - "ts": 2.074769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2401) example: Task[0x3ffb82a0]: allocated 280 bytes @ 0x3ffb4b10\n", - "ts": 2.074769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.07478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.07478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.07479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.074809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.07482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.074831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.07483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.074847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.074860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.07486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.074877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.07488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.074895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.074904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.07491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2401) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.0749687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2401) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.0749687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.0749843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.07500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.07501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.07502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.075042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.07561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.075629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0756388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.075652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 420, - "ts": 2.075676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.075689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.075703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0757475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2402) example: Task[0x3ffb8600]: allocated 420 bytes @ 0x3ffb4b10\n", - "ts": 2.07576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2402) example: Task[0x3ffb8600]: allocated 420 bytes @ 0x3ffb4b10\n", - "ts": 2.07576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0757782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.0757867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.075797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.07580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.075820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.0758294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.075837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.07584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.0758586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.075866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.07587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.075887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.075895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.075905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.07592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2402) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.0759701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2402) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.0759701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.075985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.0760036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.076016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0760252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.07604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.07661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.07662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.076643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.076756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.07761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.077643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.077757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.077770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.07861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.078643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.078756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.07961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.07964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.079756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.08061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0806326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.080646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.080756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.08161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.081643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.081757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.081770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.08261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.082643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.082756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.08361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.08364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.083756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0837706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.08461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.08462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.084643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.084756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.08561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.085643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.085757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.085770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.08661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0866295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.086643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.086756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.08761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.08764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.087756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0877706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.08861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.08862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.088643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.088756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.08961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.089643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.089757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.089770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.09061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0906295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.090643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.090756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.09161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.09164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.091756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0917706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.09261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.092631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.09264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.092756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.09361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.093643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.093757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.093770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.09461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0946295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.094643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.094756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.09561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.09564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.095756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0957706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.09661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.09662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.096643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.096756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.09761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.097643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.097757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.097770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.09861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.098643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.098756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.09961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.0996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.09964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.0997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.099756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.0997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.10061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.10062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.100643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.100756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.10161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.101643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.101757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.101770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.10261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.102643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.102756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.10361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.103629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.103638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.103652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 142, - "ts": 2.103677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.103692775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.103706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1037475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2430) example: Task[0x3ffb7f40]: allocated 142 bytes @ 0x3ffb4b10\n", - "ts": 2.10376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2430) example: Task[0x3ffb7f40]: allocated 142 bytes @ 0x3ffb4b10\n", - "ts": 2.10376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.103777025 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.103785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.103795925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.1038067 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.103819725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.10382825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1038362 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.103844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.10385735 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.10386575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.103874 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.103882875 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.10389225 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.103901525 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.10391635 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2430) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.1039656 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2430) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.1039656 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.103984075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.104002075 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.104014775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.104023575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.10403915 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.10461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.104629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1046388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.104652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 284, - "ts": 2.104677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.1046897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.104703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1047475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2431) example: Task[0x3ffb82a0]: allocated 284 bytes @ 0x3ffb4b10\n", - "ts": 2.104769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2431) example: Task[0x3ffb82a0]: allocated 284 bytes @ 0x3ffb4b10\n", - "ts": 2.104769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.10478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.10478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.10479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.104809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.10482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.104831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.10483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.104847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.104860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.10486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.1048771 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.104885975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.10489535 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.104904525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.10491935 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2431) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.1049686 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2431) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.1049686 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.1049842 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.105005275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.10501795 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.10502675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.105042325 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.10561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.105629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1056388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.105652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 426, - "ts": 2.105676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.105689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.105703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1057475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2432) example: Task[0x3ffb8600]: allocated 426 bytes @ 0x3ffb4b10\n", - "ts": 2.10576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2432) example: Task[0x3ffb8600]: allocated 426 bytes @ 0x3ffb4b10\n", - "ts": 2.10576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1057782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.1057867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.105797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.10580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.105820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.1058294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.105837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.10584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.1058586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.105866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.105879175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.105887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.105895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.105905775 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.105920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2432) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.105970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2432) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.105970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.10598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.106003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.1060164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.10602515 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1060406 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.10661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.10662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.106643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.106756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.10761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.107643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.107757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.107770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.10861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.108643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.108756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.10961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.10964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.109756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.11061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1106326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.110646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.110756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.11161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.111643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.111757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.111770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.11261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.112643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.112756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.11361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.11364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.113756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1137706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.11461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.11462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.114643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.114756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.11561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.115643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.115757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.115770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.11661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1166295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.116643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.116756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.11761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.11764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.117756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1177706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.11861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.11862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.118643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.118756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.11961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.119643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.119757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.119770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.12061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1206295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.120643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.120756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.12161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.12164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.121756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1217706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.12261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.122631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.12264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.122756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.12361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.123643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.123757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.123770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.12461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1246295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.124643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.124756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.12561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.12564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.125756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1257706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.12661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.12662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.126643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.126756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.12761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.127643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.127757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.127770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.12861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.128643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.128756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.12961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.12964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.129756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.13061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.13062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.130643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.130756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.13161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.131643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.131757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.131770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.13261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.132643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.132756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.13361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.133629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.133638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.133652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 144, - "ts": 2.133677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.133692775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.133706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1337475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2460) example: Task[0x3ffb7f40]: allocated 144 bytes @ 0x3ffb4b10\n", - "ts": 2.13376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2460) example: Task[0x3ffb7f40]: allocated 144 bytes @ 0x3ffb4b10\n", - "ts": 2.13376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.133777025 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.133785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.133795925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.1338067 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.133819725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.13382825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1338362 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.133844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.13385735 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.13386575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.13387405 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.133882925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.133892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.133901625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.13391645 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2460) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.1339657 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2460) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.1339657 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.133984175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.134002175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.13401485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.13402365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.134039225 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.13461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.134629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1346388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.134652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 288, - "ts": 2.134677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.1346897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.134703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1347475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2461) example: Task[0x3ffb82a0]: allocated 288 bytes @ 0x3ffb4b10\n", - "ts": 2.134769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2461) example: Task[0x3ffb82a0]: allocated 288 bytes @ 0x3ffb4b10\n", - "ts": 2.134769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.13478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.13478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.13479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.134809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.13482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.134831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.13483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.134847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.134860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.13486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.134877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.13488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.134895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.134904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.13491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2461) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.1349687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2461) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.1349687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.1349843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.13500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.13501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.13502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.135042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.13561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.135629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1356388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.135652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 432, - "ts": 2.135676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.135689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.135703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1357475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2462) example: Task[0x3ffb8600]: allocated 432 bytes @ 0x3ffb4b10\n", - "ts": 2.13576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2462) example: Task[0x3ffb8600]: allocated 432 bytes @ 0x3ffb4b10\n", - "ts": 2.13576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1357782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.1357867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.135797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.13580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.135820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.1358294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.135837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.13584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.1358586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.135866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.13587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.135887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.135895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.135905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.13592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2462) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.1359701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2462) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.1359701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.135985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.1360036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.136016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1360252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.13604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.13661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.13662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.136643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.136756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.13761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.137643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.137757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.137770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.13861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.138643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.138756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.13961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.13964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.139756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.14061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1406326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.140646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.140756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.14161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.141643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.141757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.141770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.14261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.142643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.142756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.14361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.14364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.143756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1437706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.14461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.14462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.144643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.144756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.14561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.145643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.145757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.145770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.14661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1466295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.146643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.146756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.14761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.14764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.147756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1477706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.14861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.14862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.148643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.148756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.14961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.149643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.149757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.149770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.15061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1506295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.150643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.150756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.15161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.15164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.151756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1517706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.15261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.152631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.15264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.152756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.15361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.153643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.153757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.153770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.15461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1546295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.154643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.154756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.15561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.15564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.155756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1557706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.15661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.15662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.156643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.156756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.15761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.157643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.157757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.157770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.15861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.158643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.158756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.15961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.15964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.159756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.16061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.16062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.160643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.160756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.16161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.161643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.161757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.161770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.16261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.162643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.162756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.16361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.163629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.163638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.163652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 146, - "ts": 2.163677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.163692775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.163706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1637475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2490) example: Task[0x3ffb7f40]: allocated 146 bytes @ 0x3ffb4b10\n", - "ts": 2.16376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2490) example: Task[0x3ffb7f40]: allocated 146 bytes @ 0x3ffb4b10\n", - "ts": 2.16376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.163777025 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.163785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.163795925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.1638067 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.163819725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.16382825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1638362 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.163844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.16385735 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.16386575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.16387405 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.163882925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.163892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.163901625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.16391645 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2490) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.1639657 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2490) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.1639657 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.163984175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.164002175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.16401485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.16402365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.164039225 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.16461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.164629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1646388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.164652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 292, - "ts": 2.164677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.1646897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.164703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1647475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2491) example: Task[0x3ffb82a0]: allocated 292 bytes @ 0x3ffb4b10\n", - "ts": 2.164769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2491) example: Task[0x3ffb82a0]: allocated 292 bytes @ 0x3ffb4b10\n", - "ts": 2.164769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.16478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.16478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.16479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.164809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.16482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.164831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.16483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.164847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.164860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.16486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.164877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.16488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.164895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.164904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.16491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2491) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.1649687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2491) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.1649687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.1649843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.16500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.16501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.16502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.165042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.16561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.165629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1656388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.165652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 438, - "ts": 2.165676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.165689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.165703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1657475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2492) example: Task[0x3ffb8600]: allocated 438 bytes @ 0x3ffb4b10\n", - "ts": 2.16576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2492) example: Task[0x3ffb8600]: allocated 438 bytes @ 0x3ffb4b10\n", - "ts": 2.16576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1657782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.1657867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.165797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.16580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.165820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.1658294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.165837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.16584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.1658586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.165866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.16587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.165887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.165895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.165905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.16592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2492) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.1659701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2492) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.1659701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.165985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.1660036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.166016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1660252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.16604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.16661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.16662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.166643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.166756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.16761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.167643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.167757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.167770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.16861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.168643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.168756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.16961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.16964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.169756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.17061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1706326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.170646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.170756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.17161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.171643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.171757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.171770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.17261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.172643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.172756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.17361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.17364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.173756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1737706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.17461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.17462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.174643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.174756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.17561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.175643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.175757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.175770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.17661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1766295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.176643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.176756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.17761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.17764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.177756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1777706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.17861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.17862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.178643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.178756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.17961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.179643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.179757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.179770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.18061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1806295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.180643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.180756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.18161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.18164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.181756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1817706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.18261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.182631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.18264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.182756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.18361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.183643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.183757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.183770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.18461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1846295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.184643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.184756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.18561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.18564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.185756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1857706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.18661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.18662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.186643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.186756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.18761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.187643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.187757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.187770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.18861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.188643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.188756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.18961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.18964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.189756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.19061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.19062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.190643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.190756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.19161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.191643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.191757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.191770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.19261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.192643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.192756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.19361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.193629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.193638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.193652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 148, - "ts": 2.193677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.193692775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.193706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1937475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2520) example: Task[0x3ffb7f40]: allocated 148 bytes @ 0x3ffb4b10\n", - "ts": 2.19376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2520) example: Task[0x3ffb7f40]: allocated 148 bytes @ 0x3ffb4b10\n", - "ts": 2.19376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.193777025 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.193785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.193795925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.1938067 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.193819725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.19382825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1938362 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.193844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.19385735 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.19386575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.19387405 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.193882925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.193892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.193901625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.19391645 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2520) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.1939657 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2520) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.1939657 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.193984175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.194002175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.19401485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.19402365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.194039225 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.19461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.194629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1946388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.194652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 296, - "ts": 2.194677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.1946897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.194703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1947475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2521) example: Task[0x3ffb82a0]: allocated 296 bytes @ 0x3ffb4b10\n", - "ts": 2.194769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2521) example: Task[0x3ffb82a0]: allocated 296 bytes @ 0x3ffb4b10\n", - "ts": 2.194769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.19478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.19478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.19479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.194809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.19482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.194831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.19483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.194847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.194860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.19486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.194877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.19488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.194895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.194904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.19491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2521) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.1949687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2521) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.1949687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.1949843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.19500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.19501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.19502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.195042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.19561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.195629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1956388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.195652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 444, - "ts": 2.195676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.195689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.195703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1957475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2522) example: Task[0x3ffb8600]: allocated 444 bytes @ 0x3ffb4b10\n", - "ts": 2.19576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2522) example: Task[0x3ffb8600]: allocated 444 bytes @ 0x3ffb4b10\n", - "ts": 2.19576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1957782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.1957867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.195797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.19580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.195820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.1958294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.195837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.19584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.1958586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.195866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.19587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.195887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.195895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.195905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.19592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2522) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.1959701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2522) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.1959701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.195985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.1960036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.196016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1960252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.19604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.19661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.19662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.196643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.196756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.19761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.197643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.197757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.197770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.19861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.198643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.198756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.19961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.1996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.19964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.1997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.199756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.1997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.20061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2006326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.200646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.200756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.20161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.201643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.201757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.201770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.20261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.202643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.202756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.20361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.20364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.203756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2037706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.20461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.20462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.204643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.204756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.20561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.205643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.205757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.205770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.20661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2066295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.206643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.206756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.20761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.20764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.207756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2077706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.20861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.20862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.208643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.208756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.20961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.209643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.209757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.209770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.21061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2106295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.210643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.210756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.21161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.21164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.211756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2117706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.21261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.212631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.21264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.212756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.21361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.213643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.213757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.213770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.21461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2146295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.214643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.214756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.21561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.21564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.215756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2157706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.21661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.21662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.216643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.216756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.21761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.217643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.217757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.217770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.21861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.218643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.218756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.21961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.21964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.219756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.22061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.22062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.220643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.220756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.22161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.221643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.221757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.221770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.22261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.222643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.222756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.22361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.223629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.223638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.223652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 150, - "ts": 2.223677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.223692775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.223706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2237475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2550) example: Task[0x3ffb7f40]: allocated 150 bytes @ 0x3ffb4b10\n", - "ts": 2.22376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2550) example: Task[0x3ffb7f40]: allocated 150 bytes @ 0x3ffb4b10\n", - "ts": 2.22376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.223777025 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.223785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.223795925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.2238067 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.223819725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.22382825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2238362 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.223844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.22385735 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.22386575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.22387405 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.223882925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.223892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.223901625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.22391645 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2550) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.2239657 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2550) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.2239657 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.223984175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.224002175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.22401485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.22402365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.224039225 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.22461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.224629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2246388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.224652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 300, - "ts": 2.224677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.2246897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.224703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2247475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2551) example: Task[0x3ffb82a0]: allocated 300 bytes @ 0x3ffb4b10\n", - "ts": 2.224769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2551) example: Task[0x3ffb82a0]: allocated 300 bytes @ 0x3ffb4b10\n", - "ts": 2.224769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.22478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.22478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.22479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.224809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.22482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.224831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.22483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.224847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.224860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.22486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.224877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.22488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.224895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.224904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.22491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2551) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.2249687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2551) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.2249687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.2249843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.22500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.22501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.22502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.225042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.22561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.225629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2256388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.225652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 450, - "ts": 2.225676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.225689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.225703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2257475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2552) example: Task[0x3ffb8600]: allocated 450 bytes @ 0x3ffb4b10\n", - "ts": 2.22576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2552) example: Task[0x3ffb8600]: allocated 450 bytes @ 0x3ffb4b10\n", - "ts": 2.22576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2257782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.2257867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.225797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.22580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.225820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.2258294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.225837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.22584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.2258586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.225866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.22587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.225887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.225895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.225905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.22592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2552) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.2259701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2552) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.2259701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.225985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.2260036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.226016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2260252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.22604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.22661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.22662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.226643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.226756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.22761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.227643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.227757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.227770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.22861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.228643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.228756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.22961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.22964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.229756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.23061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2306326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.230646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.230756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.23161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.231643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.231757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.231770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.23261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.232643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.232756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.23361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.23364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.233756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2337706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.23461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.23462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.234643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.234756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.23561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.235643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.235757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.235770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.23661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2366295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.236643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.236756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.23761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.23764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.237756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2377706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.23861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.23862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.238643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.238756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.23961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.239643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.239757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.239770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.24061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2406295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.240643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.240756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.24161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.24164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.241756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2417706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.24261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.242633975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2426476 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.242756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.24361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.243643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.243757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.243770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.24461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2446295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.244643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.244756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.24561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.24564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.245756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2457706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.24661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.24662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.246643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.246756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.24761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.247643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.247757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.247770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.24861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.248643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.248756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.24961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.24964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.249756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.25061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.25062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.250643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.250756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.25161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.251643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.251757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.251770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.25261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.252643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.252756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.25361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.253629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.253638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.253652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 152, - "ts": 2.253677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.2536921 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.2537061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2537475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2580) example: Task[0x3ffb7f40]: allocated 152 bytes @ 0x3ffb4b10\n", - "ts": 2.253768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2580) example: Task[0x3ffb7f40]: allocated 152 bytes @ 0x3ffb4b10\n", - "ts": 2.253768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.253777525 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.2537858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2537964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.2538072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.2538202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.25382875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.253836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.253845225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.25385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.253866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.25387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.253883425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.253892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2539021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.253916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2580) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.253966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2580) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.253966175 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.253984575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.254002575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.25401525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.25402405 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.254039625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.25461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.254629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2546388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.254652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 304, - "ts": 2.254677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.2546897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.254703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2547475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2581) example: Task[0x3ffb82a0]: allocated 304 bytes @ 0x3ffb4b10\n", - "ts": 2.254769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2581) example: Task[0x3ffb82a0]: allocated 304 bytes @ 0x3ffb4b10\n", - "ts": 2.254769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.25478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.25478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.254800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.2548109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.254823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.25483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.254840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.254849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.25486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.254870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.25487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.254887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.2548966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2549058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.254920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2581) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.254969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2581) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.254969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.254985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.255005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.255018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.255027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2550429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.25561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.255629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2556388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.255652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 456, - "ts": 2.255676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.255689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.255703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2557475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2582) example: Task[0x3ffb8600]: allocated 456 bytes @ 0x3ffb4b10\n", - "ts": 2.25576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2582) example: Task[0x3ffb8600]: allocated 456 bytes @ 0x3ffb4b10\n", - "ts": 2.25576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2557782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.2557867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.255797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.25580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.255820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.2558294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.255837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.25584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.2558586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.255866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.2558792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.255887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.255895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2559058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.255920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2582) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.255970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2582) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.255970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.25598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.256003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.2560164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.256025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.256040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.25661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.25662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.256643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.256756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.25761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.257643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.257757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.257770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.25861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.258643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.258756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.25961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.25964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.259756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.26061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.260631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.26064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.260756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.26161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.261643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.261757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.261770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.26261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.262643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.262756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.26361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.26364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.263756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2637706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.26461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.26462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.264643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.264756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.26561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.265643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.265757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.265770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.26661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2666295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.266643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.266756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.26761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.26764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.267756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2677706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.26861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.26862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.268643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.268756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.26961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.269643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.269757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.269770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.27061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2706295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.270643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.270756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.27161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.27164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.271756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2717706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.27261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2726326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.272646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.272756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.27361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.273643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.273757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.273770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.27461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2746295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.274643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.274756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.27561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.27564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.275756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2757706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.27661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.27662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.276643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.276756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.27761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.277643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.277757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.277770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.27861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.278643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.278756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.27961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.27964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.279756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.28061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.28062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.280643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.280756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.28161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.281643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.281757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.281770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.28261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.282643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.282756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.28361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.283629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.283638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.283652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 154, - "ts": 2.283677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.2836921 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.2837061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2837475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2610) example: Task[0x3ffb7f40]: allocated 154 bytes @ 0x3ffb4b10\n", - "ts": 2.283768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2610) example: Task[0x3ffb7f40]: allocated 154 bytes @ 0x3ffb4b10\n", - "ts": 2.283768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.283777525 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.2837858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2837964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.2838072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.2838202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.28382875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.283836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.283845225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.28385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.283866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.28387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.283883425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.283892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2839021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.283916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2610) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.283966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2610) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.283966175 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.283984575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.284002575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.28401525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.28402405 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.284039625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.28461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.284629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2846388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.284652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 308, - "ts": 2.284677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.2846897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.284703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2847475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2611) example: Task[0x3ffb82a0]: allocated 308 bytes @ 0x3ffb4b10\n", - "ts": 2.284769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2611) example: Task[0x3ffb82a0]: allocated 308 bytes @ 0x3ffb4b10\n", - "ts": 2.284769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.28478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.28478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.284800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.2848109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.284823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.28483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.284840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.284849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.28486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.284870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.28487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.284887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.2848966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2849058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.284920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2611) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.284969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2611) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.284969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.284985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.285005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.285018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.285027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2850429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.28561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.285629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2856388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.285652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 462, - "ts": 2.285676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.285689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.285703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2857475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2612) example: Task[0x3ffb8600]: allocated 462 bytes @ 0x3ffb4b10\n", - "ts": 2.28576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2612) example: Task[0x3ffb8600]: allocated 462 bytes @ 0x3ffb4b10\n", - "ts": 2.28576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2857782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.2857867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.285797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.28580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.285820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.2858294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.285837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.28584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.2858586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.285866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.2858792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.285887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.285895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2859058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.285920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2612) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.285970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2612) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.285970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.28598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.286003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.2860164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.286025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.286040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.28661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.28662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.286643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.286756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.28761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.287643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.287757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.287770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.28861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.288643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.288756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.28961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.28964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.289756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.29061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.290631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.29064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.290756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.29161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.291643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.291757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.291770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.29261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.292643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.292756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.29361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.29364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.293756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2937706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.29461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.29462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.294643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.294756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.29561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.295643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.295757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.295770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.29661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2966295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.296643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.296756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.29761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.29764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.297756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2977706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.29861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.29862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.298643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.298756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.2987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.29961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.2996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.299643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.2997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.299757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.299770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.30061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3006295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.300643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.300756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.30161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.30164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.301756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3017706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.30261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3026326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.302646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.302756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.30361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.303643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.303757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.303770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.30461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3046295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.304643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.304756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.30561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.30564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.305756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3057706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.30661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.30662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.306643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.306756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.30761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.307643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.307757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.307770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.30861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.308643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.308756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.30961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.30964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.309756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.31061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.31062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.310643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.310756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.31161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.311643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.311757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.311770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.31261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.312643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.312756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.31361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.313629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.313638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.313652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 156, - "ts": 2.313677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.3136921 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.3137061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3137475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2640) example: Task[0x3ffb7f40]: allocated 156 bytes @ 0x3ffb4b10\n", - "ts": 2.313768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2640) example: Task[0x3ffb7f40]: allocated 156 bytes @ 0x3ffb4b10\n", - "ts": 2.313768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.313777525 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.3137858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3137964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.3138072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.3138202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.31382875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.313836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.313845225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.31385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.313866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.31387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.313883425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.313892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3139021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.313916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2640) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.313966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2640) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.313966175 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.313984575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.314002575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.31401525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.31402405 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.314039625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.31461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.314629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3146388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.314652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 312, - "ts": 2.314677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.3146897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.314703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3147475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2641) example: Task[0x3ffb82a0]: allocated 312 bytes @ 0x3ffb4b10\n", - "ts": 2.314769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2641) example: Task[0x3ffb82a0]: allocated 312 bytes @ 0x3ffb4b10\n", - "ts": 2.314769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.31478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.31478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.314800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.3148109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.314823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.31483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.314840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.314849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.31486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.314870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.31487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.314887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.3148966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3149058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.314920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2641) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.314969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2641) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.314969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.314985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.315005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.315018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.315027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3150429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.31561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.315629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3156388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.315652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 468, - "ts": 2.315676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.315689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.315703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3157475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2642) example: Task[0x3ffb8600]: allocated 468 bytes @ 0x3ffb4b10\n", - "ts": 2.31576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2642) example: Task[0x3ffb8600]: allocated 468 bytes @ 0x3ffb4b10\n", - "ts": 2.31576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3157782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.3157867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.315797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.31580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.315820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.3158294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.315837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.31584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.3158586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.315866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.3158792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.315887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.315895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3159058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.315920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2642) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.315970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2642) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.315970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.31598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.316003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.3160164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.316025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.316040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.31661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.31662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.316643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.316756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.31761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.317643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.317757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.317770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.31861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.318643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.318756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.31961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.31964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.319756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.32061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.320631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.32064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.320756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.32161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.321643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.321757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.321770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.32261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.322643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.322756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.32361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.32364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.323756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3237706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.32461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.32462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.324643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.324756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.32561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.325643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.325757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.325770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.32661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3266295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.326643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.326756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.32761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.32764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.327756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3277706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.32861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.32862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.328643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.328756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.32961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.329643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.329757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.329770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.33061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3306295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.330643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.330756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.33161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.33164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.331756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3317706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.33261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3326326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.332646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.332756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.33361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.333643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.333757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.333770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.33461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3346295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.334643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.334756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.33561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.33564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.335756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3357706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.33661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.33662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.336643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.336756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.33761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.337643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.337757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.337770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.33861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.338643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.338756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.33961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.33964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.339756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.34061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.34062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.340643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.340756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.34161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.341643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.341757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.341770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.34261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.342643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.342756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.34361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.343629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.343638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.343652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 158, - "ts": 2.343677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.3436921 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.3437061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3437475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2670) example: Task[0x3ffb7f40]: allocated 158 bytes @ 0x3ffb4b10\n", - "ts": 2.343768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2670) example: Task[0x3ffb7f40]: allocated 158 bytes @ 0x3ffb4b10\n", - "ts": 2.343768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.343777525 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.3437858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3437964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.3438072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.3438202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.34382875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.343836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.343845225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.34385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.343866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.34387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.343883425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.343892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3439021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.343916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2670) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.343966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2670) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.343966175 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.343984575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.344002575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.34401525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.34402405 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.344039625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.34461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.344629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3446388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.344652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 316, - "ts": 2.344677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.3446897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.344703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3447475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2671) example: Task[0x3ffb82a0]: allocated 316 bytes @ 0x3ffb4b10\n", - "ts": 2.344769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2671) example: Task[0x3ffb82a0]: allocated 316 bytes @ 0x3ffb4b10\n", - "ts": 2.344769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.34478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.34478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.344800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.3448109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.344823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.34483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.344840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.344849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.34486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.344870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.34487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.344887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.3448966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3449058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.344920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2671) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.344969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2671) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.344969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.344985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.345005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.345018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.345027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3450429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.34561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.345629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3456388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.345652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 474, - "ts": 2.345676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.345689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.345703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3457475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2672) example: Task[0x3ffb8600]: allocated 474 bytes @ 0x3ffb4b10\n", - "ts": 2.34576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2672) example: Task[0x3ffb8600]: allocated 474 bytes @ 0x3ffb4b10\n", - "ts": 2.34576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3457782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.3457867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.345797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.34580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.345820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.3458294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.345837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.34584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.3458586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.345866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.3458792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.345887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.345895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3459058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.345920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2672) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.345970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2672) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.345970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.34598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.346003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.3460164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.346025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.346040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.34661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.34662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.346643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.346756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.34761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.347643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.347757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.347770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.34861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.348643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.348756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.34961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.34964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.349756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.35061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.350631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.35064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.350756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.35161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.351643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.351757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.351770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.35261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.352643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.352756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.35361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.35364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.353756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3537706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.35461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.35462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.354643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.354756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.35561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.355643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.355757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.355770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.35661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3566295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.356643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.356756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.35761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.35764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.357756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3577706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.35861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.35862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.358643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.358756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.35961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.359643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.359757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.359770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.36061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3606295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.360643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.360756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.36161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.36164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.361756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3617706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.36261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3626326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.362646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.362756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.36361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.363643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.363757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.363770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.36461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3646295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.364643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.364756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.36561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.36564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.365756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3657706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.36661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.36662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.366643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.366756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.36761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.367643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.367757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.367770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.36861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.368643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.368756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.36961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.36964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.369756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.37061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.37062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.370643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.370756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.37161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.371643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.371757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.371770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.37261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.372643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.372756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.37361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.373629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.373638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.373652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 160, - "ts": 2.373677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.3736921 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.3737061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3737475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2700) example: Task[0x3ffb7f40]: allocated 160 bytes @ 0x3ffb4b10\n", - "ts": 2.373768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2700) example: Task[0x3ffb7f40]: allocated 160 bytes @ 0x3ffb4b10\n", - "ts": 2.373768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.373777525 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.3737858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3737964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.3738072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.3738202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.37382875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.373836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.373845225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.37385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.373866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.37387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.373883425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.373892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3739021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.373916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2700) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.373966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2700) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.373966175 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.373984575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.374002575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.37401525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.37402405 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.374039625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.37461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.374629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3746388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.374652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 320, - "ts": 2.374677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.3746897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.374703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3747475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2701) example: Task[0x3ffb82a0]: allocated 320 bytes @ 0x3ffb4b10\n", - "ts": 2.374769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2701) example: Task[0x3ffb82a0]: allocated 320 bytes @ 0x3ffb4b10\n", - "ts": 2.374769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.37478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.37478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.374800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.3748109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.374823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.37483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.374840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.374849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.37486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.374870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.37487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.374887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.3748966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3749058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.374920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2701) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.374969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2701) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.374969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.374985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.375005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.375018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.375027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3750429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.37561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.375629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3756388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.375652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 480, - "ts": 2.375676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.375689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.375703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3757475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2702) example: Task[0x3ffb8600]: allocated 480 bytes @ 0x3ffb4b10\n", - "ts": 2.37576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2702) example: Task[0x3ffb8600]: allocated 480 bytes @ 0x3ffb4b10\n", - "ts": 2.37576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3757782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.3757867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.375797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.37580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.375820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.3758294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.375837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.37584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.3758586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.375866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.3758792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.375887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.375895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3759058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.375920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2702) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.375970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2702) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.375970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.37598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.376003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.3760164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.376025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.376040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.37661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.37662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.376643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.376756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.37761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.377643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.377757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.377770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.37861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.378643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.378756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.37961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.37964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.379756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.38061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.380631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.38064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.380756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.38161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.381643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.381757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.381770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.38261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.382643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.382756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.38361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.38364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.383756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3837706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.38461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.38462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.384643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.384756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.38561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.385643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.385757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.385770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.38661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3866295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.386643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.386756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.38761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.38764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.387756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3877706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.38861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.38862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.388643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.388756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.38961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.389643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.389757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.389770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.39061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3906295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.390643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.390756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.39161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.39164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.391756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3917706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.39261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3926326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.392646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.392756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.39361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.393643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.393757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.393770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.39461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3946295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.394643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.394756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.39561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.39564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.395756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3957706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.39661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.39662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.396643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.396756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.39761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.397643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.397757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.397770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.39861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.398643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.398756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.39961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.3996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.39964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.3997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.399756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.3997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.40061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.40062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.400643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.400756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.40161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.401643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.401757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.401770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.40261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.402643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.402756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.40361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.403629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.403638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.403652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 162, - "ts": 2.403677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.4036921 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.4037061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4037475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2730) example: Task[0x3ffb7f40]: allocated 162 bytes @ 0x3ffb4b10\n", - "ts": 2.403768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2730) example: Task[0x3ffb7f40]: allocated 162 bytes @ 0x3ffb4b10\n", - "ts": 2.403768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.403777525 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.4037858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4037964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.4038072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.4038202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.40382875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.403836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.403845225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.40385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.403866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.403874475 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.40388335 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.403892725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.403902025 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.40391685 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2730) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.4039661 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2730) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.4039661 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.403984475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.404002475 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.404015175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.404023975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.40403955 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.40461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.404629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4046388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.404652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 324, - "ts": 2.404677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.4046897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.404703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4047475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2731) example: Task[0x3ffb82a0]: allocated 324 bytes @ 0x3ffb4b10\n", - "ts": 2.404769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2731) example: Task[0x3ffb82a0]: allocated 324 bytes @ 0x3ffb4b10\n", - "ts": 2.404769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.40478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.40478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.404800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.4048109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.404823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.40483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.404840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.404849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.40486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.404870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.404878275 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.40488715 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.404896525 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4049057 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.404920525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2731) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.404969775 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2731) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.404969775 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.404985375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.40500575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.405018425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.405027225 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4050428 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.40561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.405629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4056388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.405652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 486, - "ts": 2.405676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.405689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.405703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4057475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2732) example: Task[0x3ffb8600]: allocated 486 bytes @ 0x3ffb4b10\n", - "ts": 2.40576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2732) example: Task[0x3ffb8600]: allocated 486 bytes @ 0x3ffb4b10\n", - "ts": 2.40576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4057782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.4057867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.405797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.40580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.405820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.4058294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.405837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.40584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.4058586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.405866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.405879175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4058872 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.40589565 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.40590575 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.405920675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2732) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.405970025 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2732) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.405970025 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.4059854 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.406003525 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.40601635 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.406025125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.406040575 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.40661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.40662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.406643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.406756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.40761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.407643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.407757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.407770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.40861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.408643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.408756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.40961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.40964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.409756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.41061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.410631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.41064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.410756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.41161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.411643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.411757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.411770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.41261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.412643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.412756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.41361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.41364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.413756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4137706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.41461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.41462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.414643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.414756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.41561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.415643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.415757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.415770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.41661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4166295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.416643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.416756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.41761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.41764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.417756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4177706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.41861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.41862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.418643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.418756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.41961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.419643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.419757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.419770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.42061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4206295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.420643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.420756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.42161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.42164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.421756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4217706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.42261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4226326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.422646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.422756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.42361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.423643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.423757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.423770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.42461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4246295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.424643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.424756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.42561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.42564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.425756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4257706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.42661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.42662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.426643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.426756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.42761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.427643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.427757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.427770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.42861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.428643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.428756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.42961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.42964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.429756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.43061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.43062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.430643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.430756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.43161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.431643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.431757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.431770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.43261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.432643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.432756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.43361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.433629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.433638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.433652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 164, - "ts": 2.433677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.4336921 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.4337061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4337475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2760) example: Task[0x3ffb7f40]: allocated 164 bytes @ 0x3ffb4b10\n", - "ts": 2.433768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2760) example: Task[0x3ffb7f40]: allocated 164 bytes @ 0x3ffb4b10\n", - "ts": 2.433768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.433777525 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.4337858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4337964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.4338072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.4338202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.43382875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.433836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.433845225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.43385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.433866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.43387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.433883425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.433892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4339021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.433916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2760) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.433966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2760) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.433966175 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.433984575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.434002575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.43401525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.43402405 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.434039625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.43461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.434629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4346388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.434652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 328, - "ts": 2.434677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.4346897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.434703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4347475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2761) example: Task[0x3ffb82a0]: allocated 328 bytes @ 0x3ffb4b10\n", - "ts": 2.434769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2761) example: Task[0x3ffb82a0]: allocated 328 bytes @ 0x3ffb4b10\n", - "ts": 2.434769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.43478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.43478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.434800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.4348109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.434823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.43483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.434840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.434849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.43486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.434870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.43487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.434887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.4348966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4349058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.434920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2761) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.434969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2761) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.434969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.434985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.435005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.435018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.435027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4350429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.43561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.435629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4356388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.435652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 492, - "ts": 2.435676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.435689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.435703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4357475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2762) example: Task[0x3ffb8600]: allocated 492 bytes @ 0x3ffb4b10\n", - "ts": 2.43576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2762) example: Task[0x3ffb8600]: allocated 492 bytes @ 0x3ffb4b10\n", - "ts": 2.43576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4357782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.4357867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.435797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.43580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.435820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.4358294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.435837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.43584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.4358586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.435866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.4358792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.435887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.435895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4359058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.435920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2762) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.435970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2762) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.435970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.43598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.436003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.4360164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.436025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.436040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.43661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.43662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.436643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.436756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.43761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.437643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.437757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.437770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.43861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.438643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.438756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.43961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.43964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.439756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.44061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.440631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.44064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.440756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.44161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.441643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.441757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.441770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.44261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.442643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.442756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.44361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.44364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.443756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4437706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.44461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.44462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.444643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.444756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.44561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.445643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.445757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.445770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.44661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4466295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.446643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.446756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.44761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.44764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.447756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4477706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.44861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.44862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.448643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.448756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.44961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.449643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.449757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.449770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.45061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4506295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.450643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.450756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.45161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.45164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.451756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4517706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.45261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4526326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.452646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.452756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.45361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.453643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.453757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.453770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.45461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4546295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.454643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.454756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.45561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.45564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.455756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4557706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.45661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.45662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.456643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.456756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.45761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.457643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.457757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.457770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.45861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.458643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.458756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.45961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.45964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.459756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.46061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.46062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.460643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.460756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.46161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.461643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.461757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.461770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.46261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.462643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.462756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.46361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.463629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.463638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.463652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 166, - "ts": 2.463677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.4636921 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.4637061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4637475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2790) example: Task[0x3ffb7f40]: allocated 166 bytes @ 0x3ffb4b10\n", - "ts": 2.463768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2790) example: Task[0x3ffb7f40]: allocated 166 bytes @ 0x3ffb4b10\n", - "ts": 2.463768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.463777525 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.4637858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4637964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.4638072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.4638202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.46382875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.463836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.463845225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.46385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.463866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.46387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.463883425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.463892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4639021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.463916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2790) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.463966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2790) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.463966175 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.463984575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.464002575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.46401525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.46402405 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.464039625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.46461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.464629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4646388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.464652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 332, - "ts": 2.464677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.4646897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.464703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4647475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2791) example: Task[0x3ffb82a0]: allocated 332 bytes @ 0x3ffb4b10\n", - "ts": 2.464769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2791) example: Task[0x3ffb82a0]: allocated 332 bytes @ 0x3ffb4b10\n", - "ts": 2.464769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.46478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.46478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.464800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.4648109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.464823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.46483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.464840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.464849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.46486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.464870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.46487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.464887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.4648966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4649058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.464920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2791) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.464969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2791) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.464969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.464985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.465005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.465018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.465027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4650429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.46561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.465629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4656388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.465652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 498, - "ts": 2.465676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.465689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.465703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4657475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2792) example: Task[0x3ffb8600]: allocated 498 bytes @ 0x3ffb4b10\n", - "ts": 2.46576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2792) example: Task[0x3ffb8600]: allocated 498 bytes @ 0x3ffb4b10\n", - "ts": 2.46576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4657782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.4657867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.465797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.46580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.465820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.4658294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.465837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.46584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.4658586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.465866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.4658792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.465887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.465895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4659058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.465920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2792) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.465970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2792) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.465970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.46598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.466003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.4660164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.466025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.466040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.46661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.46662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.466643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.466756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.46761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.467643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.467757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.467770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.46861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.468643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.468756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.46961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.46964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.469756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.47061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.470631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.47064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.470756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.47161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.471643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.471757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.471770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.47261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.472643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.472756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.47361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.47364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.473756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4737706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.47461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.47462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.474643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.474756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.47561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.475643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.475757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.475770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.47661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4766295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.476643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.476756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.47761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.47764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.477756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4777706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.47861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.47862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.478643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.478756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.47961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.479643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.479757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.479770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.48061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4806295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.480643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.480756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.48161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.48164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.481756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4817706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.48261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4826326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.482646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.482756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.48361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.483643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.483757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.483770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.48461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4846295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.484643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.484756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.48561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.48564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.485756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4857706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.48661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.48662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.486643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.486756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.48761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.487643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.487757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.487770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.48861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.488643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.488756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.48961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.48964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.489756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.49061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.49062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.490643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.490756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.49161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.491643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.491757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.491770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.49261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.492643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.492756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.49361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.493629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.493638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.493652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 168, - "ts": 2.493677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.4936921 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.4937061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4937475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2820) example: Task[0x3ffb7f40]: allocated 168 bytes @ 0x3ffb4b10\n", - "ts": 2.493768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2820) example: Task[0x3ffb7f40]: allocated 168 bytes @ 0x3ffb4b10\n", - "ts": 2.493768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.493777525 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.4937858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4937964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.4938072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.4938202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.49382875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.493836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.493845225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.49385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.493866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.49387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.493883425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.493892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4939021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.493916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2820) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.493966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2820) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.493966175 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.493984575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.494002575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.49401525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.49402405 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.494039625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.49461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.494629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4946388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.494652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 336, - "ts": 2.494677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.4946897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.494703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4947475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2821) example: Task[0x3ffb82a0]: allocated 336 bytes @ 0x3ffb4b10\n", - "ts": 2.494769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2821) example: Task[0x3ffb82a0]: allocated 336 bytes @ 0x3ffb4b10\n", - "ts": 2.494769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.49478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.49478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.494800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.4948109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.494823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.49483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.494840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.494849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.49486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.494870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.49487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.494887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.4948966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4949058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.494920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2821) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.494969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2821) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.494969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.494985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.495005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.495018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.495027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4950429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.49561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.495629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4956388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.495652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 504, - "ts": 2.495676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.495689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.495703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4957475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2822) example: Task[0x3ffb8600]: allocated 504 bytes @ 0x3ffb4b10\n", - "ts": 2.49576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2822) example: Task[0x3ffb8600]: allocated 504 bytes @ 0x3ffb4b10\n", - "ts": 2.49576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4957782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.4957867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.495797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.49580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.495820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.4958294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.495837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.49584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.4958586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.495866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.4958792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.495887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.495895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4959058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.495920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2822) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.495970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2822) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.495970075 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.49598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.496003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.4960164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.496025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.496040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.49661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.49662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.496643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.496756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.49761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.497643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.497757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.497770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.49861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.498643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.498756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.49961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.4996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.49964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.4997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.499756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.4997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.50061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.500631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.50064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.500756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.50161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.501643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.501757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.501770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.50261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.502643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.502756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.50361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.50364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.503756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5037706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.50461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.50462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.504643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.504756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.50561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.505643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.505757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.505770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.50661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5066295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.506643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.506756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.50761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.50764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.507756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5077706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.50861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.50862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.508643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.508756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.50961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.509643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.509757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.509770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.51061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5106295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.510643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.510756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.51161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.51164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.511756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5117706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.51261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5126326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.512646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.512756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.51361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.513643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.513757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.513770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.51461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5146295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.514643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.514756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.51561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.51564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.515756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5157706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.51661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.51662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.516643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.516756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.51761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.517643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.517757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.517770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.51861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.518643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.518756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.51961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.51964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.519756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.52061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.52062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.520643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.520756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.52161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.521643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.521757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.521770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.52261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.522643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.522756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.52361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.523629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.523638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.523652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 170, - "ts": 2.523677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.5236921 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.5237061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5237475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2850) example: Task[0x3ffb7f40]: allocated 170 bytes @ 0x3ffb4b10\n", - "ts": 2.523768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2850) example: Task[0x3ffb7f40]: allocated 170 bytes @ 0x3ffb4b10\n", - "ts": 2.523768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.523777525 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.5237858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5237964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.5238072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.5238202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.52382875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.523836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.523845225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.52385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.523866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.52387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.523883425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.523892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5239021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.523916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2850) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.523966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2850) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.523966175 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.523984575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.524002575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.52401525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.52402405 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.524039625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.52461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.524629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5246388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.524652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 340, - "ts": 2.524677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.5246897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.524703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5247475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2851) example: Task[0x3ffb82a0]: allocated 340 bytes @ 0x3ffb4b10\n", - "ts": 2.524769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2851) example: Task[0x3ffb82a0]: allocated 340 bytes @ 0x3ffb4b10\n", - "ts": 2.524769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.52478125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.52478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.524800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.5248109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.524823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.52483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.524840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.524849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.52486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.524870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.52487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.524887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.5248966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5249058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.524920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2851) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.524969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2851) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.524969875 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.524985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.525007925 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.5250206 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5250294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.525044975 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.52561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.525629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5256388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.525652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 510, - "ts": 2.525676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.525689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.525703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5257475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2852) example: Task[0x3ffb8600]: allocated 510 bytes @ 0x3ffb4b10\n", - "ts": 2.52576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2852) example: Task[0x3ffb8600]: allocated 510 bytes @ 0x3ffb4b10\n", - "ts": 2.52576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5257782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.5257867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.525797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.52580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.525820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.5258294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.525837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.52584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.5258586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.525866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.52587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.525887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.525895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.525905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.52592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2852) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.5259701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2852) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.5259701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.525985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.5260036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.526016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5260252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.52604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.52661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.52662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.526643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.526756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.52761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.527643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.527757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.527770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.52861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5286295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.528643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.528756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.52961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.52964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.529756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5297706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.53061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5306326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.530646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.530756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.53161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.531643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.531757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.531770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.53261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5326295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.532643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.532756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.53361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.53364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.533756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5337706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.53461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.53462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.534643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.534756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.53561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.535643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.535757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.535770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.53661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5366295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.536643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.536756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.53761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.53764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.537756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5377706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.53861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.53862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.538643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.538756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.53961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.539643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.539757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.539770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.54061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5406295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.540643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.540756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.54161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.54164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.541756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5417706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.54261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.542631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.54264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.542756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.54361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.543643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.543757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.543770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.54461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5446295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.544643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.544756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.54561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.54564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.545756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5457706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.54661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.54662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.546643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.546756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.54761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.547643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.547757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.547770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.54861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.548643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.548756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.54961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.54964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.549756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.55061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.55062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.550643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.550756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.55161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.551643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.551757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.551770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.55261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.552643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.552756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.55361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.553629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.553638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.553652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 172, - "ts": 2.553677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.553692775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.553706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5537475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2880) example: Task[0x3ffb7f40]: allocated 172 bytes @ 0x3ffb4b10\n", - "ts": 2.55376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2880) example: Task[0x3ffb7f40]: allocated 172 bytes @ 0x3ffb4b10\n", - "ts": 2.55376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.553777025 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.553785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.553795925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.5538067 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.553819725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.55382825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5538362 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.553844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.55385735 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.55386575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.55387405 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.553882925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.553892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.553901625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.55391645 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2880) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.5539657 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2880) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.5539657 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.553984175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.554002175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.55401485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.55402365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.554039225 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.55461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.554629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5546388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.554652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 344, - "ts": 2.554677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.5546897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.554703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5547475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2881) example: Task[0x3ffb82a0]: allocated 344 bytes @ 0x3ffb4b10\n", - "ts": 2.554769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2881) example: Task[0x3ffb82a0]: allocated 344 bytes @ 0x3ffb4b10\n", - "ts": 2.554769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.55478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.55478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.55479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.554809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.55482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.554831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.55483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.554847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.554860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.55486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.554877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.55488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.554895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.554904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.55491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2881) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.5549687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2881) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.5549687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.5549843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.55500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.55501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.55502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.555042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.55561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.555629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5556388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.555652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 516, - "ts": 2.555676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.555689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.555703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5557475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2882) example: Task[0x3ffb8600]: allocated 516 bytes @ 0x3ffb4b10\n", - "ts": 2.55576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2882) example: Task[0x3ffb8600]: allocated 516 bytes @ 0x3ffb4b10\n", - "ts": 2.55576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5557782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.5557867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.555797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.55580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.555820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.5558294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.555837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.55584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.5558586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.555866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.55587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.555887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.555895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.555905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.55592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2882) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.5559701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2882) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.5559701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.555985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.5560036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.556016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5560252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.55604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.55661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.55662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.556643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.556756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.55761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.557643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.557757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.557770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.55861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.558643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.558756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.55961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.55964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.559756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.56061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5606326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.560646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.560756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.56161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.561643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.561757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.561770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.56261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.562643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.562756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.56361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.56364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.563756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5637706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.56461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.56462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.564643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.564756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.56561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.565643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.565757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.565770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.56661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5666295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.566643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.566756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.56761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.56764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.567756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5677706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.56861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.56862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.568643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.568756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.56961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.569643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.569757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.569770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.57061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5706295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.570643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.570756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.57161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.57164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.571756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5717706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.57261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.572631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.57264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.572756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.57361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.573643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.573757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.573770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.57461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5746295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.574643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.574756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.57561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.57564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.575756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5757706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.57661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.57662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.576643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.576756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.57761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.577643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.577757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.577770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.57861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.578643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.578756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.57961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.57964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.579756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.58061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.58062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.580643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.580756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.58161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.581643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.581757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.581770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.58261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.582643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.582756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.58361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.583629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.583638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.583652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 174, - "ts": 2.583677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.583692775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.583706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5837475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2910) example: Task[0x3ffb7f40]: allocated 174 bytes @ 0x3ffb4b10\n", - "ts": 2.58376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2910) example: Task[0x3ffb7f40]: allocated 174 bytes @ 0x3ffb4b10\n", - "ts": 2.58376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.583777025 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.583785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.583795925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.5838067 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.583819725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.58382825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5838362 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.583844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.58385735 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.58386575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.58387405 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.583882925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.583892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.583901625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.58391645 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2910) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.5839657 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2910) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.5839657 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.583984175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.584002175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.58401485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.58402365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.584039225 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.58461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.584629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5846388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.584652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 348, - "ts": 2.584677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.5846897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.584703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5847475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2911) example: Task[0x3ffb82a0]: allocated 348 bytes @ 0x3ffb4b10\n", - "ts": 2.584769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2911) example: Task[0x3ffb82a0]: allocated 348 bytes @ 0x3ffb4b10\n", - "ts": 2.584769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.58478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.58478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.58479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.584809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.58482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.584831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.58483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.584847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.584860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.58486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.584877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.58488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.584895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.584904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.58491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2911) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.5849687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2911) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.5849687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.5849843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.58500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.58501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.58502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.585042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.58561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.585629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5856388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.585652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 522, - "ts": 2.585676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.585689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.585703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5857475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2912) example: Task[0x3ffb8600]: allocated 522 bytes @ 0x3ffb4b10\n", - "ts": 2.58576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2912) example: Task[0x3ffb8600]: allocated 522 bytes @ 0x3ffb4b10\n", - "ts": 2.58576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5857782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.5857867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.585797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.58580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.585820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.5858294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.585837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.58584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.5858586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.585866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.58587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.585887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.585895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.585905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.58592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2912) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.5859701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2912) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.5859701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.585985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.5860036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.586016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5860252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.58604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.58661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.58662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.586643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.586756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.58761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.587643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.587757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.587770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.58861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.588643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.588756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.58961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.58964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.589756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.59061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5906326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.590646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.590756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.59161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.591643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.591757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.591770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.59261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.592643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.592756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.59361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.59364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.593756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5937706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.59461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.59462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.594643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.594756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.59561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.595643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.595757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.595770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.59661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5966295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.596643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.596756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.59761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.59764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.597756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5977706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.59861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.59862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.598643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.598756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.5987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.59961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.5996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.599643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.599757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.599770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.60061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6006295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.600643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.600756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.60161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.60164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.601756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6017706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.60261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.602631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.60264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.602756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.60361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.603643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.603757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.603770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.60461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6046295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.604643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.604756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.60561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.60564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.605756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6057706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.60661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.60662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.606643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.606756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.60761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.607643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.607757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.607770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.60861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.608643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.608756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.60961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.60964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.609756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.61061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.61062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.610643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.610756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.61161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.611643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.611757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.611770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.61261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.612643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.612756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.61361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.613629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.613638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.613652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 176, - "ts": 2.613677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.613692775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.613706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6137475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2940) example: Task[0x3ffb7f40]: allocated 176 bytes @ 0x3ffb4b10\n", - "ts": 2.61376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2940) example: Task[0x3ffb7f40]: allocated 176 bytes @ 0x3ffb4b10\n", - "ts": 2.61376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.613777025 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.613785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.613795925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.6138067 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.613819725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.61382825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6138362 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.613844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.61385735 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.61386575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.61387405 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.613882925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.613892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.613901625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.61391645 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2940) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.6139657 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2940) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.6139657 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.613984175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.614002175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.61401485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.61402365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.614039225 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.61461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.614629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6146388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.614652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 352, - "ts": 2.614677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.6146897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.614703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6147475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2941) example: Task[0x3ffb82a0]: allocated 352 bytes @ 0x3ffb4b10\n", - "ts": 2.614769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2941) example: Task[0x3ffb82a0]: allocated 352 bytes @ 0x3ffb4b10\n", - "ts": 2.614769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.61478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.61478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.61479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.614809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.61482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.614831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.61483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.614847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.614860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.61486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.614877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.61488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.614895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.614904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.61491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2941) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.6149687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2941) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.6149687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.6149843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.61500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.61501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.61502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.615042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.61561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.615629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6156388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.615652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 528, - "ts": 2.615676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.615689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.615703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6157475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2942) example: Task[0x3ffb8600]: allocated 528 bytes @ 0x3ffb4b10\n", - "ts": 2.61576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2942) example: Task[0x3ffb8600]: allocated 528 bytes @ 0x3ffb4b10\n", - "ts": 2.61576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6157782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.6157867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.615797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.61580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.615820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.6158294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.615837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.61584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.6158586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.615866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.61587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.615887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.615895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.615905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.61592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2942) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.6159701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2942) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.6159701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.615985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.6160036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.616016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6160252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.61604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.61661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.61662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.616643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.616756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.61761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.617643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.617757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.617770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.61861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.618643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.618756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.61961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.61964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.619756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.62061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6206326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.620646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.620756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.62161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.621643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.621757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.621770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.62261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.622643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.622756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.62361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.62364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.623756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6237706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.62461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.62462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.624643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.624756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.62561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.625643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.625757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.625770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.62661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6266295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.626643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.626756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.62761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.62764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.627756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6277706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.62861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.62862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.628643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.628756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.62961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.629643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.629757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.629770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.63061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6306295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.630643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.630756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.63161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.63164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.631756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6317706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.63261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.632631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.63264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.632756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.63361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.633643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.633757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.633770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.63461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6346295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.634643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.634756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.63561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.63564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.635756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6357706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.63661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.63662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.636643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.636756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.63761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.637643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.637757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.637770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.63861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.638643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.638756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.63961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.63964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.639756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.64061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.64062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.640643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.640756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.64161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.641643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.641757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.641770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.64261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.642643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.642756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.64361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.643629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.643638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.643652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 178, - "ts": 2.643677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.643692775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.643706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6437475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2970) example: Task[0x3ffb7f40]: allocated 178 bytes @ 0x3ffb4b10\n", - "ts": 2.64376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2970) example: Task[0x3ffb7f40]: allocated 178 bytes @ 0x3ffb4b10\n", - "ts": 2.64376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.643777025 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.643785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.643795925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.6438067 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.643819725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.64382825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6438362 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.643844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.64385735 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.64386575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.64387405 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.643882925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.643892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.643901625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.64391645 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2970) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.6439657 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2970) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.6439657 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.643984175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.644002175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.64401485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.64402365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.644039225 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.64461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.644629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6446388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.644652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 356, - "ts": 2.644677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.6446897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.644703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6447475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2971) example: Task[0x3ffb82a0]: allocated 356 bytes @ 0x3ffb4b10\n", - "ts": 2.644769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2971) example: Task[0x3ffb82a0]: allocated 356 bytes @ 0x3ffb4b10\n", - "ts": 2.644769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.64478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.64478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.64479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.644809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.64482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.644831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.64483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.644847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.644860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.64486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.644877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.64488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.644895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.644904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.64491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2971) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.6449687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2971) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.6449687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.6449843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.64500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.64501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.64502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.645042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.64561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.645629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6456388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.645652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 534, - "ts": 2.645676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.645689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.645703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6457475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2972) example: Task[0x3ffb8600]: allocated 534 bytes @ 0x3ffb4b10\n", - "ts": 2.64576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2972) example: Task[0x3ffb8600]: allocated 534 bytes @ 0x3ffb4b10\n", - "ts": 2.64576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6457782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.6457867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.645797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.64580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.645820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.6458294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.645837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.64584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.6458586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.645866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.64587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.645887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.645895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.645905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.64592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2972) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.6459701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (2972) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.6459701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.645985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.6460036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.646016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6460252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.64604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.64661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.64662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.646643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.646756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.64761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.647643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.647757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.647770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.64861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6486295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.648643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.648756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.64961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.64964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.649756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6497706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.65061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6506326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.650646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.650756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.65161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.651643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.651757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.651770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.65261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6526295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.652643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.652756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.65361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.65364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.653756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6537706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.65461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.65462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.654643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.654756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.65561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.655643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.655757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.655770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.65661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6566295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.656643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.656756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.65761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.65764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.657756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6577706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.65861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.65862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.658643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.658756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.65961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.659643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.659757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.659770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.66061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6606295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.660643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.660756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.66161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.66164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.661756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6617706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.66261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.662631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.66264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.662756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.66361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.663643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.663757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.663770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.66461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6646295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.664643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.664756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.66561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.66564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.665756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6657706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.66661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.66662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.666643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.666756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.66761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.667643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.667757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.667770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.66861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.668643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.668756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.66961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.66964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.669756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.67061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.67062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.670643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.670756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.67161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.671643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.671757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.671770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.67261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.672643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.672756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.67361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.673629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.673638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.673652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 180, - "ts": 2.673677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.673692775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.673706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6737475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3000) example: Task[0x3ffb7f40]: allocated 180 bytes @ 0x3ffb4b10\n", - "ts": 2.67376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3000) example: Task[0x3ffb7f40]: allocated 180 bytes @ 0x3ffb4b10\n", - "ts": 2.67376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.673777025 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.673785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6737959 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.6738067 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.6738197 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.67382825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.673836175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.673844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.67385735 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.673865725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.67387405 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.673882925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.673892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6739016 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.673916425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3000) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.673965675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3000) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.673965675 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.67398415 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.67400215 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.67401485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.67402365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.674039225 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.67461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.674629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6746388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.674652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 360, - "ts": 2.674677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.6746897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.674703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6747475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3001) example: Task[0x3ffb82a0]: allocated 360 bytes @ 0x3ffb4b10\n", - "ts": 2.674769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3001) example: Task[0x3ffb82a0]: allocated 360 bytes @ 0x3ffb4b10\n", - "ts": 2.674769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.67478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.67478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.67479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.674809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.67482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.674831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.67483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.674847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.674860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.67486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.674877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.67488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.674895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.674904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.67491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3001) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.6749687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3001) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.6749687 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.6749843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.67500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.67501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.67502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.675042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.67561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.675629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6756388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.675652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 540, - "ts": 2.675676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.675689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.675703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6757475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3002) example: Task[0x3ffb8600]: allocated 540 bytes @ 0x3ffb4b10\n", - "ts": 2.67576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3002) example: Task[0x3ffb8600]: allocated 540 bytes @ 0x3ffb4b10\n", - "ts": 2.67576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6757782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.6757867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.675797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.67580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.675820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.6758294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.675837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.67584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.6758586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.675866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.67587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.675887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.675895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.675905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.67592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3002) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.6759701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3002) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.6759701 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.675985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.6760036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.676016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6760252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.67604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.67661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.67662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.676643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.676756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.67761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.677643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.677757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.677770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.67861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.678643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.678756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.67961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.67964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.679756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.68061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6806326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.680646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.680756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.68161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.681643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.681757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.681770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.68261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.682643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.682756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.68361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.68364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.683756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6837706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.68461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.68462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.684643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.684756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.68561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.685643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.685757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.685770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.68661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6866295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.686643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.686756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.68761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.68764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.687756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6877706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.68861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.68862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.688643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.688756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.68961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.689643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.689757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.689770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.69061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6906295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.690643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.690756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.69161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.69164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.691756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6917706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.69261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.692631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.69264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.692756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.69361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.693643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.693757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.693770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.69461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6946295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.694643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.694756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.69561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.69564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.695756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6957706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.69661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.69662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.696643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.696756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.69761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.697643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.697757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.697770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.69861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.698643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.698756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.69961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.6996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.69964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.699756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.6997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.70061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.70062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.700643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.700756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.70161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.701643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.701757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.701770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.70261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.702643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.702756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.70361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.703629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.703638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.703652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc0", - "id": 512, - "in_irq": false, - "size": 182, - "ts": 2.703677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.703692775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.703706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7037475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3030) example: Task[0x3ffb7f40]: allocated 182 bytes @ 0x3ffb4b10\n", - "ts": 2.70376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3030) example: Task[0x3ffb7f40]: allocated 182 bytes @ 0x3ffb4b10\n", - "ts": 2.70376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.703777025 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.703785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.703795925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.7038067 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.703819725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.70382825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7038362 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.703844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.70385735 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.70386575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.703874 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.703882875 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.70389225 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.703901525 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.70391635 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3030) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.7039656 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3030) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.7039656 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free0", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.703984075 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.704002075 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.704014775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.704023575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.70403915 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.70461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.704629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7046388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.704652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 364, - "ts": 2.704677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.7046897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.704703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7047475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3031) example: Task[0x3ffb82a0]: allocated 364 bytes @ 0x3ffb4b10\n", - "ts": 2.704769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3031) example: Task[0x3ffb82a0]: allocated 364 bytes @ 0x3ffb4b10\n", - "ts": 2.704769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.70478005 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.70478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.70479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.704809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.70482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.704831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.70483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.704847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.704860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.70486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.7048771 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.704885975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.70489535 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.704904525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.70491935 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3031) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.7049686 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3031) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.7049686 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 2.7049842 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.705005275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.70501795 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.70502675 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.705042325 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.70561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.705629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7056388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.705652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 546, - "ts": 2.705676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.705689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.705703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7057475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3032) example: Task[0x3ffb8600]: allocated 546 bytes @ 0x3ffb4b10\n", - "ts": 2.70576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3032) example: Task[0x3ffb8600]: allocated 546 bytes @ 0x3ffb4b10\n", - "ts": 2.70576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7057782 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.7057867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.705797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.70580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.705820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.7058294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.705837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.70584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.7058586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.705866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.705879175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.705887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.705895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.705905775 - }, - { - "core_id": 1, - "ctx_name": "free2", + "ctx_name": "main", "id": 53, "in_irq": false, "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.705920725 + "ts": 0.004477875 }, { "core_id": 1, @@ -221703,8 +2756,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3032) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.705970075 + "msg": "I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728\n", + "ts": 0.004496725 }, { "core_id": 1, @@ -221712,15 +2765,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3032) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.705970075 + "msg": "I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728\n", + "ts": 0.004496725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb728", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -221734,44 +2787,103 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.70598545 + "ts": 0.004524 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (312) example: Wait notify 0\n", + "ts": 0.004538425 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (312) example: Wait notify 0\n", + "ts": 0.004538425 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.004553625 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, "in_irq": false, + "params": {}, + "ts": 0.0045677 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12274088 + "irq_num": 30 }, - "ts": 2.706003575 + "ts": 0.00458165 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0045921 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.004603225 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.004619375 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.7060164 + "ts": 0.004666675 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.70602515 + "ts": 0.0046801 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7060406 + "ts": 0.00469525 }, { "core_id": 0, @@ -221781,23 +2893,23 @@ "params": { "irq_num": 5 }, - "ts": 2.70661795 + "ts": 0.0048338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.70662955 + "ts": 0.004849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.706643175 + "ts": 0.00486425 }, { "core_id": 1, @@ -221807,23 +2919,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7067475 + "ts": 0.005666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.706756975 + "ts": 0.005680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7067706 + "ts": 0.005695225 }, { "core_id": 0, @@ -221833,23 +2945,23 @@ "params": { "irq_num": 5 }, - "ts": 2.70761795 + "ts": 0.0058338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7076295 + "ts": 0.0058492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.707643125 + "ts": 0.005864425 }, { "core_id": 1, @@ -221859,23 +2971,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7077475 + "ts": 0.006666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.707757 + "ts": 0.00667995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.707770775 + "ts": 0.0066951 }, { "core_id": 0, @@ -221885,23 +2997,23 @@ "params": { "irq_num": 5 }, - "ts": 2.70861795 + "ts": 0.0068338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7086295 + "ts": 0.006849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.708643125 + "ts": 0.00686425 }, { "core_id": 1, @@ -221911,23 +3023,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7087475 + "ts": 0.007666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.708756975 + "ts": 0.007680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7087706 + "ts": 0.00769535 }, { "core_id": 0, @@ -221937,23 +3049,23 @@ "params": { "irq_num": 5 }, - "ts": 2.70961795 + "ts": 0.0078338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7096295 + "ts": 0.007849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.70964325 + "ts": 0.00786425 }, { "core_id": 1, @@ -221963,23 +3075,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7097475 + "ts": 0.008666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.709756975 + "ts": 0.00868 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7097706 + "ts": 0.008695125 }, { "core_id": 0, @@ -221989,23 +3101,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71061795 + "ts": 0.0088338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7106326 + "ts": 0.008849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.710646225 + "ts": 0.008868 }, { "core_id": 1, @@ -222015,23 +3127,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7107475 + "ts": 0.009666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.710756975 + "ts": 0.00967995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7107706 + "ts": 0.0096951 }, { "core_id": 0, @@ -222041,23 +3153,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71161795 + "ts": 0.0098338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7116295 + "ts": 0.009849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.711643125 + "ts": 0.00986425 }, { "core_id": 1, @@ -222067,23 +3179,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7117475 + "ts": 0.010666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.711757 + "ts": 0.010680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.711770775 + "ts": 0.01069535 }, { "core_id": 0, @@ -222093,23 +3205,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71261795 + "ts": 0.0108338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7126295 + "ts": 0.010849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.712643125 + "ts": 0.01086425 }, { "core_id": 1, @@ -222119,23 +3231,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7127475 + "ts": 0.011666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.712756975 + "ts": 0.01168 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7127706 + "ts": 0.011695125 }, { "core_id": 0, @@ -222145,23 +3257,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71361795 + "ts": 0.0118338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7136295 + "ts": 0.011849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.71364325 + "ts": 0.01186425 }, { "core_id": 1, @@ -222171,23 +3283,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7137475 + "ts": 0.012666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.713756975 + "ts": 0.012680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7137706 + "ts": 0.012695225 }, { "core_id": 0, @@ -222197,23 +3309,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71461795 + "ts": 0.0128338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.71462955 + "ts": 0.0128492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.714643175 + "ts": 0.012864425 }, { "core_id": 1, @@ -222223,23 +3335,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7147475 + "ts": 0.013666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.714756975 + "ts": 0.01367995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7147706 + "ts": 0.0136951 }, { "core_id": 0, @@ -222249,23 +3361,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71561795 + "ts": 0.0138338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7156295 + "ts": 0.0138494 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.715643125 + "ts": 0.0138645 }, { "core_id": 1, @@ -222275,23 +3387,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7157475 + "ts": 0.014666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.715757 + "ts": 0.014680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.715770775 + "ts": 0.01469535 }, { "core_id": 0, @@ -222301,23 +3413,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71661795 + "ts": 0.0148338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7166295 + "ts": 0.014849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.716643125 + "ts": 0.01486425 }, { "core_id": 1, @@ -222327,23 +3439,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7167475 + "ts": 0.015666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.716756975 + "ts": 0.01568 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7167706 + "ts": 0.015695125 }, { "core_id": 0, @@ -222353,23 +3465,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71761795 + "ts": 0.0158338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7176295 + "ts": 0.015849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.71764325 + "ts": 0.01586425 }, { "core_id": 1, @@ -222379,23 +3491,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7177475 + "ts": 0.016666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.717756975 + "ts": 0.016680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7177706 + "ts": 0.016695225 }, { "core_id": 0, @@ -222405,23 +3517,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71861795 + "ts": 0.0168338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.71862955 + "ts": 0.0168492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.718643175 + "ts": 0.016864425 }, { "core_id": 1, @@ -222431,23 +3543,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7187475 + "ts": 0.017666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.718756975 + "ts": 0.01767995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7187706 + "ts": 0.0176951 }, { "core_id": 0, @@ -222457,23 +3569,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71961795 + "ts": 0.0178338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7196295 + "ts": 0.017849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.719643125 + "ts": 0.01786425 }, { "core_id": 1, @@ -222483,23 +3595,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7197475 + "ts": 0.018666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.719757 + "ts": 0.018680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.719770775 + "ts": 0.01869535 }, { "core_id": 0, @@ -222509,23 +3621,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72061795 + "ts": 0.0188338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7206295 + "ts": 0.018849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.720643125 + "ts": 0.01886425 }, { "core_id": 1, @@ -222535,23 +3647,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7207475 + "ts": 0.019666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.720756975 + "ts": 0.01968 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7207706 + "ts": 0.019695125 }, { "core_id": 0, @@ -222561,23 +3673,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72161795 + "ts": 0.0198338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7216295 + "ts": 0.019849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.72164325 + "ts": 0.01986425 }, { "core_id": 1, @@ -222587,23 +3699,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7217475 + "ts": 0.020666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.721756975 + "ts": 0.020680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7217706 + "ts": 0.020695225 }, { "core_id": 0, @@ -222613,23 +3725,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72261795 + "ts": 0.0208338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.722631925 + "ts": 0.0208492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.72264555 + "ts": 0.020864425 }, { "core_id": 1, @@ -222639,23 +3751,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7227475 + "ts": 0.021666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.722756975 + "ts": 0.021680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7227706 + "ts": 0.02169535 }, { "core_id": 0, @@ -222665,23 +3777,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72361795 + "ts": 0.0218338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7236295 + "ts": 0.021849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.723643125 + "ts": 0.02186425 }, { "core_id": 1, @@ -222691,23 +3803,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7237475 + "ts": 0.022666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.723757 + "ts": 0.02268 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.723770775 + "ts": 0.022695125 }, { "core_id": 0, @@ -222717,23 +3829,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72461795 + "ts": 0.0228338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7246295 + "ts": 0.022849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.724643125 + "ts": 0.02286425 }, { "core_id": 1, @@ -222743,23 +3855,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7247475 + "ts": 0.023666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.724756975 + "ts": 0.023680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7247706 + "ts": 0.023695225 }, { "core_id": 0, @@ -222769,23 +3881,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72561795 + "ts": 0.0238338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7256295 + "ts": 0.0238492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.72564325 + "ts": 0.023864425 }, { "core_id": 1, @@ -222795,23 +3907,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7257475 + "ts": 0.024666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.725756975 + "ts": 0.02467995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7257706 + "ts": 0.0246951 }, { "core_id": 0, @@ -222821,23 +3933,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72661795 + "ts": 0.0248338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.72662955 + "ts": 0.024849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.726643175 + "ts": 0.02486425 }, { "core_id": 1, @@ -222847,23 +3959,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7267475 + "ts": 0.025666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.726756975 + "ts": 0.025680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7267706 + "ts": 0.02569535 }, { "core_id": 0, @@ -222873,23 +3985,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72761795 + "ts": 0.0258338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7276295 + "ts": 0.025849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.727643125 + "ts": 0.02586425 }, { "core_id": 1, @@ -222899,23 +4011,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7277475 + "ts": 0.026666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.727757 + "ts": 0.02668 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.727770775 + "ts": 0.026695125 }, { "core_id": 0, @@ -222925,23 +4037,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72861795 + "ts": 0.0268338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7286295 + "ts": 0.026849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.728643125 + "ts": 0.02686425 }, { "core_id": 1, @@ -222951,23 +4063,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7287475 + "ts": 0.027666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.728756975 + "ts": 0.027680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7287706 + "ts": 0.027695225 }, { "core_id": 0, @@ -222977,23 +4089,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72961795 + "ts": 0.0278338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7296295 + "ts": 0.0278492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.72964325 + "ts": 0.027864425 }, { "core_id": 1, @@ -223003,23 +4115,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7297475 + "ts": 0.028666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.729756975 + "ts": 0.02867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7297706 + "ts": 0.0286951 }, { "core_id": 0, @@ -223029,23 +4141,23 @@ "params": { "irq_num": 5 }, - "ts": 2.73061795 + "ts": 0.0288338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.73062955 + "ts": 0.028849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.730643175 + "ts": 0.02886425 }, { "core_id": 1, @@ -223055,23 +4167,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7307475 + "ts": 0.029666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.730756975 + "ts": 0.029680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7307706 + "ts": 0.02969535 }, { "core_id": 0, @@ -223081,23 +4193,23 @@ "params": { "irq_num": 5 }, - "ts": 2.73161795 + "ts": 0.0298338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7316295 + "ts": 0.029849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.731643125 + "ts": 0.02986425 }, { "core_id": 1, @@ -223107,23 +4219,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7317475 + "ts": 0.030666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.731757 + "ts": 0.03068 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.731770775 + "ts": 0.030695125 }, { "core_id": 0, @@ -223133,23 +4245,23 @@ "params": { "irq_num": 5 }, - "ts": 2.73261795 + "ts": 0.0308338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7326295 + "ts": 0.030849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.732643125 + "ts": 0.03086425 }, { "core_id": 1, @@ -223159,23 +4271,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7327475 + "ts": 0.031666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.732756975 + "ts": 0.031680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7327706 + "ts": 0.031695225 }, { "core_id": 0, @@ -223185,7 +4297,7 @@ "params": { "irq_num": 5 }, - "ts": 2.73361795 + "ts": 0.0318338 }, { "core_id": 0, @@ -223193,17 +4305,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.733629375 + "ts": 0.031848825 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.733638825 + "ts": 0.031861575 }, { "core_id": 0, @@ -223211,19 +4323,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.733652975 + "ts": 0.03187725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb728", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 2, + "ts": 0.031912575 + }, + { + "addr": "0x3ffbb738", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -223233,8 +4366,8 @@ "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 184, - "ts": 2.733677 + "size": 4, + "ts": 0.0319512 }, { "core_id": 0, @@ -223244,10 +4377,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.733692775 + "ts": 0.0319681 }, { "core_id": 0, @@ -223257,20 +4390,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.733706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7337475 + "ts": 0.031984075 }, { "core_id": 0, @@ -223278,8 +4401,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3060) example: Task[0x3ffb7f40]: allocated 184 bytes @ 0x3ffb4b10\n", - "ts": 2.73376895 + "msg": "I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738\n", + "ts": 0.03204825 }, { "core_id": 0, @@ -223287,16 +4410,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3060) example: Task[0x3ffb7f40]: allocated 184 bytes @ 0x3ffb4b10\n", - "ts": 2.73376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.733777025 + "msg": "I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738\n", + "ts": 0.03204825 }, { "core_id": 0, @@ -223306,18 +4421,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12288168, + "xQueue": 12287056, "xTicksToWait": 0 }, - "ts": 2.733785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.733795925 + "ts": 0.032061825 }, { "core_id": 0, @@ -223325,9 +4432,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.7338067 + "ts": 0.03207495 }, { "core_id": 1, @@ -223337,7 +4444,7 @@ "params": { "irq_num": 31 }, - "ts": 2.733819725 + "ts": 0.03209115 }, { "core_id": 0, @@ -223347,26 +4454,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.73382825 + "ts": 0.032102025 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7338362 + "ts": 0.0321128 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12287808 + "irq_num": 30 }, - "ts": 2.733844725 + "ts": 0.0321267 }, { "core_id": 1, @@ -223374,19 +4480,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.73385735 + "ts": 0.0321375 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.73386575 + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.03214835 }, { "core_id": 1, @@ -223394,20 +4498,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, "xTicksToWait": 4294967295 }, - "ts": 2.73387405 + "ts": 0.032160325 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc0", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.733882925 + "ts": 0.03217055 }, { "core_id": 1, @@ -223417,18 +4521,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.733892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.733901625 + "ts": 0.032182025 }, { "core_id": 1, @@ -223438,10 +4534,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.73391645 + "ts": 0.0322023 }, { "core_id": 1, @@ -223449,8 +4545,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3060) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.7339657 + "msg": "I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738\n", + "ts": 0.03226585 }, { "core_id": 1, @@ -223458,15 +4554,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3060) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.7339657 + "msg": "I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738\n", + "ts": 0.03226585 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb738", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -223480,44 +4576,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.733984175 + "ts": 0.03228705 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12288292 + "irq_num": 31 }, - "ts": 2.734002175 + "ts": 0.032313925 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.03232535 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.03234205 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.73401485 + "ts": 0.032666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.73402365 + "ts": 0.03267985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 17, "in_irq": false, "params": {}, - "ts": 2.734039225 + "ts": 0.03269555 }, { "core_id": 0, @@ -223527,7 +4638,7 @@ "params": { "irq_num": 5 }, - "ts": 2.73461795 + "ts": 0.0328338 }, { "core_id": 0, @@ -223535,17 +4646,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.734629375 + "ts": 0.0328488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7346388 + "ts": 0.032861575 }, { "core_id": 0, @@ -223553,19 +4664,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.734652975 + "ts": 0.032877375 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb738", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 4, + "ts": 0.0329126 + }, + { + "addr": "0x3ffbb748", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -223575,8 +4707,8 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 368, - "ts": 2.734677 + "size": 8, + "ts": 0.03294715 }, { "core_id": 0, @@ -223586,10 +4718,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.7346897 + "ts": 0.032964075 }, { "core_id": 0, @@ -223599,20 +4731,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.734703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7347475 + "ts": 0.03298425 }, { "core_id": 0, @@ -223620,8 +4742,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3061) example: Task[0x3ffb82a0]: allocated 368 bytes @ 0x3ffb4b10\n", - "ts": 2.734769475 + "msg": "I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748\n", + "ts": 0.0330485 }, { "core_id": 0, @@ -223629,16 +4751,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3061) example: Task[0x3ffb82a0]: allocated 368 bytes @ 0x3ffb4b10\n", - "ts": 2.734769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.73478005 + "msg": "I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748\n", + "ts": 0.0330485 }, { "core_id": 0, @@ -223648,18 +4762,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289032, + "xQueue": 12293072, "xTicksToWait": 0 }, - "ts": 2.73478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.73479895 + "ts": 0.033062225 }, { "core_id": 0, @@ -223667,9 +4773,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.734809725 + "ts": 0.03307545 }, { "core_id": 1, @@ -223679,7 +4785,7 @@ "params": { "irq_num": 31 }, - "ts": 2.73482275 + "ts": 0.0330917 }, { "core_id": 0, @@ -223689,26 +4795,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.734831275 + "ts": 0.03310255 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.73483925 + "ts": 0.0331133 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12288672 + "irq_num": 30 }, - "ts": 2.734847825 + "ts": 0.033127025 }, { "core_id": 1, @@ -223716,19 +4821,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.734860475 + "ts": 0.0331378 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.73486885 + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.03314855 }, { "core_id": 1, @@ -223736,20 +4839,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, "xTicksToWait": 4294967295 }, - "ts": 2.734877175 + "ts": 0.03316055 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc1", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.73488605 + "ts": 0.033171875 }, { "core_id": 1, @@ -223759,18 +4862,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.734895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.734904625 + "ts": 0.0331841 }, { "core_id": 1, @@ -223780,10 +4875,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.73491945 + "ts": 0.033200475 }, { "core_id": 1, @@ -223791,8 +4886,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3061) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.7349687 + "msg": "I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748\n", + "ts": 0.033263975 }, { "core_id": 1, @@ -223800,15 +4895,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3061) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.7349687 + "msg": "I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748\n", + "ts": 0.033263975 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb748", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -223822,44 +4917,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.7349843 + "ts": 0.0332885 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12289156 + "irq_num": 31 }, - "ts": 2.73500535 + "ts": 0.033315625 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.03332705 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.033343625 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.73501805 + "ts": 0.033666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.73502685 + "ts": 0.03367985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 17, "in_irq": false, "params": {}, - "ts": 2.735042425 + "ts": 0.03369555 }, { "core_id": 0, @@ -223869,7 +4979,7 @@ "params": { "irq_num": 5 }, - "ts": 2.73561795 + "ts": 0.0338338 }, { "core_id": 0, @@ -223877,17 +4987,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.735629375 + "ts": 0.0338488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7356388 + "ts": 0.033861575 }, { "core_id": 0, @@ -223895,19 +5005,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.735652975 + "ts": 0.03387725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb748", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 6, + "ts": 0.03391265 + }, + { + "addr": "0x3ffbb758", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -223917,8 +5048,8 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 552, - "ts": 2.735676975 + "size": 12, + "ts": 0.03394705 }, { "core_id": 0, @@ -223928,10 +5059,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.735689675 + "ts": 0.03396395 }, { "core_id": 0, @@ -223941,20 +5072,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.735703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7357475 + "ts": 0.03398005 }, { "core_id": 0, @@ -223962,8 +5083,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3062) example: Task[0x3ffb8600]: allocated 552 bytes @ 0x3ffb4b10\n", - "ts": 2.73576945 + "msg": "I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758\n", + "ts": 0.034050525 }, { "core_id": 0, @@ -223971,16 +5092,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3062) example: Task[0x3ffb8600]: allocated 552 bytes @ 0x3ffb4b10\n", - "ts": 2.73576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7357782 + "msg": "I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758\n", + "ts": 0.034050525 }, { "core_id": 0, @@ -223990,18 +5103,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289896, + "xQueue": 12299072, "xTicksToWait": 0 }, - "ts": 2.7357867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.735797075 + "ts": 0.03406835 }, { "core_id": 0, @@ -224009,9 +5114,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.73580785 + "ts": 0.034081575 }, { "core_id": 1, @@ -224021,7 +5126,7 @@ "params": { "irq_num": 31 }, - "ts": 2.735820875 + "ts": 0.034097875 }, { "core_id": 0, @@ -224031,26 +5136,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.7358294 + "ts": 0.034108725 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.735837375 + "ts": 0.0341195 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12289536 + "irq_num": 30 }, - "ts": 2.73584595 + "ts": 0.034133225 }, { "core_id": 1, @@ -224058,19 +5162,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.7358586 + "ts": 0.0341441 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.735866975 + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.034154925 }, { "core_id": 1, @@ -224078,20 +5180,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, "xTicksToWait": 4294967295 }, - "ts": 2.73587925 + "ts": 0.0341668 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.735887275 + "ts": 0.034178075 }, { "core_id": 1, @@ -224101,18 +5203,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.735895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.735905825 + "ts": 0.034189725 }, { "core_id": 1, @@ -224122,10 +5216,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.73592075 + "ts": 0.0342061 }, { "core_id": 1, @@ -224133,8 +5227,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3062) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.7359701 + "msg": "I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758\n", + "ts": 0.03426965 }, { "core_id": 1, @@ -224142,15 +5236,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3062) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.7359701 + "msg": "I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758\n", + "ts": 0.03426965 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb758", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -224164,44 +5258,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.735985475 + "ts": 0.03429085 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12274088 + "irq_num": 31 }, - "ts": 2.7360036 + "ts": 0.0343219 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.034333375 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.034350075 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.736016425 + "ts": 0.034666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7360252 + "ts": 0.034679875 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.73604065 + "ts": 0.03469545 }, { "core_id": 0, @@ -224211,23 +5320,23 @@ "params": { "irq_num": 5 }, - "ts": 2.73661795 + "ts": 0.0348338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.73662955 + "ts": 0.0348492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.736643175 + "ts": 0.034864425 }, { "core_id": 1, @@ -224237,23 +5346,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7367475 + "ts": 0.035666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.736756975 + "ts": 0.03567995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7367706 + "ts": 0.0356951 }, { "core_id": 0, @@ -224263,23 +5372,23 @@ "params": { "irq_num": 5 }, - "ts": 2.73761795 + "ts": 0.0358338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7376295 + "ts": 0.035849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.737643125 + "ts": 0.03586425 }, { "core_id": 1, @@ -224289,23 +5398,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7377475 + "ts": 0.036666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.737757 + "ts": 0.036680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.737770775 + "ts": 0.03669535 }, { "core_id": 0, @@ -224315,23 +5424,23 @@ "params": { "irq_num": 5 }, - "ts": 2.73861795 + "ts": 0.0368338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7386295 + "ts": 0.036849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.738643125 + "ts": 0.03686425 }, { "core_id": 1, @@ -224341,23 +5450,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7387475 + "ts": 0.037666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.738756975 + "ts": 0.03768 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7387706 + "ts": 0.037695125 }, { "core_id": 0, @@ -224367,23 +5476,23 @@ "params": { "irq_num": 5 }, - "ts": 2.73961795 + "ts": 0.0378338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7396295 + "ts": 0.037849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.73964325 + "ts": 0.03786425 }, { "core_id": 1, @@ -224393,23 +5502,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7397475 + "ts": 0.038666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.739756975 + "ts": 0.038680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7397706 + "ts": 0.038695225 }, { "core_id": 0, @@ -224419,23 +5528,23 @@ "params": { "irq_num": 5 }, - "ts": 2.74061795 + "ts": 0.0388338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7406326 + "ts": 0.0388492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.740646225 + "ts": 0.038864425 }, { "core_id": 1, @@ -224445,23 +5554,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7407475 + "ts": 0.039666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.740756975 + "ts": 0.03967995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7407706 + "ts": 0.0396951 }, { "core_id": 0, @@ -224471,23 +5580,23 @@ "params": { "irq_num": 5 }, - "ts": 2.74161795 + "ts": 0.0398338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7416295 + "ts": 0.039849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.741643125 + "ts": 0.03986425 }, { "core_id": 1, @@ -224497,23 +5606,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7417475 + "ts": 0.040666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.741757 + "ts": 0.040680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.741770775 + "ts": 0.04069535 }, { "core_id": 0, @@ -224523,23 +5632,23 @@ "params": { "irq_num": 5 }, - "ts": 2.74261795 + "ts": 0.0408338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7426295 + "ts": 0.040849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.742643125 + "ts": 0.04086425 }, { "core_id": 1, @@ -224549,23 +5658,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7427475 + "ts": 0.041666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.742756975 + "ts": 0.04168 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7427706 + "ts": 0.041695125 }, { "core_id": 0, @@ -224575,23 +5684,23 @@ "params": { "irq_num": 5 }, - "ts": 2.74361795 + "ts": 0.0418338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7436295 + "ts": 0.041849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.74364325 + "ts": 0.04186425 }, { "core_id": 1, @@ -224601,23 +5710,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7437475 + "ts": 0.042666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.743756975 + "ts": 0.042680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7437706 + "ts": 0.042695225 }, { "core_id": 0, @@ -224627,23 +5736,23 @@ "params": { "irq_num": 5 }, - "ts": 2.74461795 + "ts": 0.0428338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.74462955 + "ts": 0.0428492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.744643175 + "ts": 0.042864425 }, { "core_id": 1, @@ -224653,23 +5762,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7447475 + "ts": 0.043666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.744756975 + "ts": 0.04367995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7447706 + "ts": 0.0436951 }, { "core_id": 0, @@ -224679,23 +5788,23 @@ "params": { "irq_num": 5 }, - "ts": 2.74561795 + "ts": 0.0438338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7456295 + "ts": 0.043849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.745643125 + "ts": 0.04386425 }, { "core_id": 1, @@ -224705,23 +5814,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7457475 + "ts": 0.044666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.745757 + "ts": 0.0446842 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.745770775 + "ts": 0.044699325 }, { "core_id": 0, @@ -224731,23 +5840,23 @@ "params": { "irq_num": 5 }, - "ts": 2.74661795 + "ts": 0.0448338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7466295 + "ts": 0.044849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.746643125 + "ts": 0.04486425 }, { "core_id": 1, @@ -224757,23 +5866,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7467475 + "ts": 0.045666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.746756975 + "ts": 0.045680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7467706 + "ts": 0.045695225 }, { "core_id": 0, @@ -224783,23 +5892,23 @@ "params": { "irq_num": 5 }, - "ts": 2.74761795 + "ts": 0.0458338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7476295 + "ts": 0.0458492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.74764325 + "ts": 0.045864425 }, { "core_id": 1, @@ -224809,23 +5918,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7477475 + "ts": 0.046666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.747756975 + "ts": 0.04667995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7477706 + "ts": 0.0466951 }, { "core_id": 0, @@ -224835,23 +5944,23 @@ "params": { "irq_num": 5 }, - "ts": 2.74861795 + "ts": 0.0468338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.74862955 + "ts": 0.046849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.748643175 + "ts": 0.04686425 }, { "core_id": 1, @@ -224861,23 +5970,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7487475 + "ts": 0.047666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.748756975 + "ts": 0.047680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7487706 + "ts": 0.04769535 }, { "core_id": 0, @@ -224887,23 +5996,23 @@ "params": { "irq_num": 5 }, - "ts": 2.74961795 + "ts": 0.0478338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7496295 + "ts": 0.047849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.749643125 + "ts": 0.04786425 }, { "core_id": 1, @@ -224913,23 +6022,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7497475 + "ts": 0.048666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.749757 + "ts": 0.04868 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.749770775 + "ts": 0.048695125 }, { "core_id": 0, @@ -224939,23 +6048,23 @@ "params": { "irq_num": 5 }, - "ts": 2.75061795 + "ts": 0.0488338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7506295 + "ts": 0.048849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.750643125 + "ts": 0.04886425 }, { "core_id": 1, @@ -224965,23 +6074,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7507475 + "ts": 0.049666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.750756975 + "ts": 0.049680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7507706 + "ts": 0.049695225 }, { "core_id": 0, @@ -224991,23 +6100,23 @@ "params": { "irq_num": 5 }, - "ts": 2.75161795 + "ts": 0.0498338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7516295 + "ts": 0.0498492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.75164325 + "ts": 0.049864425 }, { "core_id": 1, @@ -225017,23 +6126,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7517475 + "ts": 0.050666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.751756975 + "ts": 0.05067995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7517706 + "ts": 0.0506951 }, { "core_id": 0, @@ -225043,23 +6152,23 @@ "params": { "irq_num": 5 }, - "ts": 2.75261795 + "ts": 0.0508338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.752631925 + "ts": 0.050849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.75264555 + "ts": 0.05086425 }, { "core_id": 1, @@ -225069,23 +6178,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7527475 + "ts": 0.051666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.752756975 + "ts": 0.051680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7527706 + "ts": 0.05169535 }, { "core_id": 0, @@ -225095,23 +6204,23 @@ "params": { "irq_num": 5 }, - "ts": 2.75361795 + "ts": 0.0518338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7536295 + "ts": 0.051849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.753643125 + "ts": 0.05186425 }, { "core_id": 1, @@ -225121,23 +6230,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7537475 + "ts": 0.052666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.753757 + "ts": 0.05268 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.753770775 + "ts": 0.052695125 }, { "core_id": 0, @@ -225147,23 +6256,23 @@ "params": { "irq_num": 5 }, - "ts": 2.75461795 + "ts": 0.0528338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7546295 + "ts": 0.052849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.754643125 + "ts": 0.05286425 }, { "core_id": 1, @@ -225173,23 +6282,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7547475 + "ts": 0.053666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.754756975 + "ts": 0.053680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7547706 + "ts": 0.053695225 }, { "core_id": 0, @@ -225199,23 +6308,23 @@ "params": { "irq_num": 5 }, - "ts": 2.75561795 + "ts": 0.0538338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7556295 + "ts": 0.0538492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.75564325 + "ts": 0.053864425 }, { "core_id": 1, @@ -225225,23 +6334,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7557475 + "ts": 0.054666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.755756975 + "ts": 0.05467995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7557706 + "ts": 0.0546951 }, { "core_id": 0, @@ -225251,23 +6360,23 @@ "params": { "irq_num": 5 }, - "ts": 2.75661795 + "ts": 0.0548338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.75662955 + "ts": 0.054849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.756643175 + "ts": 0.05486425 }, { "core_id": 1, @@ -225277,23 +6386,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7567475 + "ts": 0.055666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.756756975 + "ts": 0.055680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7567706 + "ts": 0.05569535 }, { "core_id": 0, @@ -225303,23 +6412,23 @@ "params": { "irq_num": 5 }, - "ts": 2.75761795 + "ts": 0.0558338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7576295 + "ts": 0.055849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.757643125 + "ts": 0.05586425 }, { "core_id": 1, @@ -225329,23 +6438,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7577475 + "ts": 0.056666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.757757 + "ts": 0.056684225 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.757770775 + "ts": 0.056699375 }, { "core_id": 0, @@ -225355,23 +6464,23 @@ "params": { "irq_num": 5 }, - "ts": 2.75861795 + "ts": 0.0568338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7586295 + "ts": 0.056849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.758643125 + "ts": 0.05686425 }, { "core_id": 1, @@ -225381,23 +6490,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7587475 + "ts": 0.057666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.758756975 + "ts": 0.057680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7587706 + "ts": 0.057695225 }, { "core_id": 0, @@ -225407,23 +6516,23 @@ "params": { "irq_num": 5 }, - "ts": 2.75961795 + "ts": 0.0578338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7596295 + "ts": 0.0578492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.75964325 + "ts": 0.057864425 }, { "core_id": 1, @@ -225433,23 +6542,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7597475 + "ts": 0.058666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.759756975 + "ts": 0.05867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7597706 + "ts": 0.0586951 }, { "core_id": 0, @@ -225459,23 +6568,23 @@ "params": { "irq_num": 5 }, - "ts": 2.76061795 + "ts": 0.0588338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.76062955 + "ts": 0.058849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.760643175 + "ts": 0.05886425 }, { "core_id": 1, @@ -225485,23 +6594,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7607475 + "ts": 0.059666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.760756975 + "ts": 0.059680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7607706 + "ts": 0.05969535 }, { "core_id": 0, @@ -225511,23 +6620,23 @@ "params": { "irq_num": 5 }, - "ts": 2.76161795 + "ts": 0.0598338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7616295 + "ts": 0.059849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.761643125 + "ts": 0.05986425 }, { "core_id": 1, @@ -225537,23 +6646,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7617475 + "ts": 0.060666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.761757 + "ts": 0.06068 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.761770775 + "ts": 0.060695125 }, { "core_id": 0, @@ -225563,23 +6672,23 @@ "params": { "irq_num": 5 }, - "ts": 2.76261795 + "ts": 0.0608338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7626295 + "ts": 0.060849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.762643125 + "ts": 0.06086425 }, { "core_id": 1, @@ -225589,23 +6698,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7627475 + "ts": 0.061666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.762756975 + "ts": 0.061680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7627706 + "ts": 0.061695225 }, { "core_id": 0, @@ -225615,7 +6724,7 @@ "params": { "irq_num": 5 }, - "ts": 2.76361795 + "ts": 0.0618338 }, { "core_id": 0, @@ -225623,17 +6732,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.763629375 + "ts": 0.061848825 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.763638825 + "ts": 0.061861575 }, { "core_id": 0, @@ -225641,19 +6750,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.763652975 + "ts": 0.06187725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb758", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 3, + "ts": 0.061912575 + }, + { + "addr": "0x3ffbb768", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -225663,8 +6793,8 @@ "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 186, - "ts": 2.763677 + "size": 6, + "ts": 0.061947 }, { "core_id": 0, @@ -225674,10 +6804,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.763692775 + "ts": 0.061964025 }, { "core_id": 0, @@ -225687,20 +6817,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.763706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7637475 + "ts": 0.061980025 }, { "core_id": 0, @@ -225708,8 +6828,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3090) example: Task[0x3ffb7f40]: allocated 186 bytes @ 0x3ffb4b10\n", - "ts": 2.76376895 + "msg": "I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768\n", + "ts": 0.062044275 }, { "core_id": 0, @@ -225717,16 +6837,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3090) example: Task[0x3ffb7f40]: allocated 186 bytes @ 0x3ffb4b10\n", - "ts": 2.76376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.763777025 + "msg": "I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768\n", + "ts": 0.062044275 }, { "core_id": 0, @@ -225736,18 +6848,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12288168, + "xQueue": 12287056, "xTicksToWait": 0 }, - "ts": 2.763785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.763795925 + "ts": 0.062062075 }, { "core_id": 0, @@ -225755,9 +6859,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.7638067 + "ts": 0.0620752 }, { "core_id": 1, @@ -225767,7 +6871,7 @@ "params": { "irq_num": 31 }, - "ts": 2.763819725 + "ts": 0.06209135 }, { "core_id": 0, @@ -225777,26 +6881,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.76382825 + "ts": 0.0621024 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7638362 + "ts": 0.06211315 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12287808 + "irq_num": 30 }, - "ts": 2.763844725 + "ts": 0.06212715 }, { "core_id": 1, @@ -225804,19 +6907,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.76385735 + "ts": 0.062138 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.76386575 + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.062148875 }, { "core_id": 1, @@ -225824,20 +6925,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, "xTicksToWait": 4294967295 }, - "ts": 2.76387405 + "ts": 0.062160875 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc0", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.763882925 + "ts": 0.0621712 }, { "core_id": 1, @@ -225847,18 +6948,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.763892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.763901625 + "ts": 0.062183675 }, { "core_id": 1, @@ -225868,10 +6961,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.76391645 + "ts": 0.06219985 }, { "core_id": 1, @@ -225879,8 +6972,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3090) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.7639657 + "msg": "I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768\n", + "ts": 0.0622634 }, { "core_id": 1, @@ -225888,15 +6981,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3090) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.7639657 + "msg": "I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768\n", + "ts": 0.0622634 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb768", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -225910,44 +7003,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.763984175 + "ts": 0.0622844 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12288292 + "irq_num": 31 }, - "ts": 2.764002175 + "ts": 0.062314725 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0623262 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0623429 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.76401485 + "ts": 0.062666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.76402365 + "ts": 0.062679875 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 17, "in_irq": false, "params": {}, - "ts": 2.764039225 + "ts": 0.06269545 }, { "core_id": 0, @@ -225957,7 +7065,7 @@ "params": { "irq_num": 5 }, - "ts": 2.76461795 + "ts": 0.0628338 }, { "core_id": 0, @@ -225965,17 +7073,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.764629375 + "ts": 0.062848825 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7646388 + "ts": 0.062861575 }, { "core_id": 0, @@ -225983,19 +7091,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.764652975 + "ts": 0.06287725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb768", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 6, + "ts": 0.062912575 + }, + { + "addr": "0x3ffbb778", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -226005,8 +7134,8 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 372, - "ts": 2.764677 + "size": 12, + "ts": 0.062947 }, { "core_id": 0, @@ -226016,10 +7145,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.7646897 + "ts": 0.062964025 }, { "core_id": 0, @@ -226029,20 +7158,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.764703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7647475 + "ts": 0.062980025 }, { "core_id": 0, @@ -226050,8 +7169,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3091) example: Task[0x3ffb82a0]: allocated 372 bytes @ 0x3ffb4b10\n", - "ts": 2.764769475 + "msg": "I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778\n", + "ts": 0.0630465 }, { "core_id": 0, @@ -226059,16 +7178,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3091) example: Task[0x3ffb82a0]: allocated 372 bytes @ 0x3ffb4b10\n", - "ts": 2.764769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.76478005 + "msg": "I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778\n", + "ts": 0.0630465 }, { "core_id": 0, @@ -226078,18 +7189,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289032, + "xQueue": 12293072, "xTicksToWait": 0 }, - "ts": 2.76478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.76479895 + "ts": 0.06306005 }, { "core_id": 0, @@ -226097,9 +7200,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.764809725 + "ts": 0.06307745 }, { "core_id": 1, @@ -226109,7 +7212,7 @@ "params": { "irq_num": 31 }, - "ts": 2.76482275 + "ts": 0.063093775 }, { "core_id": 0, @@ -226119,26 +7222,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.764831275 + "ts": 0.063104625 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.76483925 + "ts": 0.063115375 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12288672 + "irq_num": 30 }, - "ts": 2.764847825 + "ts": 0.0631291 }, { "core_id": 1, @@ -226146,19 +7248,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.764860475 + "ts": 0.06313995 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.76486885 + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.063150775 }, { "core_id": 1, @@ -226166,20 +7266,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, "xTicksToWait": 4294967295 }, - "ts": 2.764877175 + "ts": 0.063162625 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc1", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.76488605 + "ts": 0.0631729 }, { "core_id": 1, @@ -226189,18 +7289,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.764895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.764904625 + "ts": 0.063184375 }, { "core_id": 1, @@ -226210,10 +7302,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.76491945 + "ts": 0.063200675 }, { "core_id": 1, @@ -226221,8 +7313,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3091) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.7649687 + "msg": "I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778\n", + "ts": 0.063264125 }, { "core_id": 1, @@ -226230,15 +7322,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3091) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.7649687 + "msg": "I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778\n", + "ts": 0.063264125 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb778", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -226252,44 +7344,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.7649843 + "ts": 0.063285275 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12289156 + "irq_num": 31 }, - "ts": 2.76500535 + "ts": 0.0633124 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.063323825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0633404 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.76501805 + "ts": 0.063666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.76502685 + "ts": 0.06367985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 17, "in_irq": false, "params": {}, - "ts": 2.765042425 + "ts": 0.06369555 }, { "core_id": 0, @@ -226299,7 +7406,7 @@ "params": { "irq_num": 5 }, - "ts": 2.76561795 + "ts": 0.0638338 }, { "core_id": 0, @@ -226307,17 +7414,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.765629375 + "ts": 0.0638488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7656388 + "ts": 0.063861575 }, { "core_id": 0, @@ -226325,19 +7432,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.765652975 + "ts": 0.06387725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb778", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 9, + "ts": 0.06391265 + }, + { + "addr": "0x3ffbb788", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -226347,8 +7475,8 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 558, - "ts": 2.765676975 + "size": 18, + "ts": 0.0639513 }, { "core_id": 0, @@ -226358,10 +7486,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.765689675 + "ts": 0.0639682 }, { "core_id": 0, @@ -226371,20 +7499,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.765703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7657475 + "ts": 0.063984175 }, { "core_id": 0, @@ -226392,8 +7510,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3092) example: Task[0x3ffb8600]: allocated 558 bytes @ 0x3ffb4b10\n", - "ts": 2.76576945 + "msg": "I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788\n", + "ts": 0.064054525 }, { "core_id": 0, @@ -226401,16 +7519,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3092) example: Task[0x3ffb8600]: allocated 558 bytes @ 0x3ffb4b10\n", - "ts": 2.76576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7657782 + "msg": "I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788\n", + "ts": 0.064054525 }, { "core_id": 0, @@ -226420,18 +7530,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289896, + "xQueue": 12299072, "xTicksToWait": 0 }, - "ts": 2.7657867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.765797075 + "ts": 0.064068125 }, { "core_id": 0, @@ -226439,9 +7541,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.76580785 + "ts": 0.06408135 }, { "core_id": 1, @@ -226451,7 +7553,7 @@ "params": { "irq_num": 31 }, - "ts": 2.765820875 + "ts": 0.06409765 }, { "core_id": 0, @@ -226461,26 +7563,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.7658294 + "ts": 0.0641085 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.765837375 + "ts": 0.064119275 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12289536 + "irq_num": 30 }, - "ts": 2.76584595 + "ts": 0.064133 }, { "core_id": 1, @@ -226488,19 +7589,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.7658586 + "ts": 0.064143875 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.765866975 + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0641547 }, { "core_id": 1, @@ -226508,20 +7607,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, "xTicksToWait": 4294967295 }, - "ts": 2.76587925 + "ts": 0.064166575 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.765887275 + "ts": 0.06417785 }, { "core_id": 1, @@ -226531,18 +7630,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.765895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.765905825 + "ts": 0.0641895 }, { "core_id": 1, @@ -226552,10 +7643,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.76592075 + "ts": 0.06420995 }, { "core_id": 1, @@ -226563,8 +7654,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3092) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.7659701 + "msg": "I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788\n", + "ts": 0.0642735 }, { "core_id": 1, @@ -226572,15 +7663,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3092) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.7659701 + "msg": "I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788\n", + "ts": 0.0642735 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb788", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -226594,44 +7685,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.765985475 + "ts": 0.0642947 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12274088 + "irq_num": 31 }, - "ts": 2.7660036 + "ts": 0.064321575 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.064333 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.064349575 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.766016425 + "ts": 0.064666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7660252 + "ts": 0.06467985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.76604065 + "ts": 0.06469555 }, { "core_id": 0, @@ -226641,23 +7747,23 @@ "params": { "irq_num": 5 }, - "ts": 2.76661795 + "ts": 0.0648338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.76662955 + "ts": 0.064849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.766643175 + "ts": 0.06486425 }, { "core_id": 1, @@ -226667,23 +7773,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7667475 + "ts": 0.065666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.766756975 + "ts": 0.065680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7667706 + "ts": 0.06569535 }, { "core_id": 0, @@ -226693,23 +7799,23 @@ "params": { "irq_num": 5 }, - "ts": 2.76761795 + "ts": 0.0658338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7676295 + "ts": 0.065849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.767643125 + "ts": 0.06586425 }, { "core_id": 1, @@ -226719,23 +7825,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7677475 + "ts": 0.066666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.767757 + "ts": 0.06668 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.767770775 + "ts": 0.066695125 }, { "core_id": 0, @@ -226745,23 +7851,23 @@ "params": { "irq_num": 5 }, - "ts": 2.76861795 + "ts": 0.0668338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7686295 + "ts": 0.066849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.768643125 + "ts": 0.06686425 }, { "core_id": 1, @@ -226771,23 +7877,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7687475 + "ts": 0.067666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.768756975 + "ts": 0.067680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7687706 + "ts": 0.067695225 }, { "core_id": 0, @@ -226797,23 +7903,23 @@ "params": { "irq_num": 5 }, - "ts": 2.76961795 + "ts": 0.0678338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7696295 + "ts": 0.0678492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.76964325 + "ts": 0.067864425 }, { "core_id": 1, @@ -226823,23 +7929,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7697475 + "ts": 0.068666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.769756975 + "ts": 0.06867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7697706 + "ts": 0.0686951 }, { "core_id": 0, @@ -226849,23 +7955,23 @@ "params": { "irq_num": 5 }, - "ts": 2.77061795 + "ts": 0.0688338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7706326 + "ts": 0.068849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.770646225 + "ts": 0.06886425 }, { "core_id": 1, @@ -226875,23 +7981,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7707475 + "ts": 0.069666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.770756975 + "ts": 0.069680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7707706 + "ts": 0.06969535 }, { "core_id": 0, @@ -226901,23 +8007,23 @@ "params": { "irq_num": 5 }, - "ts": 2.77161795 + "ts": 0.0698338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7716295 + "ts": 0.069849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.771643125 + "ts": 0.069868575 }, { "core_id": 1, @@ -226927,23 +8033,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7717475 + "ts": 0.070666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.771757 + "ts": 0.07067995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.771770775 + "ts": 0.0706951 }, { "core_id": 0, @@ -226953,23 +8059,23 @@ "params": { "irq_num": 5 }, - "ts": 2.77261795 + "ts": 0.0708338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7726295 + "ts": 0.070849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.772643125 + "ts": 0.07086425 }, { "core_id": 1, @@ -226979,23 +8085,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7727475 + "ts": 0.071666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.772756975 + "ts": 0.071680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7727706 + "ts": 0.07169535 }, { "core_id": 0, @@ -227005,23 +8111,23 @@ "params": { "irq_num": 5 }, - "ts": 2.77361795 + "ts": 0.0718338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7736295 + "ts": 0.071849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.77364325 + "ts": 0.07186425 }, { "core_id": 1, @@ -227031,23 +8137,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7737475 + "ts": 0.072666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.773756975 + "ts": 0.07268 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7737706 + "ts": 0.072695125 }, { "core_id": 0, @@ -227057,23 +8163,23 @@ "params": { "irq_num": 5 }, - "ts": 2.77461795 + "ts": 0.0728338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.77462955 + "ts": 0.072849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.774643175 + "ts": 0.07286425 }, { "core_id": 1, @@ -227083,23 +8189,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7747475 + "ts": 0.073666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.774756975 + "ts": 0.073680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7747706 + "ts": 0.073695225 }, { "core_id": 0, @@ -227109,23 +8215,23 @@ "params": { "irq_num": 5 }, - "ts": 2.77561795 + "ts": 0.0738338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7756295 + "ts": 0.0738492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.775643125 + "ts": 0.073864425 }, { "core_id": 1, @@ -227135,23 +8241,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7757475 + "ts": 0.074666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.775757 + "ts": 0.07467995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.775770775 + "ts": 0.0746951 }, { "core_id": 0, @@ -227161,23 +8267,23 @@ "params": { "irq_num": 5 }, - "ts": 2.77661795 + "ts": 0.0748338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7766295 + "ts": 0.074849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.776643125 + "ts": 0.07486425 }, { "core_id": 1, @@ -227187,23 +8293,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7767475 + "ts": 0.075666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.776756975 + "ts": 0.075680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7767706 + "ts": 0.07569535 }, { "core_id": 0, @@ -227213,23 +8319,23 @@ "params": { "irq_num": 5 }, - "ts": 2.77761795 + "ts": 0.0758338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7776295 + "ts": 0.075849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.77764325 + "ts": 0.07586425 }, { "core_id": 1, @@ -227239,23 +8345,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7777475 + "ts": 0.076666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.777756975 + "ts": 0.07668 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7777706 + "ts": 0.076695125 }, { "core_id": 0, @@ -227265,23 +8371,23 @@ "params": { "irq_num": 5 }, - "ts": 2.77861795 + "ts": 0.0768338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.77862955 + "ts": 0.076849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.778643175 + "ts": 0.07686425 }, { "core_id": 1, @@ -227291,23 +8397,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7787475 + "ts": 0.077666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.778756975 + "ts": 0.077680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7787706 + "ts": 0.077695225 }, { "core_id": 0, @@ -227317,23 +8423,23 @@ "params": { "irq_num": 5 }, - "ts": 2.77961795 + "ts": 0.0778338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7796295 + "ts": 0.0778492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.779643125 + "ts": 0.077864425 }, { "core_id": 1, @@ -227343,23 +8449,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7797475 + "ts": 0.078666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.779757 + "ts": 0.07867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.779770775 + "ts": 0.0786951 }, { "core_id": 0, @@ -227369,23 +8475,23 @@ "params": { "irq_num": 5 }, - "ts": 2.78061795 + "ts": 0.0788338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7806295 + "ts": 0.078849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.780643125 + "ts": 0.07886425 }, { "core_id": 1, @@ -227395,23 +8501,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7807475 + "ts": 0.079666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.780756975 + "ts": 0.079680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7807706 + "ts": 0.07969535 }, { "core_id": 0, @@ -227421,23 +8527,23 @@ "params": { "irq_num": 5 }, - "ts": 2.78161795 + "ts": 0.0798338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7816295 + "ts": 0.079849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.78164325 + "ts": 0.07986425 }, { "core_id": 1, @@ -227447,23 +8553,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7817475 + "ts": 0.080666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.781756975 + "ts": 0.08068 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7817706 + "ts": 0.080695125 }, { "core_id": 0, @@ -227473,23 +8579,23 @@ "params": { "irq_num": 5 }, - "ts": 2.78261795 + "ts": 0.0808338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.782631925 + "ts": 0.080849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.78264555 + "ts": 0.08086425 }, { "core_id": 1, @@ -227499,23 +8605,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7827475 + "ts": 0.081666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.782756975 + "ts": 0.081680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7827706 + "ts": 0.081695225 }, { "core_id": 0, @@ -227525,23 +8631,23 @@ "params": { "irq_num": 5 }, - "ts": 2.78361795 + "ts": 0.0818338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7836295 + "ts": 0.0818492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.783643125 + "ts": 0.081864425 }, { "core_id": 1, @@ -227551,23 +8657,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7837475 + "ts": 0.082666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.783757 + "ts": 0.082680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.783770775 + "ts": 0.08269535 }, { "core_id": 0, @@ -227577,23 +8683,23 @@ "params": { "irq_num": 5 }, - "ts": 2.78461795 + "ts": 0.0828338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7846295 + "ts": 0.082849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.784643125 + "ts": 0.08286425 }, { "core_id": 1, @@ -227603,23 +8709,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7847475 + "ts": 0.083666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.784756975 + "ts": 0.08368 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7847706 + "ts": 0.083695125 }, { "core_id": 0, @@ -227629,23 +8735,23 @@ "params": { "irq_num": 5 }, - "ts": 2.78561795 + "ts": 0.0838338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7856295 + "ts": 0.083849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.78564325 + "ts": 0.08386425 }, { "core_id": 1, @@ -227655,23 +8761,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7857475 + "ts": 0.084666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.785756975 + "ts": 0.084680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7857706 + "ts": 0.084695225 }, { "core_id": 0, @@ -227681,23 +8787,23 @@ "params": { "irq_num": 5 }, - "ts": 2.78661795 + "ts": 0.0848338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.78662955 + "ts": 0.0848492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.786643175 + "ts": 0.084864425 }, { "core_id": 1, @@ -227707,23 +8813,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7867475 + "ts": 0.085666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.786756975 + "ts": 0.08567995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7867706 + "ts": 0.0856951 }, { "core_id": 0, @@ -227733,23 +8839,23 @@ "params": { "irq_num": 5 }, - "ts": 2.78761795 + "ts": 0.0858338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7876295 + "ts": 0.085849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.787643125 + "ts": 0.08586425 }, { "core_id": 1, @@ -227759,23 +8865,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7877475 + "ts": 0.086666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.787757 + "ts": 0.086680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.787770775 + "ts": 0.08669535 }, { "core_id": 0, @@ -227785,23 +8891,23 @@ "params": { "irq_num": 5 }, - "ts": 2.78861795 + "ts": 0.0868338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7886295 + "ts": 0.086849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.788643125 + "ts": 0.08686425 }, { "core_id": 1, @@ -227811,23 +8917,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7887475 + "ts": 0.087666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.788756975 + "ts": 0.08768 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7887706 + "ts": 0.087695125 }, { "core_id": 0, @@ -227837,23 +8943,23 @@ "params": { "irq_num": 5 }, - "ts": 2.78961795 + "ts": 0.0878338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7896295 + "ts": 0.087849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.78964325 + "ts": 0.08786425 }, { "core_id": 1, @@ -227863,23 +8969,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7897475 + "ts": 0.088666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.789756975 + "ts": 0.088680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7897706 + "ts": 0.088695225 }, { "core_id": 0, @@ -227889,23 +8995,23 @@ "params": { "irq_num": 5 }, - "ts": 2.79061795 + "ts": 0.0888338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.79062955 + "ts": 0.0888492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.790643175 + "ts": 0.088864425 }, { "core_id": 1, @@ -227915,23 +9021,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7907475 + "ts": 0.089666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.790756975 + "ts": 0.08967995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7907706 + "ts": 0.0896951 }, { "core_id": 0, @@ -227941,23 +9047,23 @@ "params": { "irq_num": 5 }, - "ts": 2.79161795 + "ts": 0.0898338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7916295 + "ts": 0.089849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.791643125 + "ts": 0.08986425 }, { "core_id": 1, @@ -227967,23 +9073,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7917475 + "ts": 0.090666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.791757 + "ts": 0.090680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.791770775 + "ts": 0.09069535 }, { "core_id": 0, @@ -227993,23 +9099,23 @@ "params": { "irq_num": 5 }, - "ts": 2.79261795 + "ts": 0.0908338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7926295 + "ts": 0.090849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.792643125 + "ts": 0.09086425 }, { "core_id": 1, @@ -228019,23 +9125,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7927475 + "ts": 0.091666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.792756975 + "ts": 0.09168 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7927706 + "ts": 0.091695125 }, { "core_id": 0, @@ -228045,7 +9151,7 @@ "params": { "irq_num": 5 }, - "ts": 2.79361795 + "ts": 0.0918338 }, { "core_id": 0, @@ -228053,17 +9159,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.793629375 + "ts": 0.0918488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.793638825 + "ts": 0.091861575 }, { "core_id": 0, @@ -228071,18 +9177,39 @@ "id": 4, "in_irq": false, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.793652975 + "ts": 0.09187725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb788", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 4, + "ts": 0.091912475 + }, + { + "addr": "0x3ffbb798", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", "0x0", "0x0", "0x0", @@ -228093,8 +9220,8 @@ "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 188, - "ts": 2.793677 + "size": 8, + "ts": 0.0919503 }, { "core_id": 0, @@ -228104,10 +9231,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.793692775 + "ts": 0.0919672 }, { "core_id": 0, @@ -228117,20 +9244,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.793706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7937475 + "ts": 0.0919832 }, { "core_id": 0, @@ -228138,8 +9255,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3120) example: Task[0x3ffb7f40]: allocated 188 bytes @ 0x3ffb4b10\n", - "ts": 2.79376895 + "msg": "I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798\n", + "ts": 0.09204735 }, { "core_id": 0, @@ -228147,16 +9264,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3120) example: Task[0x3ffb7f40]: allocated 188 bytes @ 0x3ffb4b10\n", - "ts": 2.79376895 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.793777025 + "msg": "I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798\n", + "ts": 0.09204735 }, { "core_id": 0, @@ -228166,18 +9275,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12288168, + "xQueue": 12287056, "xTicksToWait": 0 }, - "ts": 2.793785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.793795925 + "ts": 0.092060925 }, { "core_id": 0, @@ -228185,9 +9286,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.7938067 + "ts": 0.092074075 }, { "core_id": 1, @@ -228197,7 +9298,7 @@ "params": { "irq_num": 31 }, - "ts": 2.793819725 + "ts": 0.092090275 }, { "core_id": 0, @@ -228207,26 +9308,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.79382825 + "ts": 0.092101125 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7938362 + "ts": 0.092111925 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12287808 + "irq_num": 30 }, - "ts": 2.793844725 + "ts": 0.0921258 }, { "core_id": 1, @@ -228234,19 +9334,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.79385735 + "ts": 0.092136625 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.79386575 + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.092147475 }, { "core_id": 1, @@ -228254,20 +9352,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, "xTicksToWait": 4294967295 }, - "ts": 2.79387405 + "ts": 0.09215935 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc0", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.793882925 + "ts": 0.092169575 }, { "core_id": 1, @@ -228277,18 +9375,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.793892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.793901625 + "ts": 0.09218105 }, { "core_id": 1, @@ -228298,10 +9388,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.79391645 + "ts": 0.0922013 }, { "core_id": 1, @@ -228309,8 +9399,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3120) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.7939657 + "msg": "I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798\n", + "ts": 0.09226485 }, { "core_id": 1, @@ -228318,15 +9408,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3120) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.7939657 + "msg": "I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798\n", + "ts": 0.09226485 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb798", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -228340,44 +9430,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.793984175 + "ts": 0.09228605 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12288292 + "irq_num": 31 }, - "ts": 2.794002175 + "ts": 0.09231295 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0923245 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.092341075 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.79401485 + "ts": 0.092666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.79402365 + "ts": 0.09267985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 17, "in_irq": false, "params": {}, - "ts": 2.794039225 + "ts": 0.09269555 }, { "core_id": 0, @@ -228387,7 +9492,7 @@ "params": { "irq_num": 5 }, - "ts": 2.79461795 + "ts": 0.0928338 }, { "core_id": 0, @@ -228395,17 +9500,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.794629375 + "ts": 0.0928488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7946388 + "ts": 0.092861575 }, { "core_id": 0, @@ -228413,18 +9518,39 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.794652975 + "ts": 0.092877375 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb798", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 8, + "ts": 0.092912775 + }, + { + "addr": "0x3ffbb7a8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", "0x0", "0x0", "0x0", @@ -228435,8 +9561,8 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 376, - "ts": 2.794677 + "size": 16, + "ts": 0.0929473 }, { "core_id": 0, @@ -228446,10 +9572,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.7946897 + "ts": 0.09296425 }, { "core_id": 0, @@ -228459,20 +9585,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.794703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7947475 + "ts": 0.092984425 }, { "core_id": 0, @@ -228480,8 +9596,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3121) example: Task[0x3ffb82a0]: allocated 376 bytes @ 0x3ffb4b10\n", - "ts": 2.794769475 + "msg": "I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8\n", + "ts": 0.0930509 }, { "core_id": 0, @@ -228489,16 +9605,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3121) example: Task[0x3ffb82a0]: allocated 376 bytes @ 0x3ffb4b10\n", - "ts": 2.794769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.79478005 + "msg": "I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8\n", + "ts": 0.0930509 }, { "core_id": 0, @@ -228508,18 +9616,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289032, + "xQueue": 12293072, "xTicksToWait": 0 }, - "ts": 2.79478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.79479895 + "ts": 0.09306455 }, { "core_id": 0, @@ -228527,9 +9627,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.794809725 + "ts": 0.09307785 }, { "core_id": 1, @@ -228539,7 +9639,7 @@ "params": { "irq_num": 31 }, - "ts": 2.79482275 + "ts": 0.093094175 }, { "core_id": 0, @@ -228549,26 +9649,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.794831275 + "ts": 0.093105025 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.79483925 + "ts": 0.093115775 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12288672 + "irq_num": 30 }, - "ts": 2.794847825 + "ts": 0.0931295 }, { "core_id": 1, @@ -228576,19 +9675,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.794860475 + "ts": 0.09314035 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.79486885 + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.093151175 }, { "core_id": 1, @@ -228596,20 +9693,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, "xTicksToWait": 4294967295 }, - "ts": 2.794877175 + "ts": 0.093163025 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc1", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.79488605 + "ts": 0.0931733 }, { "core_id": 1, @@ -228619,18 +9716,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.794895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.794904625 + "ts": 0.093184775 }, { "core_id": 1, @@ -228640,10 +9729,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.79491945 + "ts": 0.093201075 }, { "core_id": 1, @@ -228651,8 +9740,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3121) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.7949687 + "msg": "I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8\n", + "ts": 0.093264525 }, { "core_id": 1, @@ -228660,15 +9749,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3121) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.7949687 + "msg": "I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8\n", + "ts": 0.093264525 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb7a8", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -228682,44 +9771,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.7949843 + "ts": 0.09328955 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12289156 + "irq_num": 31 }, - "ts": 2.79500535 + "ts": 0.09331655 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.093327975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.09334455 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.79501805 + "ts": 0.093666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.79502685 + "ts": 0.09367985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 17, "in_irq": false, "params": {}, - "ts": 2.795042425 + "ts": 0.09369555 }, { "core_id": 0, @@ -228729,7 +9833,7 @@ "params": { "irq_num": 5 }, - "ts": 2.79561795 + "ts": 0.0938338 }, { "core_id": 0, @@ -228737,17 +9841,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.795629375 + "ts": 0.0938488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7956388 + "ts": 0.093861575 }, { "core_id": 0, @@ -228755,19 +9859,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.795652975 + "ts": 0.09387725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb7a8", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 12, + "ts": 0.09391265 + }, + { + "addr": "0x3ffbb7b8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -228777,8 +9902,8 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 564, - "ts": 2.795676975 + "size": 24, + "ts": 0.09394705 }, { "core_id": 0, @@ -228788,10 +9913,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.795689675 + "ts": 0.09396395 }, { "core_id": 0, @@ -228801,20 +9926,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.795703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7957475 + "ts": 0.09398005 }, { "core_id": 0, @@ -228822,8 +9937,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3122) example: Task[0x3ffb8600]: allocated 564 bytes @ 0x3ffb4b10\n", - "ts": 2.79576945 + "msg": "I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8\n", + "ts": 0.094050525 }, { "core_id": 0, @@ -228831,16 +9946,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3122) example: Task[0x3ffb8600]: allocated 564 bytes @ 0x3ffb4b10\n", - "ts": 2.79576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7957782 + "msg": "I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8\n", + "ts": 0.094050525 }, { "core_id": 0, @@ -228850,18 +9957,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289896, + "xQueue": 12299072, "xTicksToWait": 0 }, - "ts": 2.7957867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.795797075 + "ts": 0.09406835 }, { "core_id": 0, @@ -228869,9 +9968,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.79580785 + "ts": 0.094081575 }, { "core_id": 1, @@ -228881,7 +9980,7 @@ "params": { "irq_num": 31 }, - "ts": 2.795820875 + "ts": 0.094097875 }, { "core_id": 0, @@ -228891,26 +9990,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.7958294 + "ts": 0.094108725 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.795837375 + "ts": 0.0941195 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12289536 + "irq_num": 30 }, - "ts": 2.79584595 + "ts": 0.094133225 }, { "core_id": 1, @@ -228918,19 +10016,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.7958586 + "ts": 0.0941441 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.795866975 + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.094154925 }, { "core_id": 1, @@ -228938,20 +10034,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, "xTicksToWait": 4294967295 }, - "ts": 2.79587925 + "ts": 0.0941668 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.795887275 + "ts": 0.094178075 }, { "core_id": 1, @@ -228961,18 +10057,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.795895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.795905825 + "ts": 0.094189725 }, { "core_id": 1, @@ -228982,10 +10070,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.79592075 + "ts": 0.0942061 }, { "core_id": 1, @@ -228993,8 +10081,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3122) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.7959701 + "msg": "I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8\n", + "ts": 0.09426965 }, { "core_id": 1, @@ -229002,15 +10090,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3122) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.7959701 + "msg": "I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8\n", + "ts": 0.09426965 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb7b8", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -229024,44 +10112,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.795985475 + "ts": 0.09429085 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12274088 + "irq_num": 31 }, - "ts": 2.7960036 + "ts": 0.094321875 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09433335 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.09435005 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.796016425 + "ts": 0.094666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7960252 + "ts": 0.094679875 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.79604065 + "ts": 0.09469545 }, { "core_id": 0, @@ -229071,23 +10174,23 @@ "params": { "irq_num": 5 }, - "ts": 2.79661795 + "ts": 0.0948338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.79662955 + "ts": 0.0948492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.796643175 + "ts": 0.094864425 }, { "core_id": 1, @@ -229097,23 +10200,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7967475 + "ts": 0.095666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.796756975 + "ts": 0.09567995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7967706 + "ts": 0.0956951 }, { "core_id": 0, @@ -229123,23 +10226,23 @@ "params": { "irq_num": 5 }, - "ts": 2.79761795 + "ts": 0.0958338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7976295 + "ts": 0.095849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.797643125 + "ts": 0.09586425 }, { "core_id": 1, @@ -229149,23 +10252,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7977475 + "ts": 0.096666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.797757 + "ts": 0.096680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.797770775 + "ts": 0.09669535 }, { "core_id": 0, @@ -229175,23 +10278,23 @@ "params": { "irq_num": 5 }, - "ts": 2.79861795 + "ts": 0.0968338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7986295 + "ts": 0.096849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.798643125 + "ts": 0.09686425 }, { "core_id": 1, @@ -229201,23 +10304,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7987475 + "ts": 0.097666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.798756975 + "ts": 0.09768 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7987706 + "ts": 0.097695125 }, { "core_id": 0, @@ -229227,23 +10330,23 @@ "params": { "irq_num": 5 }, - "ts": 2.79961795 + "ts": 0.0978338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7996295 + "ts": 0.097849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.79964325 + "ts": 0.09786425 }, { "core_id": 1, @@ -229253,23 +10356,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7997475 + "ts": 0.098666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.799756975 + "ts": 0.098680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7997706 + "ts": 0.098695225 }, { "core_id": 0, @@ -229279,23 +10382,23 @@ "params": { "irq_num": 5 }, - "ts": 2.80061795 + "ts": 0.0988338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8006326 + "ts": 0.0988492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.800646225 + "ts": 0.098864425 }, { "core_id": 1, @@ -229305,23 +10408,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8007475 + "ts": 0.099666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.800756975 + "ts": 0.09967995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8007706 + "ts": 0.0996951 }, { "core_id": 0, @@ -229331,23 +10434,23 @@ "params": { "irq_num": 5 }, - "ts": 2.80161795 + "ts": 0.0998338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8016295 + "ts": 0.099849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.801643125 + "ts": 0.09986425 }, { "core_id": 1, @@ -229357,23 +10460,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8017475 + "ts": 0.100666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.801757 + "ts": 0.100680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.801770775 + "ts": 0.10069535 }, { "core_id": 0, @@ -229383,23 +10486,23 @@ "params": { "irq_num": 5 }, - "ts": 2.80261795 + "ts": 0.1008338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8026295 + "ts": 0.100849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.802643125 + "ts": 0.10086425 }, { "core_id": 1, @@ -229409,23 +10512,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8027475 + "ts": 0.101666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.802756975 + "ts": 0.10168 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8027706 + "ts": 0.101695125 }, { "core_id": 0, @@ -229435,23 +10538,23 @@ "params": { "irq_num": 5 }, - "ts": 2.80361795 + "ts": 0.1018338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8036295 + "ts": 0.101849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.80364325 + "ts": 0.10186425 }, { "core_id": 1, @@ -229461,23 +10564,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8037475 + "ts": 0.102666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.803756975 + "ts": 0.102680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8037706 + "ts": 0.102695225 }, { "core_id": 0, @@ -229487,23 +10590,23 @@ "params": { "irq_num": 5 }, - "ts": 2.80461795 + "ts": 0.1028338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.80462955 + "ts": 0.1028492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.804643175 + "ts": 0.102864425 }, { "core_id": 1, @@ -229513,23 +10616,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8047475 + "ts": 0.103666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.804756975 + "ts": 0.10367995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8047706 + "ts": 0.1036951 }, { "core_id": 0, @@ -229539,23 +10642,23 @@ "params": { "irq_num": 5 }, - "ts": 2.80561795 + "ts": 0.1038338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8056295 + "ts": 0.103849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.805643125 + "ts": 0.10386425 }, { "core_id": 1, @@ -229565,23 +10668,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8057475 + "ts": 0.104666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.805757 + "ts": 0.104683575 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.805770775 + "ts": 0.104698725 }, { "core_id": 0, @@ -229591,23 +10694,23 @@ "params": { "irq_num": 5 }, - "ts": 2.80661795 + "ts": 0.1048338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8066295 + "ts": 0.104849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.806643125 + "ts": 0.10486425 }, { "core_id": 1, @@ -229617,23 +10720,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8067475 + "ts": 0.105666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.806756975 + "ts": 0.105680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8067706 + "ts": 0.105695225 }, { "core_id": 0, @@ -229643,23 +10746,23 @@ "params": { "irq_num": 5 }, - "ts": 2.80761795 + "ts": 0.1058338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8076295 + "ts": 0.1058492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.80764325 + "ts": 0.105864425 }, { "core_id": 1, @@ -229669,23 +10772,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8077475 + "ts": 0.106666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.807756975 + "ts": 0.10667995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8077706 + "ts": 0.1066951 }, { "core_id": 0, @@ -229695,23 +10798,23 @@ "params": { "irq_num": 5 }, - "ts": 2.80861795 + "ts": 0.1068338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.80862955 + "ts": 0.106849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.808643175 + "ts": 0.10686425 }, { "core_id": 1, @@ -229721,23 +10824,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8087475 + "ts": 0.107666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.808756975 + "ts": 0.107680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8087706 + "ts": 0.10769535 }, { "core_id": 0, @@ -229747,23 +10850,23 @@ "params": { "irq_num": 5 }, - "ts": 2.80961795 + "ts": 0.1078338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8096295 + "ts": 0.107849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.809643125 + "ts": 0.10786425 }, { "core_id": 1, @@ -229773,23 +10876,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8097475 + "ts": 0.108666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.809757 + "ts": 0.10868 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.809770775 + "ts": 0.108695125 }, { "core_id": 0, @@ -229799,23 +10902,23 @@ "params": { "irq_num": 5 }, - "ts": 2.81061795 + "ts": 0.1088338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8106295 + "ts": 0.108849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.810643125 + "ts": 0.10886425 }, { "core_id": 1, @@ -229825,23 +10928,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8107475 + "ts": 0.109666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.810756975 + "ts": 0.109680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8107706 + "ts": 0.109695225 }, { "core_id": 0, @@ -229851,23 +10954,23 @@ "params": { "irq_num": 5 }, - "ts": 2.81161795 + "ts": 0.1098338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8116295 + "ts": 0.1098492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.81164325 + "ts": 0.109864425 }, { "core_id": 1, @@ -229877,23 +10980,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8117475 + "ts": 0.110666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.811756975 + "ts": 0.11067995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8117706 + "ts": 0.1106951 }, { "core_id": 0, @@ -229903,23 +11006,23 @@ "params": { "irq_num": 5 }, - "ts": 2.81261795 + "ts": 0.1108338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.812633975 + "ts": 0.110849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8126476 + "ts": 0.11086425 }, { "core_id": 1, @@ -229929,23 +11032,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8127475 + "ts": 0.111666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.812756975 + "ts": 0.111680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8127706 + "ts": 0.11169535 }, { "core_id": 0, @@ -229955,23 +11058,23 @@ "params": { "irq_num": 5 }, - "ts": 2.81361795 + "ts": 0.1118338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8136295 + "ts": 0.111849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.813643125 + "ts": 0.11186425 }, { "core_id": 1, @@ -229981,23 +11084,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8137475 + "ts": 0.112666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.813757 + "ts": 0.11268 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.813770775 + "ts": 0.112695125 }, { "core_id": 0, @@ -230007,23 +11110,23 @@ "params": { "irq_num": 5 }, - "ts": 2.81461795 + "ts": 0.1128338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8146295 + "ts": 0.112849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.814643125 + "ts": 0.11286425 }, { "core_id": 1, @@ -230033,23 +11136,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8147475 + "ts": 0.113666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.814756975 + "ts": 0.113680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8147706 + "ts": 0.113695225 }, { "core_id": 0, @@ -230059,23 +11162,23 @@ "params": { "irq_num": 5 }, - "ts": 2.81561795 + "ts": 0.1138338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8156295 + "ts": 0.1138492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.81564325 + "ts": 0.113864425 }, { "core_id": 1, @@ -230085,23 +11188,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8157475 + "ts": 0.114666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.815756975 + "ts": 0.11467995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8157706 + "ts": 0.1146951 }, { "core_id": 0, @@ -230111,23 +11214,23 @@ "params": { "irq_num": 5 }, - "ts": 2.81661795 + "ts": 0.1148338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.81662955 + "ts": 0.114849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.816643175 + "ts": 0.11486425 }, { "core_id": 1, @@ -230137,23 +11240,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8167475 + "ts": 0.115666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.816756975 + "ts": 0.115680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8167706 + "ts": 0.11569535 }, { "core_id": 0, @@ -230163,23 +11266,23 @@ "params": { "irq_num": 5 }, - "ts": 2.81761795 + "ts": 0.1158338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8176295 + "ts": 0.115849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.817643125 + "ts": 0.11586425 }, { "core_id": 1, @@ -230189,23 +11292,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8177475 + "ts": 0.116666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.817757 + "ts": 0.116684225 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.817770775 + "ts": 0.116699375 }, { "core_id": 0, @@ -230215,23 +11318,23 @@ "params": { "irq_num": 5 }, - "ts": 2.81861795 + "ts": 0.1168338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8186295 + "ts": 0.116849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.818643125 + "ts": 0.11686425 }, { "core_id": 1, @@ -230241,23 +11344,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8187475 + "ts": 0.117666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.818756975 + "ts": 0.117680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8187706 + "ts": 0.117695225 }, { "core_id": 0, @@ -230267,23 +11370,23 @@ "params": { "irq_num": 5 }, - "ts": 2.81961795 + "ts": 0.1178338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8196295 + "ts": 0.1178492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.81964325 + "ts": 0.117864425 }, { "core_id": 1, @@ -230293,23 +11396,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8197475 + "ts": 0.118666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.819756975 + "ts": 0.11867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8197706 + "ts": 0.1186951 }, { "core_id": 0, @@ -230319,23 +11422,23 @@ "params": { "irq_num": 5 }, - "ts": 2.82061795 + "ts": 0.1188338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.82062955 + "ts": 0.118849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.820643175 + "ts": 0.11886425 }, { "core_id": 1, @@ -230345,23 +11448,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8207475 + "ts": 0.119666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.820756975 + "ts": 0.119680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8207706 + "ts": 0.11969535 }, { "core_id": 0, @@ -230371,23 +11474,23 @@ "params": { "irq_num": 5 }, - "ts": 2.82161795 + "ts": 0.1198338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8216295 + "ts": 0.119849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.821643125 + "ts": 0.11986425 }, { "core_id": 1, @@ -230397,23 +11500,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8217475 + "ts": 0.120666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.821757 + "ts": 0.12068 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.821770775 + "ts": 0.120695125 }, { "core_id": 0, @@ -230423,23 +11526,23 @@ "params": { "irq_num": 5 }, - "ts": 2.82261795 + "ts": 0.1208338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8226295 + "ts": 0.120849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.822643125 + "ts": 0.12086425 }, { "core_id": 1, @@ -230449,23 +11552,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8227475 + "ts": 0.121666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.822756975 + "ts": 0.121680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8227706 + "ts": 0.121695225 }, { "core_id": 0, @@ -230475,7 +11578,7 @@ "params": { "irq_num": 5 }, - "ts": 2.82361795 + "ts": 0.1218338 }, { "core_id": 0, @@ -230483,17 +11586,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.823629375 + "ts": 0.121848825 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.823638825 + "ts": 0.121861575 }, { "core_id": 0, @@ -230501,19 +11604,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.823652975 + "ts": 0.12187725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb7b8", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 5, + "ts": 0.121912575 + }, + { + "addr": "0x3ffbb7c8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -230523,8 +11647,8 @@ "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 190, - "ts": 2.823677 + "size": 10, + "ts": 0.121947 }, { "core_id": 0, @@ -230534,10 +11658,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.8236921 + "ts": 0.121964025 }, { "core_id": 0, @@ -230547,20 +11671,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.8237061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8237475 + "ts": 0.121980025 }, { "core_id": 0, @@ -230568,8 +11682,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3150) example: Task[0x3ffb7f40]: allocated 190 bytes @ 0x3ffb4b10\n", - "ts": 2.823768375 + "msg": "I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8\n", + "ts": 0.12205045 }, { "core_id": 0, @@ -230577,16 +11691,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3150) example: Task[0x3ffb7f40]: allocated 190 bytes @ 0x3ffb4b10\n", - "ts": 2.823768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.823777525 + "msg": "I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8\n", + "ts": 0.12205045 }, { "core_id": 0, @@ -230596,18 +11702,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12288168, + "xQueue": 12287056, "xTicksToWait": 0 }, - "ts": 2.8237858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8237964 + "ts": 0.122068175 }, { "core_id": 0, @@ -230615,9 +11713,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.8238072 + "ts": 0.1220814 }, { "core_id": 1, @@ -230627,7 +11725,7 @@ "params": { "irq_num": 31 }, - "ts": 2.8238202 + "ts": 0.12209765 }, { "core_id": 0, @@ -230637,26 +11735,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.82382875 + "ts": 0.1221085 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.823836675 + "ts": 0.122119275 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12287808 + "irq_num": 30 }, - "ts": 2.823845225 + "ts": 0.1221331 }, { "core_id": 1, @@ -230664,19 +11761,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.82385785 + "ts": 0.122144 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.823866225 + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.122154825 }, { "core_id": 1, @@ -230684,20 +11779,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, "xTicksToWait": 4294967295 }, - "ts": 2.82387455 + "ts": 0.122166775 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc0", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.823883425 + "ts": 0.122177025 }, { "core_id": 1, @@ -230707,18 +11802,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.823892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8239021 + "ts": 0.12218845 }, { "core_id": 1, @@ -230728,10 +11815,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.823916925 + "ts": 0.1222048 }, { "core_id": 1, @@ -230739,8 +11826,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3150) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.823966175 + "msg": "I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8\n", + "ts": 0.12226835 }, { "core_id": 1, @@ -230748,15 +11835,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3150) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.823966175 + "msg": "I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8\n", + "ts": 0.12226835 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb7c8", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -230770,44 +11857,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.823984575 + "ts": 0.12228955 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12288292 + "irq_num": 31 }, - "ts": 2.824002575 + "ts": 0.122320575 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.122332175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.122348875 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.82401525 + "ts": 0.122666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.82402405 + "ts": 0.122679875 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 17, "in_irq": false, "params": {}, - "ts": 2.824039625 + "ts": 0.12269545 }, { "core_id": 0, @@ -230817,7 +11919,7 @@ "params": { "irq_num": 5 }, - "ts": 2.82461795 + "ts": 0.1228338 }, { "core_id": 0, @@ -230825,17 +11927,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.824629375 + "ts": 0.122848825 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8246388 + "ts": 0.122861575 }, { "core_id": 0, @@ -230843,19 +11945,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.824652975 + "ts": 0.12287725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb7c8", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 10, + "ts": 0.122912575 + }, + { + "addr": "0x3ffbb7d8", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -230865,8 +11988,8 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 380, - "ts": 2.824677 + "size": 20, + "ts": 0.122947 }, { "core_id": 0, @@ -230876,10 +11999,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.8246897 + "ts": 0.122964025 }, { "core_id": 0, @@ -230889,20 +12012,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.824703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8247475 + "ts": 0.122980025 }, { "core_id": 0, @@ -230910,8 +12023,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3151) example: Task[0x3ffb82a0]: allocated 380 bytes @ 0x3ffb4b10\n", - "ts": 2.824769475 + "msg": "I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8\n", + "ts": 0.12305045 }, { "core_id": 0, @@ -230919,16 +12032,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3151) example: Task[0x3ffb82a0]: allocated 380 bytes @ 0x3ffb4b10\n", - "ts": 2.824769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.82478125 + "msg": "I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8\n", + "ts": 0.12305045 }, { "core_id": 0, @@ -230938,18 +12043,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289032, + "xQueue": 12293072, "xTicksToWait": 0 }, - "ts": 2.82478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.824800125 + "ts": 0.123064 }, { "core_id": 0, @@ -230957,9 +12054,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.8248109 + "ts": 0.123081425 }, { "core_id": 1, @@ -230969,7 +12066,7 @@ "params": { "irq_num": 31 }, - "ts": 2.824823925 + "ts": 0.123097725 }, { "core_id": 0, @@ -230979,26 +12076,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.82483245 + "ts": 0.123108575 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.824840425 + "ts": 0.123119325 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12288672 + "irq_num": 30 }, - "ts": 2.824849 + "ts": 0.12313305 }, { "core_id": 1, @@ -231006,19 +12102,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.82486165 + "ts": 0.1231439 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.824870025 + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.123154725 }, { "core_id": 1, @@ -231026,20 +12120,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, "xTicksToWait": 4294967295 }, - "ts": 2.82487835 + "ts": 0.1231666 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc1", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.824887225 + "ts": 0.12317685 }, { "core_id": 1, @@ -231049,18 +12143,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.8248966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8249058 + "ts": 0.123188325 }, { "core_id": 1, @@ -231070,10 +12156,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.824920625 + "ts": 0.123204625 }, { "core_id": 1, @@ -231081,8 +12167,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3151) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.824969875 + "msg": "I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8\n", + "ts": 0.123268075 }, { "core_id": 1, @@ -231090,15 +12176,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3151) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.824969875 + "msg": "I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8\n", + "ts": 0.123268075 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb7d8", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -231112,44 +12198,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.824985475 + "ts": 0.12328925 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12289156 + "irq_num": 31 }, - "ts": 2.825005825 + "ts": 0.12331625 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.123327675 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12334425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.825018525 + "ts": 0.123666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.825027325 + "ts": 0.12367985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8250429 + "ts": 0.12369555 }, { "core_id": 0, @@ -231159,7 +12260,7 @@ "params": { "irq_num": 5 }, - "ts": 2.82561795 + "ts": 0.1238338 }, { "core_id": 0, @@ -231167,17 +12268,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.825629375 + "ts": 0.1238488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8256388 + "ts": 0.123861575 }, { "core_id": 0, @@ -231185,19 +12286,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.825652975 + "ts": 0.12387725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb7d8", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 15, + "ts": 0.12391265 + }, + { + "addr": "0x3ffbb7ec", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -231207,8 +12329,8 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 570, - "ts": 2.825676975 + "size": 30, + "ts": 0.123951325 }, { "core_id": 0, @@ -231218,10 +12340,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.825689675 + "ts": 0.123968225 }, { "core_id": 0, @@ -231231,20 +12353,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.825703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8257475 + "ts": 0.1239842 }, { "core_id": 0, @@ -231252,8 +12364,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3152) example: Task[0x3ffb8600]: allocated 570 bytes @ 0x3ffb4b10\n", - "ts": 2.82576945 + "msg": "I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec\n", + "ts": 0.12405455 }, { "core_id": 0, @@ -231261,16 +12373,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3152) example: Task[0x3ffb8600]: allocated 570 bytes @ 0x3ffb4b10\n", - "ts": 2.82576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8257782 + "msg": "I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec\n", + "ts": 0.12405455 }, { "core_id": 0, @@ -231280,18 +12384,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289896, + "xQueue": 12299072, "xTicksToWait": 0 }, - "ts": 2.8257867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.825797075 + "ts": 0.12406815 }, { "core_id": 0, @@ -231299,9 +12395,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.82580785 + "ts": 0.124081375 }, { "core_id": 1, @@ -231311,7 +12407,7 @@ "params": { "irq_num": 31 }, - "ts": 2.825820875 + "ts": 0.124097675 }, { "core_id": 0, @@ -231321,26 +12417,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.8258294 + "ts": 0.124108525 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.825837375 + "ts": 0.1241193 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12289536 + "irq_num": 30 }, - "ts": 2.82584595 + "ts": 0.124133175 }, { "core_id": 1, @@ -231348,19 +12443,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.8258586 + "ts": 0.12414405 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.825866975 + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.124154875 }, { "core_id": 1, @@ -231368,20 +12461,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, "xTicksToWait": 4294967295 }, - "ts": 2.8258792 + "ts": 0.12416675 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.825887225 + "ts": 0.124178025 }, { "core_id": 1, @@ -231391,18 +12484,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.825895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8259058 + "ts": 0.124189675 }, { "core_id": 1, @@ -231412,10 +12497,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.825920725 + "ts": 0.124209375 }, { "core_id": 1, @@ -231423,8 +12508,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3152) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.825970075 + "msg": "I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec\n", + "ts": 0.124272925 }, { "core_id": 1, @@ -231432,15 +12517,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3152) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.825970075 + "msg": "I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec\n", + "ts": 0.124272925 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb7ec", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -231454,44 +12539,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.82598545 + "ts": 0.124294125 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12274088 + "irq_num": 31 }, - "ts": 2.826003575 + "ts": 0.124321025 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.124332575 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12434915 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.8260164 + "ts": 0.124666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.826025175 + "ts": 0.12467985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.826040625 + "ts": 0.12469555 }, { "core_id": 0, @@ -231501,23 +12601,23 @@ "params": { "irq_num": 5 }, - "ts": 2.82661795 + "ts": 0.1248338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.82662955 + "ts": 0.124849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.826643175 + "ts": 0.12486425 }, { "core_id": 1, @@ -231527,23 +12627,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8267475 + "ts": 0.125666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.826756975 + "ts": 0.125680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8267706 + "ts": 0.12569535 }, { "core_id": 0, @@ -231553,23 +12653,23 @@ "params": { "irq_num": 5 }, - "ts": 2.82761795 + "ts": 0.1258338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8276295 + "ts": 0.125849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.827643125 + "ts": 0.12586425 }, { "core_id": 1, @@ -231579,23 +12679,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8277475 + "ts": 0.126666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.827757 + "ts": 0.12668 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.827770775 + "ts": 0.126695125 }, { "core_id": 0, @@ -231605,23 +12705,23 @@ "params": { "irq_num": 5 }, - "ts": 2.82861795 + "ts": 0.1268338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8286295 + "ts": 0.126849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.828643125 + "ts": 0.12686425 }, { "core_id": 1, @@ -231631,23 +12731,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8287475 + "ts": 0.127666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.828756975 + "ts": 0.127680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8287706 + "ts": 0.127695225 }, { "core_id": 0, @@ -231657,23 +12757,23 @@ "params": { "irq_num": 5 }, - "ts": 2.82961795 + "ts": 0.1278338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8296295 + "ts": 0.1278492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.82964325 + "ts": 0.127864425 }, { "core_id": 1, @@ -231683,23 +12783,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8297475 + "ts": 0.128666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.829756975 + "ts": 0.12867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8297706 + "ts": 0.1286951 }, { "core_id": 0, @@ -231709,23 +12809,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83061795 + "ts": 0.1288338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.830631925 + "ts": 0.128849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.83064555 + "ts": 0.12886425 }, { "core_id": 1, @@ -231735,23 +12835,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8307475 + "ts": 0.129666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.830756975 + "ts": 0.129680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8307706 + "ts": 0.12969535 }, { "core_id": 0, @@ -231761,23 +12861,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83161795 + "ts": 0.1298338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8316295 + "ts": 0.129849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.831643125 + "ts": 0.129868575 }, { "core_id": 1, @@ -231787,23 +12887,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8317475 + "ts": 0.130666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.831757 + "ts": 0.13067995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.831770775 + "ts": 0.1306951 }, { "core_id": 0, @@ -231813,23 +12913,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83261795 + "ts": 0.1308338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8326295 + "ts": 0.130849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.832643125 + "ts": 0.13086425 }, { "core_id": 1, @@ -231839,23 +12939,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8327475 + "ts": 0.131666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.832756975 + "ts": 0.131680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8327706 + "ts": 0.13169535 }, { "core_id": 0, @@ -231865,23 +12965,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83361795 + "ts": 0.1318338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8336295 + "ts": 0.131849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.83364325 + "ts": 0.13186425 }, { "core_id": 1, @@ -231891,23 +12991,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8337475 + "ts": 0.132666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.833756975 + "ts": 0.13268 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8337706 + "ts": 0.132695125 }, { "core_id": 0, @@ -231917,23 +13017,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83461795 + "ts": 0.1328338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.83462955 + "ts": 0.132849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.834643175 + "ts": 0.13286425 }, { "core_id": 1, @@ -231943,23 +13043,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8347475 + "ts": 0.133666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.834756975 + "ts": 0.133680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8347706 + "ts": 0.133695225 }, { "core_id": 0, @@ -231969,23 +13069,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83561795 + "ts": 0.1338338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8356295 + "ts": 0.1338492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.835643125 + "ts": 0.133864425 }, { "core_id": 1, @@ -231995,23 +13095,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8357475 + "ts": 0.134666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.835757 + "ts": 0.13467995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.835770775 + "ts": 0.1346951 }, { "core_id": 0, @@ -232021,23 +13121,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83661795 + "ts": 0.1348338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8366295 + "ts": 0.134849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.836643125 + "ts": 0.13486425 }, { "core_id": 1, @@ -232047,23 +13147,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8367475 + "ts": 0.135666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.836756975 + "ts": 0.135680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8367706 + "ts": 0.13569535 }, { "core_id": 0, @@ -232073,23 +13173,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83761795 + "ts": 0.1358338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8376295 + "ts": 0.135849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.83764325 + "ts": 0.13586425 }, { "core_id": 1, @@ -232099,23 +13199,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8377475 + "ts": 0.136666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.837756975 + "ts": 0.13668 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8377706 + "ts": 0.136695125 }, { "core_id": 0, @@ -232125,23 +13225,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83861795 + "ts": 0.1368338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.83862955 + "ts": 0.136849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.838643175 + "ts": 0.13686425 }, { "core_id": 1, @@ -232151,23 +13251,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8387475 + "ts": 0.137666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.838756975 + "ts": 0.137680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8387706 + "ts": 0.137695225 }, { "core_id": 0, @@ -232177,23 +13277,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83961795 + "ts": 0.1378338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8396295 + "ts": 0.1378492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.839643125 + "ts": 0.137864425 }, { "core_id": 1, @@ -232203,23 +13303,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8397475 + "ts": 0.138666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.839757 + "ts": 0.13867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.839770775 + "ts": 0.1386951 }, { "core_id": 0, @@ -232229,23 +13329,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84061795 + "ts": 0.1388338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8406295 + "ts": 0.138849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.840643125 + "ts": 0.13886425 }, { "core_id": 1, @@ -232255,23 +13355,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8407475 + "ts": 0.139666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.840756975 + "ts": 0.139680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8407706 + "ts": 0.13969535 }, { "core_id": 0, @@ -232281,23 +13381,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84161795 + "ts": 0.1398338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8416295 + "ts": 0.139849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.84164325 + "ts": 0.13986425 }, { "core_id": 1, @@ -232307,23 +13407,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8417475 + "ts": 0.140666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.841756975 + "ts": 0.14068 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8417706 + "ts": 0.140695125 }, { "core_id": 0, @@ -232333,23 +13433,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84261795 + "ts": 0.1408338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8426326 + "ts": 0.140849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.842646225 + "ts": 0.14086425 }, { "core_id": 1, @@ -232359,23 +13459,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8427475 + "ts": 0.141666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.842756975 + "ts": 0.141680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8427706 + "ts": 0.141695225 }, { "core_id": 0, @@ -232385,23 +13485,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84361795 + "ts": 0.1418338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8436295 + "ts": 0.1418492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.843643125 + "ts": 0.141864425 }, { "core_id": 1, @@ -232411,23 +13511,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8437475 + "ts": 0.142666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.843757 + "ts": 0.142680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.843770775 + "ts": 0.14269535 }, { "core_id": 0, @@ -232437,23 +13537,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84461795 + "ts": 0.1428338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8446295 + "ts": 0.142849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.844643125 + "ts": 0.14286425 }, { "core_id": 1, @@ -232463,23 +13563,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8447475 + "ts": 0.143666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.844756975 + "ts": 0.14368 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8447706 + "ts": 0.143695125 }, { "core_id": 0, @@ -232489,23 +13589,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84561795 + "ts": 0.1438338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8456295 + "ts": 0.143849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.84564325 + "ts": 0.14386425 }, { "core_id": 1, @@ -232515,23 +13615,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8457475 + "ts": 0.144666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.845756975 + "ts": 0.144680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8457706 + "ts": 0.144695225 }, { "core_id": 0, @@ -232541,23 +13641,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84661795 + "ts": 0.1448338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.84662955 + "ts": 0.1448492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.846643175 + "ts": 0.144864425 }, { "core_id": 1, @@ -232567,23 +13667,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8467475 + "ts": 0.145666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.846756975 + "ts": 0.14567995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8467706 + "ts": 0.1456951 }, { "core_id": 0, @@ -232593,23 +13693,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84761795 + "ts": 0.1458338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8476295 + "ts": 0.145849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.847643125 + "ts": 0.14586425 }, { "core_id": 1, @@ -232619,23 +13719,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8477475 + "ts": 0.146666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.847757 + "ts": 0.146680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.847770775 + "ts": 0.14669535 }, { "core_id": 0, @@ -232645,23 +13745,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84861795 + "ts": 0.1468338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8486295 + "ts": 0.146849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.848643125 + "ts": 0.14686425 }, { "core_id": 1, @@ -232671,23 +13771,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8487475 + "ts": 0.147666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.848756975 + "ts": 0.14768 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8487706 + "ts": 0.147695125 }, { "core_id": 0, @@ -232697,23 +13797,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84961795 + "ts": 0.1478338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8496295 + "ts": 0.147849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.84964325 + "ts": 0.14786425 }, { "core_id": 1, @@ -232723,23 +13823,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8497475 + "ts": 0.148666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.849756975 + "ts": 0.148680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8497706 + "ts": 0.148695225 }, { "core_id": 0, @@ -232749,23 +13849,23 @@ "params": { "irq_num": 5 }, - "ts": 2.85061795 + "ts": 0.1488338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.85062955 + "ts": 0.1488492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.850643175 + "ts": 0.148864425 }, { "core_id": 1, @@ -232775,23 +13875,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8507475 + "ts": 0.149666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.850756975 + "ts": 0.14967995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8507706 + "ts": 0.1496951 }, { "core_id": 0, @@ -232801,23 +13901,23 @@ "params": { "irq_num": 5 }, - "ts": 2.85161795 + "ts": 0.1498338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8516295 + "ts": 0.149849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.851643125 + "ts": 0.14986425 }, { "core_id": 1, @@ -232827,23 +13927,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8517475 + "ts": 0.150666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.851757 + "ts": 0.150680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.851770775 + "ts": 0.15069535 }, { "core_id": 0, @@ -232853,23 +13953,23 @@ "params": { "irq_num": 5 }, - "ts": 2.85261795 + "ts": 0.1508338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8526295 + "ts": 0.150849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.852643125 + "ts": 0.15086425 }, { "core_id": 1, @@ -232879,23 +13979,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8527475 + "ts": 0.151666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.852756975 + "ts": 0.15168 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8527706 + "ts": 0.151695125 }, { "core_id": 0, @@ -232905,7 +14005,7 @@ "params": { "irq_num": 5 }, - "ts": 2.85361795 + "ts": 0.1518338 }, { "core_id": 0, @@ -232913,17 +14013,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.853629375 + "ts": 0.1518488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.853638825 + "ts": 0.151861575 }, { "core_id": 0, @@ -232931,18 +14031,39 @@ "id": 4, "in_irq": false, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.853652975 + "ts": 0.15187725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb7ec", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 6, + "ts": 0.15191265 + }, + { + "addr": "0x3ffbb7fc", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", "0x0", "0x0", "0x0", @@ -232953,8 +14074,8 @@ "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 192, - "ts": 2.853677 + "size": 12, + "ts": 0.15195125 }, { "core_id": 0, @@ -232964,10 +14085,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.8536921 + "ts": 0.15196815 }, { "core_id": 0, @@ -232977,20 +14098,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.8537061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8537475 + "ts": 0.15198415 }, { "core_id": 0, @@ -232998,8 +14109,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3180) example: Task[0x3ffb7f40]: allocated 192 bytes @ 0x3ffb4b10\n", - "ts": 2.853768375 + "msg": "I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc\n", + "ts": 0.152054475 }, { "core_id": 0, @@ -233007,16 +14118,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3180) example: Task[0x3ffb7f40]: allocated 192 bytes @ 0x3ffb4b10\n", - "ts": 2.853768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.853777525 + "msg": "I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc\n", + "ts": 0.152054475 }, { "core_id": 0, @@ -233026,18 +14129,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12288168, + "xQueue": 12287056, "xTicksToWait": 0 }, - "ts": 2.8537858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8537964 + "ts": 0.152068075 }, { "core_id": 0, @@ -233045,9 +14140,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.8538072 + "ts": 0.1520813 }, { "core_id": 1, @@ -233057,7 +14152,7 @@ "params": { "irq_num": 31 }, - "ts": 2.8538202 + "ts": 0.152097675 }, { "core_id": 0, @@ -233067,26 +14162,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.85382875 + "ts": 0.152108525 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.853836675 + "ts": 0.1521193 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12287808 + "irq_num": 30 }, - "ts": 2.853845225 + "ts": 0.152133125 }, { "core_id": 1, @@ -233094,19 +14188,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.85385785 + "ts": 0.152144025 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.853866225 + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15215485 }, { "core_id": 1, @@ -233114,20 +14206,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, "xTicksToWait": 4294967295 }, - "ts": 2.85387455 + "ts": 0.1521668 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc0", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.853883425 + "ts": 0.15217705 }, { "core_id": 1, @@ -233137,18 +14229,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.853892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8539021 + "ts": 0.152188475 }, { "core_id": 1, @@ -233158,10 +14242,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.853916925 + "ts": 0.15220885 }, { "core_id": 1, @@ -233169,8 +14253,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3180) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.853966175 + "msg": "I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc\n", + "ts": 0.1522724 }, { "core_id": 1, @@ -233178,15 +14262,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3180) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.853966175 + "msg": "I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc\n", + "ts": 0.1522724 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb7fc", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -233200,44 +14284,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.853984575 + "ts": 0.1522936 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12288292 + "irq_num": 31 }, - "ts": 2.854002575 + "ts": 0.152320475 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1523319 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.152348475 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.85401525 + "ts": 0.152666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.85402405 + "ts": 0.15267985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 17, "in_irq": false, "params": {}, - "ts": 2.854039625 + "ts": 0.15269555 }, { "core_id": 0, @@ -233247,7 +14346,7 @@ "params": { "irq_num": 5 }, - "ts": 2.85461795 + "ts": 0.1528338 }, { "core_id": 0, @@ -233255,17 +14354,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.854629375 + "ts": 0.1528488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8546388 + "ts": 0.152861575 }, { "core_id": 0, @@ -233273,18 +14372,39 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.854652975 + "ts": 0.152877375 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb7fc", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 12, + "ts": 0.152912775 + }, + { + "addr": "0x3ffbb80c", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", "0x0", "0x0", "0x0", @@ -233295,8 +14415,8 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 384, - "ts": 2.854677 + "size": 24, + "ts": 0.1529473 }, { "core_id": 0, @@ -233306,10 +14426,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.8546897 + "ts": 0.15296425 }, { "core_id": 0, @@ -233319,20 +14439,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.854703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8547475 + "ts": 0.152984425 }, { "core_id": 0, @@ -233340,8 +14450,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3181) example: Task[0x3ffb82a0]: allocated 384 bytes @ 0x3ffb4b10\n", - "ts": 2.854769475 + "msg": "I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c\n", + "ts": 0.15305485 }, { "core_id": 0, @@ -233349,16 +14459,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3181) example: Task[0x3ffb82a0]: allocated 384 bytes @ 0x3ffb4b10\n", - "ts": 2.854769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.85478125 + "msg": "I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c\n", + "ts": 0.15305485 }, { "core_id": 0, @@ -233368,18 +14470,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289032, + "xQueue": 12293072, "xTicksToWait": 0 }, - "ts": 2.85478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.854800125 + "ts": 0.1530685 }, { "core_id": 0, @@ -233387,9 +14481,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.8548109 + "ts": 0.153081675 }, { "core_id": 1, @@ -233399,7 +14493,7 @@ "params": { "irq_num": 31 }, - "ts": 2.854823925 + "ts": 0.153097875 }, { "core_id": 0, @@ -233409,26 +14503,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.85483245 + "ts": 0.153108925 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.854840425 + "ts": 0.153119675 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12288672 + "irq_num": 30 }, - "ts": 2.854849 + "ts": 0.1531334 }, { "core_id": 1, @@ -233436,19 +14529,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.85486165 + "ts": 0.15314435 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.854870025 + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15315515 }, { "core_id": 1, @@ -233456,20 +14547,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, "xTicksToWait": 4294967295 }, - "ts": 2.85487835 + "ts": 0.153167 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc1", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.854887225 + "ts": 0.153177275 }, { "core_id": 1, @@ -233479,18 +14570,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.8548966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8549058 + "ts": 0.15318875 }, { "core_id": 1, @@ -233500,10 +14583,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.854920625 + "ts": 0.15320505 }, { "core_id": 1, @@ -233511,8 +14594,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3181) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.854969875 + "msg": "I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c\n", + "ts": 0.1532685 }, { "core_id": 1, @@ -233520,15 +14603,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3181) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.854969875 + "msg": "I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c\n", + "ts": 0.1532685 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb80c", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -233542,44 +14625,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.854985475 + "ts": 0.153293525 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12289156 + "irq_num": 31 }, - "ts": 2.855005825 + "ts": 0.153320525 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15333195 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.153348525 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.855018525 + "ts": 0.153666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.855027325 + "ts": 0.15367985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8550429 + "ts": 0.15369555 }, { "core_id": 0, @@ -233589,7 +14687,7 @@ "params": { "irq_num": 5 }, - "ts": 2.85561795 + "ts": 0.1538338 }, { "core_id": 0, @@ -233597,17 +14695,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.855629375 + "ts": 0.1538488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8556388 + "ts": 0.153861575 }, { "core_id": 0, @@ -233615,19 +14713,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.855652975 + "ts": 0.15387725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb80c", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 18, + "ts": 0.15391265 + }, + { + "addr": "0x3ffbb824", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -233637,8 +14756,8 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 576, - "ts": 2.855676975 + "size": 36, + "ts": 0.1539472 }, { "core_id": 0, @@ -233648,10 +14767,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.855689675 + "ts": 0.15396435 }, { "core_id": 0, @@ -233661,20 +14780,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.855703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8557475 + "ts": 0.15398035 }, { "core_id": 0, @@ -233682,8 +14791,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3182) example: Task[0x3ffb8600]: allocated 576 bytes @ 0x3ffb4b10\n", - "ts": 2.85576945 + "msg": "I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824\n", + "ts": 0.154050675 }, { "core_id": 0, @@ -233691,16 +14800,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3182) example: Task[0x3ffb8600]: allocated 576 bytes @ 0x3ffb4b10\n", - "ts": 2.85576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8557782 + "msg": "I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824\n", + "ts": 0.154050675 }, { "core_id": 0, @@ -233710,18 +14811,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289896, + "xQueue": 12299072, "xTicksToWait": 0 }, - "ts": 2.8557867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.855797075 + "ts": 0.1540685 }, { "core_id": 0, @@ -233729,9 +14822,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.85580785 + "ts": 0.15408185 }, { "core_id": 1, @@ -233741,7 +14834,7 @@ "params": { "irq_num": 31 }, - "ts": 2.855820875 + "ts": 0.154098175 }, { "core_id": 0, @@ -233751,26 +14844,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.8558294 + "ts": 0.154109025 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.855837375 + "ts": 0.154119775 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12289536 + "irq_num": 30 }, - "ts": 2.85584595 + "ts": 0.1541335 }, { "core_id": 1, @@ -233778,19 +14870,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.8558586 + "ts": 0.1541444 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.855866975 + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.154155225 }, { "core_id": 1, @@ -233798,20 +14888,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, "xTicksToWait": 4294967295 }, - "ts": 2.8558792 + "ts": 0.154167075 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.855887225 + "ts": 0.154178375 }, { "core_id": 1, @@ -233821,18 +14911,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.855895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8559058 + "ts": 0.15419 }, { "core_id": 1, @@ -233842,10 +14924,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.855920725 + "ts": 0.1542064 }, { "core_id": 1, @@ -233853,8 +14935,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3182) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.855970075 + "msg": "I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824\n", + "ts": 0.15426995 }, { "core_id": 1, @@ -233862,15 +14944,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3182) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.855970075 + "msg": "I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824\n", + "ts": 0.15426995 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb824", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -233884,44 +14966,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.85598545 + "ts": 0.15429115 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12274088 + "irq_num": 31 }, - "ts": 2.856003575 + "ts": 0.15432215 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.154333625 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.154350325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.8560164 + "ts": 0.154666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.856025175 + "ts": 0.154679875 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.856040625 + "ts": 0.15469545 }, { "core_id": 0, @@ -233931,23 +15028,23 @@ "params": { "irq_num": 5 }, - "ts": 2.85661795 + "ts": 0.1548338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.85662955 + "ts": 0.1548492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.856643175 + "ts": 0.154864425 }, { "core_id": 1, @@ -233957,23 +15054,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8567475 + "ts": 0.155666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.856756975 + "ts": 0.15567995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8567706 + "ts": 0.1556951 }, { "core_id": 0, @@ -233983,23 +15080,23 @@ "params": { "irq_num": 5 }, - "ts": 2.85761795 + "ts": 0.1558338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8576295 + "ts": 0.155849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.857643125 + "ts": 0.15586425 }, { "core_id": 1, @@ -234009,23 +15106,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8577475 + "ts": 0.156666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.857757 + "ts": 0.156680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.857770775 + "ts": 0.15669535 }, { "core_id": 0, @@ -234035,23 +15132,23 @@ "params": { "irq_num": 5 }, - "ts": 2.85861795 + "ts": 0.1568338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8586295 + "ts": 0.156849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.858643125 + "ts": 0.15686425 }, { "core_id": 1, @@ -234061,23 +15158,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8587475 + "ts": 0.157666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.858756975 + "ts": 0.15768 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8587706 + "ts": 0.157695125 }, { "core_id": 0, @@ -234087,23 +15184,23 @@ "params": { "irq_num": 5 }, - "ts": 2.85961795 + "ts": 0.1578338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8596295 + "ts": 0.157849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.85964325 + "ts": 0.15786425 }, { "core_id": 1, @@ -234113,23 +15210,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8597475 + "ts": 0.158666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.859756975 + "ts": 0.158680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8597706 + "ts": 0.158695225 }, { "core_id": 0, @@ -234139,23 +15236,23 @@ "params": { "irq_num": 5 }, - "ts": 2.86061795 + "ts": 0.1588338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.860631925 + "ts": 0.1588492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.86064555 + "ts": 0.158864425 }, { "core_id": 1, @@ -234165,23 +15262,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8607475 + "ts": 0.159666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.860756975 + "ts": 0.15967995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8607706 + "ts": 0.1596951 }, { "core_id": 0, @@ -234191,23 +15288,23 @@ "params": { "irq_num": 5 }, - "ts": 2.86161795 + "ts": 0.1598338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8616295 + "ts": 0.159849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.861643125 + "ts": 0.15986425 }, { "core_id": 1, @@ -234217,23 +15314,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8617475 + "ts": 0.160666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.861757 + "ts": 0.160680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.861770775 + "ts": 0.16069535 }, { "core_id": 0, @@ -234243,23 +15340,23 @@ "params": { "irq_num": 5 }, - "ts": 2.86261795 + "ts": 0.1608338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8626295 + "ts": 0.160849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.862643125 + "ts": 0.16086425 }, { "core_id": 1, @@ -234269,23 +15366,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8627475 + "ts": 0.161666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.862756975 + "ts": 0.16168 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8627706 + "ts": 0.161695125 }, { "core_id": 0, @@ -234295,23 +15392,23 @@ "params": { "irq_num": 5 }, - "ts": 2.86361795 + "ts": 0.1618338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8636295 + "ts": 0.161849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.86364325 + "ts": 0.16186425 }, { "core_id": 1, @@ -234321,23 +15418,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8637475 + "ts": 0.162666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.863756975 + "ts": 0.162680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8637706 + "ts": 0.162695225 }, { "core_id": 0, @@ -234347,23 +15444,23 @@ "params": { "irq_num": 5 }, - "ts": 2.86461795 + "ts": 0.1628338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.86462955 + "ts": 0.1628492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.864643175 + "ts": 0.162864425 }, { "core_id": 1, @@ -234373,23 +15470,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8647475 + "ts": 0.163666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.864756975 + "ts": 0.16367995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8647706 + "ts": 0.1636951 }, { "core_id": 0, @@ -234399,23 +15496,23 @@ "params": { "irq_num": 5 }, - "ts": 2.86561795 + "ts": 0.1638338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8656295 + "ts": 0.163849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.865643125 + "ts": 0.16386425 }, { "core_id": 1, @@ -234425,23 +15522,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8657475 + "ts": 0.164666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.865757 + "ts": 0.164683575 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.865770775 + "ts": 0.164698725 }, { "core_id": 0, @@ -234451,23 +15548,23 @@ "params": { "irq_num": 5 }, - "ts": 2.86661795 + "ts": 0.1648338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8666295 + "ts": 0.164849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.866643125 + "ts": 0.16486425 }, { "core_id": 1, @@ -234477,23 +15574,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8667475 + "ts": 0.165666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.866756975 + "ts": 0.165680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8667706 + "ts": 0.165695225 }, { "core_id": 0, @@ -234503,23 +15600,23 @@ "params": { "irq_num": 5 }, - "ts": 2.86761795 + "ts": 0.1658338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8676295 + "ts": 0.1658492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.86764325 + "ts": 0.165864425 }, { "core_id": 1, @@ -234529,23 +15626,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8677475 + "ts": 0.166666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.867756975 + "ts": 0.16667995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8677706 + "ts": 0.1666951 }, { "core_id": 0, @@ -234555,23 +15652,23 @@ "params": { "irq_num": 5 }, - "ts": 2.86861795 + "ts": 0.1668338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.86862955 + "ts": 0.166849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.868643175 + "ts": 0.16686425 }, { "core_id": 1, @@ -234581,23 +15678,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8687475 + "ts": 0.167666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.868756975 + "ts": 0.167680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8687706 + "ts": 0.16769535 }, { "core_id": 0, @@ -234607,23 +15704,23 @@ "params": { "irq_num": 5 }, - "ts": 2.86961795 + "ts": 0.1678338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8696295 + "ts": 0.167849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.869643125 + "ts": 0.16786425 }, { "core_id": 1, @@ -234633,23 +15730,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8697475 + "ts": 0.168666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.869757 + "ts": 0.16868 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.869770775 + "ts": 0.168695125 }, { "core_id": 0, @@ -234659,23 +15756,23 @@ "params": { "irq_num": 5 }, - "ts": 2.87061795 + "ts": 0.1688338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8706295 + "ts": 0.168849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.870643125 + "ts": 0.16886425 }, { "core_id": 1, @@ -234685,23 +15782,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8707475 + "ts": 0.169666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.870756975 + "ts": 0.169680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8707706 + "ts": 0.169695225 }, { "core_id": 0, @@ -234711,23 +15808,23 @@ "params": { "irq_num": 5 }, - "ts": 2.87161795 + "ts": 0.1698338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8716295 + "ts": 0.1698492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.87164325 + "ts": 0.169864425 }, { "core_id": 1, @@ -234737,23 +15834,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8717475 + "ts": 0.170666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.871756975 + "ts": 0.17067995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8717706 + "ts": 0.1706951 }, { "core_id": 0, @@ -234763,23 +15860,23 @@ "params": { "irq_num": 5 }, - "ts": 2.87261795 + "ts": 0.1708338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8726326 + "ts": 0.170849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.872646225 + "ts": 0.17086425 }, { "core_id": 1, @@ -234789,23 +15886,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8727475 + "ts": 0.171666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.872756975 + "ts": 0.171680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8727706 + "ts": 0.17169535 }, { "core_id": 0, @@ -234815,23 +15912,23 @@ "params": { "irq_num": 5 }, - "ts": 2.87361795 + "ts": 0.1718338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8736295 + "ts": 0.171849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.873643125 + "ts": 0.17186425 }, { "core_id": 1, @@ -234841,23 +15938,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8737475 + "ts": 0.172666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.873757 + "ts": 0.17268 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.873770775 + "ts": 0.172695125 }, { "core_id": 0, @@ -234867,23 +15964,23 @@ "params": { "irq_num": 5 }, - "ts": 2.87461795 + "ts": 0.1728338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8746295 + "ts": 0.172849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.874643125 + "ts": 0.17286425 }, { "core_id": 1, @@ -234893,23 +15990,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8747475 + "ts": 0.173666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.874756975 + "ts": 0.173680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8747706 + "ts": 0.173695225 }, { "core_id": 0, @@ -234919,23 +16016,23 @@ "params": { "irq_num": 5 }, - "ts": 2.87561795 + "ts": 0.1738338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8756295 + "ts": 0.1738492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.87564325 + "ts": 0.173864425 }, { "core_id": 1, @@ -234945,23 +16042,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8757475 + "ts": 0.174666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.875756975 + "ts": 0.17467995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8757706 + "ts": 0.1746951 }, { "core_id": 0, @@ -234971,23 +16068,23 @@ "params": { "irq_num": 5 }, - "ts": 2.87661795 + "ts": 0.1748338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.87662955 + "ts": 0.174849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.876643175 + "ts": 0.17486425 }, { "core_id": 1, @@ -234997,23 +16094,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8767475 + "ts": 0.175666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.876756975 + "ts": 0.175680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8767706 + "ts": 0.17569535 }, { "core_id": 0, @@ -235023,23 +16120,23 @@ "params": { "irq_num": 5 }, - "ts": 2.87761795 + "ts": 0.1758338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8776295 + "ts": 0.175849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.877643125 + "ts": 0.17586425 }, { "core_id": 1, @@ -235049,23 +16146,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8777475 + "ts": 0.176666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.877757 + "ts": 0.176684225 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.877770775 + "ts": 0.176699375 }, { "core_id": 0, @@ -235075,23 +16172,23 @@ "params": { "irq_num": 5 }, - "ts": 2.87861795 + "ts": 0.1768338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8786295 + "ts": 0.176849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.878643125 + "ts": 0.17686425 }, { "core_id": 1, @@ -235101,23 +16198,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8787475 + "ts": 0.177666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.878756975 + "ts": 0.177680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8787706 + "ts": 0.177695225 }, { "core_id": 0, @@ -235127,23 +16224,23 @@ "params": { "irq_num": 5 }, - "ts": 2.87961795 + "ts": 0.1778338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8796295 + "ts": 0.1778492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.87964325 + "ts": 0.177864425 }, { "core_id": 1, @@ -235153,23 +16250,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8797475 + "ts": 0.178666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.879756975 + "ts": 0.17867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8797706 + "ts": 0.1786951 }, { "core_id": 0, @@ -235179,23 +16276,23 @@ "params": { "irq_num": 5 }, - "ts": 2.88061795 + "ts": 0.1788338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.88062955 + "ts": 0.178849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.880643175 + "ts": 0.17886425 }, { "core_id": 1, @@ -235205,23 +16302,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8807475 + "ts": 0.179666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.880756975 + "ts": 0.179680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8807706 + "ts": 0.17969535 }, { "core_id": 0, @@ -235231,23 +16328,23 @@ "params": { "irq_num": 5 }, - "ts": 2.88161795 + "ts": 0.1798338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8816295 + "ts": 0.179849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.881643125 + "ts": 0.17986425 }, { "core_id": 1, @@ -235257,23 +16354,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8817475 + "ts": 0.180666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.881757 + "ts": 0.18068 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.881770775 + "ts": 0.180695125 }, { "core_id": 0, @@ -235283,23 +16380,23 @@ "params": { "irq_num": 5 }, - "ts": 2.88261795 + "ts": 0.1808338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8826295 + "ts": 0.180849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.882643125 + "ts": 0.18086425 }, { "core_id": 1, @@ -235309,23 +16406,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8827475 + "ts": 0.181666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.882756975 + "ts": 0.181680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8827706 + "ts": 0.181695225 }, { "core_id": 0, @@ -235335,7 +16432,7 @@ "params": { "irq_num": 5 }, - "ts": 2.88361795 + "ts": 0.1818338 }, { "core_id": 0, @@ -235343,17 +16440,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.883629375 + "ts": 0.181848825 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.883638825 + "ts": 0.181861575 }, { "core_id": 0, @@ -235361,19 +16458,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.883652975 + "ts": 0.18187725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb824", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 7, + "ts": 0.181912575 + }, + { + "addr": "0x3ffbb834", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -235383,8 +16501,8 @@ "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 194, - "ts": 2.883677 + "size": 14, + "ts": 0.181947 }, { "core_id": 0, @@ -235394,10 +16512,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.8836921 + "ts": 0.181964025 }, { "core_id": 0, @@ -235407,20 +16525,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.8837061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8837475 + "ts": 0.181980025 }, { "core_id": 0, @@ -235428,8 +16536,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3210) example: Task[0x3ffb7f40]: allocated 194 bytes @ 0x3ffb4b10\n", - "ts": 2.883768375 + "msg": "I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834\n", + "ts": 0.18205045 }, { "core_id": 0, @@ -235437,16 +16545,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3210) example: Task[0x3ffb7f40]: allocated 194 bytes @ 0x3ffb4b10\n", - "ts": 2.883768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.883777525 + "msg": "I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834\n", + "ts": 0.18205045 }, { "core_id": 0, @@ -235456,18 +16556,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12288168, + "xQueue": 12287056, "xTicksToWait": 0 }, - "ts": 2.8837858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8837964 + "ts": 0.1820682 }, { "core_id": 0, @@ -235475,9 +16567,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.8838072 + "ts": 0.182081425 }, { "core_id": 1, @@ -235487,7 +16579,7 @@ "params": { "irq_num": 31 }, - "ts": 2.8838202 + "ts": 0.18209765 }, { "core_id": 0, @@ -235497,26 +16589,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.88382875 + "ts": 0.182108525 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.883836675 + "ts": 0.182119275 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12287808 + "irq_num": 30 }, - "ts": 2.883845225 + "ts": 0.182133125 }, { "core_id": 1, @@ -235524,19 +16615,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.88385785 + "ts": 0.182144 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.883866225 + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.182154825 }, { "core_id": 1, @@ -235544,20 +16633,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, "xTicksToWait": 4294967295 }, - "ts": 2.88387455 + "ts": 0.1821668 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc0", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.883883425 + "ts": 0.18217705 }, { "core_id": 1, @@ -235567,18 +16656,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.883892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8839021 + "ts": 0.18218845 }, { "core_id": 1, @@ -235588,10 +16669,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.883916925 + "ts": 0.182204825 }, { "core_id": 1, @@ -235599,8 +16680,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3210) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.883966175 + "msg": "I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834\n", + "ts": 0.182268375 }, { "core_id": 1, @@ -235608,15 +16689,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3210) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.883966175 + "msg": "I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834\n", + "ts": 0.182268375 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb834", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -235630,44 +16711,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.883984575 + "ts": 0.182289575 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12288292 + "irq_num": 31 }, - "ts": 2.884002575 + "ts": 0.182320575 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.18233205 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.18234875 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.88401525 + "ts": 0.182666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.88402405 + "ts": 0.182679875 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 17, "in_irq": false, "params": {}, - "ts": 2.884039625 + "ts": 0.18269545 }, { "core_id": 0, @@ -235677,7 +16773,7 @@ "params": { "irq_num": 5 }, - "ts": 2.88461795 + "ts": 0.1828338 }, { "core_id": 0, @@ -235685,17 +16781,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.884629375 + "ts": 0.182848825 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8846388 + "ts": 0.182861575 }, { "core_id": 0, @@ -235703,19 +16799,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.884652975 + "ts": 0.18287725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb834", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 14, + "ts": 0.182912575 + }, + { + "addr": "0x3ffbb848", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -235725,8 +16842,8 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 388, - "ts": 2.884677 + "size": 28, + "ts": 0.182947 }, { "core_id": 0, @@ -235736,10 +16853,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.8846897 + "ts": 0.182964025 }, { "core_id": 0, @@ -235749,20 +16866,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.884703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8847475 + "ts": 0.182980025 }, { "core_id": 0, @@ -235770,8 +16877,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3211) example: Task[0x3ffb82a0]: allocated 388 bytes @ 0x3ffb4b10\n", - "ts": 2.884769475 + "msg": "I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848\n", + "ts": 0.18305045 }, { "core_id": 0, @@ -235779,16 +16886,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3211) example: Task[0x3ffb82a0]: allocated 388 bytes @ 0x3ffb4b10\n", - "ts": 2.884769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.88478125 + "msg": "I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848\n", + "ts": 0.18305045 }, { "core_id": 0, @@ -235798,18 +16897,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289032, + "xQueue": 12293072, "xTicksToWait": 0 }, - "ts": 2.88478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.884800125 + "ts": 0.183064 }, { "core_id": 0, @@ -235817,9 +16908,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.8848109 + "ts": 0.183081425 }, { "core_id": 1, @@ -235829,7 +16920,7 @@ "params": { "irq_num": 31 }, - "ts": 2.884823925 + "ts": 0.183097725 }, { "core_id": 0, @@ -235839,26 +16930,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.88483245 + "ts": 0.183108575 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.884840425 + "ts": 0.183119325 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12288672 + "irq_num": 30 }, - "ts": 2.884849 + "ts": 0.18313305 }, { "core_id": 1, @@ -235866,19 +16956,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.88486165 + "ts": 0.1831439 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.884870025 + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.183154725 }, { "core_id": 1, @@ -235886,20 +16974,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, "xTicksToWait": 4294967295 }, - "ts": 2.88487835 + "ts": 0.1831666 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc1", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.884887225 + "ts": 0.18317685 }, { "core_id": 1, @@ -235909,18 +16997,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.8848966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8849058 + "ts": 0.183188325 }, { "core_id": 1, @@ -235930,10 +17010,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.884920625 + "ts": 0.183204625 }, { "core_id": 1, @@ -235941,8 +17021,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3211) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.884969875 + "msg": "I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848\n", + "ts": 0.183268075 }, { "core_id": 1, @@ -235950,15 +17030,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3211) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.884969875 + "msg": "I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848\n", + "ts": 0.183268075 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb848", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -235972,44 +17052,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.884985475 + "ts": 0.18328925 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12289156 + "irq_num": 31 }, - "ts": 2.885005825 + "ts": 0.18331625 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.183327675 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.18334425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.885018525 + "ts": 0.183666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.885027325 + "ts": 0.18367985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8850429 + "ts": 0.18369555 }, { "core_id": 0, @@ -236019,7 +17114,7 @@ "params": { "irq_num": 5 }, - "ts": 2.88561795 + "ts": 0.1838338 }, { "core_id": 0, @@ -236027,17 +17122,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.885629375 + "ts": 0.1838488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8856388 + "ts": 0.183861575 }, { "core_id": 0, @@ -236045,19 +17140,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.885652975 + "ts": 0.18387725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb848", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 21, + "ts": 0.18391265 + }, + { + "addr": "0x3ffbb864", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -236067,8 +17183,8 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 582, - "ts": 2.885676975 + "size": 42, + "ts": 0.183951325 }, { "core_id": 0, @@ -236078,10 +17194,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.885689675 + "ts": 0.183968225 }, { "core_id": 0, @@ -236091,20 +17207,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.885703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8857475 + "ts": 0.1839842 }, { "core_id": 0, @@ -236112,8 +17218,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3212) example: Task[0x3ffb8600]: allocated 582 bytes @ 0x3ffb4b10\n", - "ts": 2.88576945 + "msg": "I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864\n", + "ts": 0.18405455 }, { "core_id": 0, @@ -236121,16 +17227,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3212) example: Task[0x3ffb8600]: allocated 582 bytes @ 0x3ffb4b10\n", - "ts": 2.88576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8857782 + "msg": "I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864\n", + "ts": 0.18405455 }, { "core_id": 0, @@ -236140,18 +17238,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289896, + "xQueue": 12299072, "xTicksToWait": 0 }, - "ts": 2.8857867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.885797075 + "ts": 0.18406815 }, { "core_id": 0, @@ -236159,9 +17249,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.88580785 + "ts": 0.184081375 }, { "core_id": 1, @@ -236171,7 +17261,7 @@ "params": { "irq_num": 31 }, - "ts": 2.885820875 + "ts": 0.184097675 }, { "core_id": 0, @@ -236181,26 +17271,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.8858294 + "ts": 0.184108525 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.885837375 + "ts": 0.1841193 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12289536 + "irq_num": 30 }, - "ts": 2.88584595 + "ts": 0.184133175 }, { "core_id": 1, @@ -236208,19 +17297,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.8858586 + "ts": 0.18414405 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.885866975 + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.184154875 }, { "core_id": 1, @@ -236228,20 +17315,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, "xTicksToWait": 4294967295 }, - "ts": 2.8858792 + "ts": 0.18416675 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.885887225 + "ts": 0.184178025 }, { "core_id": 1, @@ -236251,18 +17338,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.885895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8859058 + "ts": 0.184189675 }, { "core_id": 1, @@ -236272,10 +17351,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.885920725 + "ts": 0.184209375 }, { "core_id": 1, @@ -236283,8 +17362,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3212) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.885970075 + "msg": "I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864\n", + "ts": 0.184272925 }, { "core_id": 1, @@ -236292,15 +17371,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3212) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.885970075 + "msg": "I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864\n", + "ts": 0.184272925 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb864", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -236314,44 +17393,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.88598545 + "ts": 0.184294125 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12274088 + "irq_num": 31 }, - "ts": 2.886003575 + "ts": 0.184321025 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.184332575 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.18434915 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.8860164 + "ts": 0.184666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.886025175 + "ts": 0.18467985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.886040625 + "ts": 0.18469555 }, { "core_id": 0, @@ -236361,23 +17455,23 @@ "params": { "irq_num": 5 }, - "ts": 2.88661795 + "ts": 0.1848338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.88662955 + "ts": 0.184849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.886643175 + "ts": 0.18486425 }, { "core_id": 1, @@ -236387,23 +17481,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8867475 + "ts": 0.185666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.886756975 + "ts": 0.185680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8867706 + "ts": 0.18569535 }, { "core_id": 0, @@ -236413,23 +17507,23 @@ "params": { "irq_num": 5 }, - "ts": 2.88761795 + "ts": 0.1858338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8876295 + "ts": 0.185849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.887643125 + "ts": 0.18586425 }, { "core_id": 1, @@ -236439,23 +17533,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8877475 + "ts": 0.186666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.887757 + "ts": 0.18668 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.887770775 + "ts": 0.186695125 }, { "core_id": 0, @@ -236465,23 +17559,23 @@ "params": { "irq_num": 5 }, - "ts": 2.88861795 + "ts": 0.1868338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8886295 + "ts": 0.186849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.888643125 + "ts": 0.18686425 }, { "core_id": 1, @@ -236491,23 +17585,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8887475 + "ts": 0.187666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.888756975 + "ts": 0.187680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8887706 + "ts": 0.187695225 }, { "core_id": 0, @@ -236517,23 +17611,23 @@ "params": { "irq_num": 5 }, - "ts": 2.88961795 + "ts": 0.1878338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8896295 + "ts": 0.1878492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.88964325 + "ts": 0.187864425 }, { "core_id": 1, @@ -236543,23 +17637,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8897475 + "ts": 0.188666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.889756975 + "ts": 0.18867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8897706 + "ts": 0.1886951 }, { "core_id": 0, @@ -236569,23 +17663,23 @@ "params": { "irq_num": 5 }, - "ts": 2.89061795 + "ts": 0.1888338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.890631925 + "ts": 0.188849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.89064555 + "ts": 0.18886425 }, { "core_id": 1, @@ -236595,23 +17689,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8907475 + "ts": 0.189666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.890756975 + "ts": 0.189680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8907706 + "ts": 0.18969535 }, { "core_id": 0, @@ -236621,23 +17715,23 @@ "params": { "irq_num": 5 }, - "ts": 2.89161795 + "ts": 0.1898338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8916295 + "ts": 0.189849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.891643125 + "ts": 0.189868575 }, { "core_id": 1, @@ -236647,23 +17741,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8917475 + "ts": 0.190666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.891757 + "ts": 0.19067995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.891770775 + "ts": 0.1906951 }, { "core_id": 0, @@ -236673,23 +17767,23 @@ "params": { "irq_num": 5 }, - "ts": 2.89261795 + "ts": 0.1908338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8926295 + "ts": 0.190849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.892643125 + "ts": 0.19086425 }, { "core_id": 1, @@ -236699,23 +17793,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8927475 + "ts": 0.191666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.892756975 + "ts": 0.191680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8927706 + "ts": 0.19169535 }, { "core_id": 0, @@ -236725,23 +17819,23 @@ "params": { "irq_num": 5 }, - "ts": 2.89361795 + "ts": 0.1918338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8936295 + "ts": 0.191849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.89364325 + "ts": 0.19186425 }, { "core_id": 1, @@ -236751,23 +17845,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8937475 + "ts": 0.192666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.893756975 + "ts": 0.19268 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8937706 + "ts": 0.192695125 }, { "core_id": 0, @@ -236777,23 +17871,23 @@ "params": { "irq_num": 5 }, - "ts": 2.89461795 + "ts": 0.1928338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.89462955 + "ts": 0.192849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.894643175 + "ts": 0.19286425 }, { "core_id": 1, @@ -236803,23 +17897,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8947475 + "ts": 0.193666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.894756975 + "ts": 0.193680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8947706 + "ts": 0.193695225 }, { "core_id": 0, @@ -236829,23 +17923,23 @@ "params": { "irq_num": 5 }, - "ts": 2.89561795 + "ts": 0.1938338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8956295 + "ts": 0.1938492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.895643125 + "ts": 0.193864425 }, { "core_id": 1, @@ -236855,23 +17949,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8957475 + "ts": 0.194666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.895757 + "ts": 0.19467995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.895770775 + "ts": 0.1946951 }, { "core_id": 0, @@ -236881,23 +17975,23 @@ "params": { "irq_num": 5 }, - "ts": 2.89661795 + "ts": 0.1948338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8966295 + "ts": 0.194849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.896643125 + "ts": 0.19486425 }, { "core_id": 1, @@ -236907,23 +18001,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8967475 + "ts": 0.195666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.896756975 + "ts": 0.195680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8967706 + "ts": 0.19569535 }, { "core_id": 0, @@ -236933,23 +18027,23 @@ "params": { "irq_num": 5 }, - "ts": 2.89761795 + "ts": 0.1958338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8976295 + "ts": 0.195849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.89764325 + "ts": 0.19586425 }, { "core_id": 1, @@ -236959,23 +18053,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8977475 + "ts": 0.196666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.897756975 + "ts": 0.19668 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8977706 + "ts": 0.196695125 }, { "core_id": 0, @@ -236985,23 +18079,23 @@ "params": { "irq_num": 5 }, - "ts": 2.89861795 + "ts": 0.1968338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.89862955 + "ts": 0.196849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.898643175 + "ts": 0.19686425 }, { "core_id": 1, @@ -237011,23 +18105,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8987475 + "ts": 0.197666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.898756975 + "ts": 0.197680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8987706 + "ts": 0.197695225 }, { "core_id": 0, @@ -237037,23 +18131,23 @@ "params": { "irq_num": 5 }, - "ts": 2.89961795 + "ts": 0.1978338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8996295 + "ts": 0.1978492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.899643125 + "ts": 0.197864425 }, { "core_id": 1, @@ -237063,23 +18157,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8997475 + "ts": 0.198666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.899757 + "ts": 0.19867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.899770775 + "ts": 0.1986951 }, { "core_id": 0, @@ -237089,23 +18183,23 @@ "params": { "irq_num": 5 }, - "ts": 2.90061795 + "ts": 0.1988338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9006295 + "ts": 0.198849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.900643125 + "ts": 0.19886425 }, { "core_id": 1, @@ -237115,23 +18209,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9007475 + "ts": 0.199666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.900756975 + "ts": 0.199680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9007706 + "ts": 0.19969535 }, { "core_id": 0, @@ -237141,23 +18235,23 @@ "params": { "irq_num": 5 }, - "ts": 2.90161795 + "ts": 0.1998338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9016295 + "ts": 0.199849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.90164325 + "ts": 0.19986425 }, { "core_id": 1, @@ -237167,23 +18261,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9017475 + "ts": 0.200666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.901756975 + "ts": 0.20068 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9017706 + "ts": 0.200695125 }, { "core_id": 0, @@ -237193,23 +18287,23 @@ "params": { "irq_num": 5 }, - "ts": 2.90261795 + "ts": 0.2008338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9026326 + "ts": 0.200849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.902646225 + "ts": 0.20086425 }, { "core_id": 1, @@ -237219,23 +18313,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9027475 + "ts": 0.201666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.902756975 + "ts": 0.201680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9027706 + "ts": 0.201695225 }, { "core_id": 0, @@ -237245,23 +18339,23 @@ "params": { "irq_num": 5 }, - "ts": 2.90361795 + "ts": 0.2018338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9036295 + "ts": 0.2018492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.903643125 + "ts": 0.201864425 }, { "core_id": 1, @@ -237271,23 +18365,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9037475 + "ts": 0.202666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.903757 + "ts": 0.202680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.903770775 + "ts": 0.20269535 }, { "core_id": 0, @@ -237297,23 +18391,23 @@ "params": { "irq_num": 5 }, - "ts": 2.90461795 + "ts": 0.2028338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9046295 + "ts": 0.202849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.904643125 + "ts": 0.20286425 }, { "core_id": 1, @@ -237323,23 +18417,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9047475 + "ts": 0.203666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.904756975 + "ts": 0.20368 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9047706 + "ts": 0.203695125 }, { "core_id": 0, @@ -237349,23 +18443,23 @@ "params": { "irq_num": 5 }, - "ts": 2.90561795 + "ts": 0.2038338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9056295 + "ts": 0.203849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.90564325 + "ts": 0.20386425 }, { "core_id": 1, @@ -237375,23 +18469,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9057475 + "ts": 0.204666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.905756975 + "ts": 0.204680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9057706 + "ts": 0.204695225 }, { "core_id": 0, @@ -237401,23 +18495,23 @@ "params": { "irq_num": 5 }, - "ts": 2.90661795 + "ts": 0.2048338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.90662955 + "ts": 0.2048492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.906643175 + "ts": 0.204864425 }, { "core_id": 1, @@ -237427,23 +18521,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9067475 + "ts": 0.205666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.906756975 + "ts": 0.20567995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9067706 + "ts": 0.2056951 }, { "core_id": 0, @@ -237453,23 +18547,23 @@ "params": { "irq_num": 5 }, - "ts": 2.90761795 + "ts": 0.2058338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9076295 + "ts": 0.205849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.907643125 + "ts": 0.20586425 }, { "core_id": 1, @@ -237479,23 +18573,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9077475 + "ts": 0.206666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.907757 + "ts": 0.206680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.907770775 + "ts": 0.20669535 }, { "core_id": 0, @@ -237505,23 +18599,23 @@ "params": { "irq_num": 5 }, - "ts": 2.90861795 + "ts": 0.2068338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9086295 + "ts": 0.206849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.908643125 + "ts": 0.20686425 }, { "core_id": 1, @@ -237531,23 +18625,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9087475 + "ts": 0.207666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.908756975 + "ts": 0.20768 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9087706 + "ts": 0.207695125 }, { "core_id": 0, @@ -237557,23 +18651,23 @@ "params": { "irq_num": 5 }, - "ts": 2.90961795 + "ts": 0.2078338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9096295 + "ts": 0.207849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.90964325 + "ts": 0.20786425 }, { "core_id": 1, @@ -237583,23 +18677,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9097475 + "ts": 0.208666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.909756975 + "ts": 0.208680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9097706 + "ts": 0.208695225 }, { "core_id": 0, @@ -237609,23 +18703,23 @@ "params": { "irq_num": 5 }, - "ts": 2.91061795 + "ts": 0.2088338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.91062955 + "ts": 0.2088492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.910643175 + "ts": 0.208864425 }, { "core_id": 1, @@ -237635,23 +18729,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9107475 + "ts": 0.209666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.910756975 + "ts": 0.20967995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9107706 + "ts": 0.2096951 }, { "core_id": 0, @@ -237661,23 +18755,23 @@ "params": { "irq_num": 5 }, - "ts": 2.91161795 + "ts": 0.2098338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9116295 + "ts": 0.209849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.911643125 + "ts": 0.20986425 }, { "core_id": 1, @@ -237687,23 +18781,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9117475 + "ts": 0.210666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.911757 + "ts": 0.210680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.911770775 + "ts": 0.21069535 }, { "core_id": 0, @@ -237713,23 +18807,23 @@ "params": { "irq_num": 5 }, - "ts": 2.91261795 + "ts": 0.2108338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9126295 + "ts": 0.210849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.912643125 + "ts": 0.21086425 }, { "core_id": 1, @@ -237739,23 +18833,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9127475 + "ts": 0.211666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.912756975 + "ts": 0.21168 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9127706 + "ts": 0.211695125 }, { "core_id": 0, @@ -237765,7 +18859,7 @@ "params": { "irq_num": 5 }, - "ts": 2.91361795 + "ts": 0.2118338 }, { "core_id": 0, @@ -237773,17 +18867,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.913629375 + "ts": 0.2118488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.913638825 + "ts": 0.211861575 }, { "core_id": 0, @@ -237791,18 +18885,39 @@ "id": 4, "in_irq": false, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.913652975 + "ts": 0.21187725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb864", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 8, + "ts": 0.21191265 + }, + { + "addr": "0x3ffbb874", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", "0x0", "0x0", "0x0", @@ -237813,8 +18928,8 @@ "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 196, - "ts": 2.913677 + "size": 16, + "ts": 0.21195125 }, { "core_id": 0, @@ -237824,10 +18939,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.9136921 + "ts": 0.21196815 }, { "core_id": 0, @@ -237837,20 +18952,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.9137061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9137475 + "ts": 0.21198415 }, { "core_id": 0, @@ -237858,8 +18963,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3240) example: Task[0x3ffb7f40]: allocated 196 bytes @ 0x3ffb4b10\n", - "ts": 2.913768375 + "msg": "I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874\n", + "ts": 0.212054475 }, { "core_id": 0, @@ -237867,16 +18972,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3240) example: Task[0x3ffb7f40]: allocated 196 bytes @ 0x3ffb4b10\n", - "ts": 2.913768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.913777525 + "msg": "I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874\n", + "ts": 0.212054475 }, { "core_id": 0, @@ -237886,18 +18983,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12288168, + "xQueue": 12287056, "xTicksToWait": 0 }, - "ts": 2.9137858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9137964 + "ts": 0.212068075 }, { "core_id": 0, @@ -237905,9 +18994,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.9138072 + "ts": 0.2120813 }, { "core_id": 1, @@ -237917,7 +19006,7 @@ "params": { "irq_num": 31 }, - "ts": 2.9138202 + "ts": 0.212097675 }, { "core_id": 0, @@ -237927,26 +19016,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.91382875 + "ts": 0.212108525 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.913836675 + "ts": 0.2121193 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12287808 + "irq_num": 30 }, - "ts": 2.913845225 + "ts": 0.212133125 }, { "core_id": 1, @@ -237954,19 +19042,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.91385785 + "ts": 0.212144025 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.913866225 + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21215485 }, { "core_id": 1, @@ -237974,20 +19060,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, "xTicksToWait": 4294967295 }, - "ts": 2.91387455 + "ts": 0.2121668 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc0", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.913883425 + "ts": 0.21217705 }, { "core_id": 1, @@ -237997,18 +19083,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.913892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9139021 + "ts": 0.212188475 }, { "core_id": 1, @@ -238018,10 +19096,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.913916925 + "ts": 0.21220885 }, { "core_id": 1, @@ -238029,8 +19107,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3240) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.913966175 + "msg": "I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874\n", + "ts": 0.2122724 }, { "core_id": 1, @@ -238038,15 +19116,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3240) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.913966175 + "msg": "I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874\n", + "ts": 0.2122724 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb874", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -238060,44 +19138,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.913984575 + "ts": 0.2122936 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12288292 + "irq_num": 31 }, - "ts": 2.914002575 + "ts": 0.212320475 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2123319 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.212348475 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.91401525 + "ts": 0.212666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.91402405 + "ts": 0.21267985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 17, "in_irq": false, "params": {}, - "ts": 2.914039625 + "ts": 0.21269555 }, { "core_id": 0, @@ -238107,7 +19200,7 @@ "params": { "irq_num": 5 }, - "ts": 2.91461795 + "ts": 0.2128338 }, { "core_id": 0, @@ -238115,17 +19208,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.914629375 + "ts": 0.2128488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9146388 + "ts": 0.212861575 }, { "core_id": 0, @@ -238133,18 +19226,39 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.914652975 + "ts": 0.212877375 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb874", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 16, + "ts": 0.212912775 + }, + { + "addr": "0x3ffbb888", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", "0x0", "0x0", "0x0", @@ -238155,8 +19269,8 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 392, - "ts": 2.914677 + "size": 32, + "ts": 0.212947475 }, { "core_id": 0, @@ -238166,10 +19280,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.9146897 + "ts": 0.2129644 }, { "core_id": 0, @@ -238179,20 +19293,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.914703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9147475 + "ts": 0.212984575 }, { "core_id": 0, @@ -238200,8 +19304,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3241) example: Task[0x3ffb82a0]: allocated 392 bytes @ 0x3ffb4b10\n", - "ts": 2.914769475 + "msg": "I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888\n", + "ts": 0.213055025 }, { "core_id": 0, @@ -238209,16 +19313,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3241) example: Task[0x3ffb82a0]: allocated 392 bytes @ 0x3ffb4b10\n", - "ts": 2.914769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.91478125 + "msg": "I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888\n", + "ts": 0.213055025 }, { "core_id": 0, @@ -238228,18 +19324,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289032, + "xQueue": 12293072, "xTicksToWait": 0 }, - "ts": 2.91478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.914800125 + "ts": 0.21306865 }, { "core_id": 0, @@ -238247,9 +19335,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.9148109 + "ts": 0.21308185 }, { "core_id": 1, @@ -238259,7 +19347,7 @@ "params": { "irq_num": 31 }, - "ts": 2.914823925 + "ts": 0.21309815 }, { "core_id": 0, @@ -238269,26 +19357,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.91483245 + "ts": 0.213109 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.914840425 + "ts": 0.21311975 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12288672 + "irq_num": 30 }, - "ts": 2.914849 + "ts": 0.213133475 }, { "core_id": 1, @@ -238296,19 +19383,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.91486165 + "ts": 0.213144325 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.914870025 + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21315515 }, { "core_id": 1, @@ -238316,20 +19401,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, "xTicksToWait": 4294967295 }, - "ts": 2.91487835 + "ts": 0.213167025 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc1", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.914887225 + "ts": 0.213177275 }, { "core_id": 1, @@ -238339,18 +19424,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.9148966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9149058 + "ts": 0.21318875 }, { "core_id": 1, @@ -238360,10 +19437,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.914920625 + "ts": 0.21320505 }, { "core_id": 1, @@ -238371,8 +19448,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3241) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.914969875 + "msg": "I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888\n", + "ts": 0.2132685 }, { "core_id": 1, @@ -238380,15 +19457,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3241) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.914969875 + "msg": "I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888\n", + "ts": 0.2132685 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb888", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -238402,44 +19479,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.914985475 + "ts": 0.21329355 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12289156 + "irq_num": 31 }, - "ts": 2.915005825 + "ts": 0.21332055 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.213331975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21334855 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.915018525 + "ts": 0.213666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.915027325 + "ts": 0.21367985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9150429 + "ts": 0.21369555 }, { "core_id": 0, @@ -238449,7 +19541,7 @@ "params": { "irq_num": 5 }, - "ts": 2.91561795 + "ts": 0.2138338 }, { "core_id": 0, @@ -238457,17 +19549,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.915629375 + "ts": 0.2138488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9156388 + "ts": 0.213861575 }, { "core_id": 0, @@ -238475,19 +19567,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.915652975 + "ts": 0.21387725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb888", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 24, + "ts": 0.21391265 + }, + { + "addr": "0x3ffbb8a4", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -238497,8 +19610,8 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 588, - "ts": 2.915676975 + "size": 48, + "ts": 0.2139472 }, { "core_id": 0, @@ -238508,10 +19621,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.915689675 + "ts": 0.21396435 }, { "core_id": 0, @@ -238521,20 +19634,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.915703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9157475 + "ts": 0.21398035 }, { "core_id": 0, @@ -238542,8 +19645,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3242) example: Task[0x3ffb8600]: allocated 588 bytes @ 0x3ffb4b10\n", - "ts": 2.91576945 + "msg": "I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4\n", + "ts": 0.214050675 }, { "core_id": 0, @@ -238551,16 +19654,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3242) example: Task[0x3ffb8600]: allocated 588 bytes @ 0x3ffb4b10\n", - "ts": 2.91576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9157782 + "msg": "I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4\n", + "ts": 0.214050675 }, { "core_id": 0, @@ -238570,18 +19665,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289896, + "xQueue": 12299072, "xTicksToWait": 0 }, - "ts": 2.9157867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.915797075 + "ts": 0.214071175 }, { "core_id": 0, @@ -238589,9 +19676,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.91580785 + "ts": 0.2140844 }, { "core_id": 1, @@ -238601,7 +19688,7 @@ "params": { "irq_num": 31 }, - "ts": 2.915820875 + "ts": 0.214100725 }, { "core_id": 0, @@ -238611,26 +19698,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.9158294 + "ts": 0.214111575 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.915837375 + "ts": 0.214122325 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12289536 + "irq_num": 30 }, - "ts": 2.91584595 + "ts": 0.21413605 }, { "core_id": 1, @@ -238638,19 +19724,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.9158586 + "ts": 0.21414695 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.915866975 + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.214157775 }, { "core_id": 1, @@ -238658,20 +19742,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, "xTicksToWait": 4294967295 }, - "ts": 2.9158792 + "ts": 0.214169625 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.915887225 + "ts": 0.214180925 }, { "core_id": 1, @@ -238681,18 +19765,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.915895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9159058 + "ts": 0.21419255 }, { "core_id": 1, @@ -238702,10 +19778,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.915920725 + "ts": 0.21420895 }, { "core_id": 1, @@ -238713,8 +19789,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3242) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.915970075 + "msg": "I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4\n", + "ts": 0.2142725 }, { "core_id": 1, @@ -238722,15 +19798,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3242) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.915970075 + "msg": "I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4\n", + "ts": 0.2142725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb8a4", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -238744,44 +19820,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.91598545 + "ts": 0.2142937 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12274088 + "irq_num": 31 }, - "ts": 2.916003575 + "ts": 0.214324025 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2143355 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2143522 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.9160164 + "ts": 0.214666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.916025175 + "ts": 0.214679875 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.916040625 + "ts": 0.21469545 }, { "core_id": 0, @@ -238791,23 +19882,23 @@ "params": { "irq_num": 5 }, - "ts": 2.91661795 + "ts": 0.2148338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.91662955 + "ts": 0.2148492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.916643175 + "ts": 0.214864425 }, { "core_id": 1, @@ -238817,23 +19908,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9167475 + "ts": 0.215666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.916756975 + "ts": 0.21567995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9167706 + "ts": 0.2156951 }, { "core_id": 0, @@ -238843,23 +19934,23 @@ "params": { "irq_num": 5 }, - "ts": 2.91761795 + "ts": 0.2158338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9176295 + "ts": 0.215849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.917643125 + "ts": 0.21586425 }, { "core_id": 1, @@ -238869,23 +19960,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9177475 + "ts": 0.216666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.917757 + "ts": 0.216680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.917770775 + "ts": 0.21669535 }, { "core_id": 0, @@ -238895,23 +19986,23 @@ "params": { "irq_num": 5 }, - "ts": 2.91861795 + "ts": 0.2168338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9186295 + "ts": 0.216849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.918643125 + "ts": 0.21686425 }, { "core_id": 1, @@ -238921,23 +20012,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9187475 + "ts": 0.217666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.918756975 + "ts": 0.21768 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9187706 + "ts": 0.217695125 }, { "core_id": 0, @@ -238947,23 +20038,23 @@ "params": { "irq_num": 5 }, - "ts": 2.91961795 + "ts": 0.2178338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9196295 + "ts": 0.217849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.91964325 + "ts": 0.21786425 }, { "core_id": 1, @@ -238973,23 +20064,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9197475 + "ts": 0.218666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.919756975 + "ts": 0.218680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9197706 + "ts": 0.218695225 }, { "core_id": 0, @@ -238999,23 +20090,23 @@ "params": { "irq_num": 5 }, - "ts": 2.92061795 + "ts": 0.2188338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.920631925 + "ts": 0.2188492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.92064555 + "ts": 0.218864425 }, { "core_id": 1, @@ -239025,23 +20116,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9207475 + "ts": 0.219666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.920756975 + "ts": 0.21967995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9207706 + "ts": 0.2196951 }, { "core_id": 0, @@ -239051,23 +20142,23 @@ "params": { "irq_num": 5 }, - "ts": 2.92161795 + "ts": 0.2198338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9216295 + "ts": 0.219849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.921643125 + "ts": 0.21986425 }, { "core_id": 1, @@ -239077,23 +20168,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9217475 + "ts": 0.220666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.921757 + "ts": 0.220680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.921770775 + "ts": 0.22069535 }, { "core_id": 0, @@ -239103,23 +20194,23 @@ "params": { "irq_num": 5 }, - "ts": 2.92261795 + "ts": 0.2208338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9226295 + "ts": 0.220849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.922643125 + "ts": 0.22086425 }, { "core_id": 1, @@ -239129,23 +20220,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9227475 + "ts": 0.221666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.922756975 + "ts": 0.22168 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9227706 + "ts": 0.221695125 }, { "core_id": 0, @@ -239155,23 +20246,23 @@ "params": { "irq_num": 5 }, - "ts": 2.92361795 + "ts": 0.2218338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9236295 + "ts": 0.221849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.92364325 + "ts": 0.22186425 }, { "core_id": 1, @@ -239181,23 +20272,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9237475 + "ts": 0.222666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.923756975 + "ts": 0.222680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9237706 + "ts": 0.222695225 }, { "core_id": 0, @@ -239207,23 +20298,23 @@ "params": { "irq_num": 5 }, - "ts": 2.92461795 + "ts": 0.2228338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.92462955 + "ts": 0.2228492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.924643175 + "ts": 0.222864425 }, { "core_id": 1, @@ -239233,23 +20324,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9247475 + "ts": 0.223666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.924756975 + "ts": 0.22367995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9247706 + "ts": 0.2236951 }, { "core_id": 0, @@ -239259,23 +20350,23 @@ "params": { "irq_num": 5 }, - "ts": 2.92561795 + "ts": 0.2238338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9256295 + "ts": 0.223849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.925643125 + "ts": 0.22386425 }, { "core_id": 1, @@ -239285,23 +20376,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9257475 + "ts": 0.224666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.925757 + "ts": 0.2246842 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.925770775 + "ts": 0.22469935 }, { "core_id": 0, @@ -239311,23 +20402,23 @@ "params": { "irq_num": 5 }, - "ts": 2.92661795 + "ts": 0.2248338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9266295 + "ts": 0.224849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.926643125 + "ts": 0.22486425 }, { "core_id": 1, @@ -239337,23 +20428,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9267475 + "ts": 0.225666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.926756975 + "ts": 0.225680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9267706 + "ts": 0.225695225 }, { "core_id": 0, @@ -239363,23 +20454,23 @@ "params": { "irq_num": 5 }, - "ts": 2.92761795 + "ts": 0.2258338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9276295 + "ts": 0.2258492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.92764325 + "ts": 0.225864425 }, { "core_id": 1, @@ -239389,23 +20480,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9277475 + "ts": 0.226666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.927756975 + "ts": 0.22667995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9277706 + "ts": 0.2266951 }, { "core_id": 0, @@ -239415,23 +20506,23 @@ "params": { "irq_num": 5 }, - "ts": 2.92861795 + "ts": 0.2268338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.92862955 + "ts": 0.226849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.928643175 + "ts": 0.22686425 }, { "core_id": 1, @@ -239441,23 +20532,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9287475 + "ts": 0.227666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.928756975 + "ts": 0.227680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9287706 + "ts": 0.22769535 }, { "core_id": 0, @@ -239467,23 +20558,23 @@ "params": { "irq_num": 5 }, - "ts": 2.92961795 + "ts": 0.2278338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9296295 + "ts": 0.227849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.929643125 + "ts": 0.22786425 }, { "core_id": 1, @@ -239493,23 +20584,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9297475 + "ts": 0.228666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.929757 + "ts": 0.22868 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.929770775 + "ts": 0.228695125 }, { "core_id": 0, @@ -239519,23 +20610,23 @@ "params": { "irq_num": 5 }, - "ts": 2.93061795 + "ts": 0.2288338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9306295 + "ts": 0.228849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.930643125 + "ts": 0.22886425 }, { "core_id": 1, @@ -239545,23 +20636,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9307475 + "ts": 0.229666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.930756975 + "ts": 0.229680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9307706 + "ts": 0.229695225 }, { "core_id": 0, @@ -239571,23 +20662,23 @@ "params": { "irq_num": 5 }, - "ts": 2.93161795 + "ts": 0.2298338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9316295 + "ts": 0.2298492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.93164325 + "ts": 0.229864425 }, { "core_id": 1, @@ -239597,23 +20688,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9317475 + "ts": 0.230666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.931756975 + "ts": 0.23067995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9317706 + "ts": 0.2306951 }, { "core_id": 0, @@ -239623,23 +20714,23 @@ "params": { "irq_num": 5 }, - "ts": 2.93261795 + "ts": 0.2308338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9326326 + "ts": 0.230849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.932646225 + "ts": 0.23086425 }, { "core_id": 1, @@ -239649,23 +20740,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9327475 + "ts": 0.231666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.932756975 + "ts": 0.231680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9327706 + "ts": 0.23169535 }, { "core_id": 0, @@ -239675,23 +20766,23 @@ "params": { "irq_num": 5 }, - "ts": 2.93361795 + "ts": 0.2318338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9336295 + "ts": 0.231849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.933643125 + "ts": 0.23186425 }, { "core_id": 1, @@ -239701,23 +20792,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9337475 + "ts": 0.232666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.933757 + "ts": 0.23268 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.933770775 + "ts": 0.232695125 }, { "core_id": 0, @@ -239727,23 +20818,23 @@ "params": { "irq_num": 5 }, - "ts": 2.93461795 + "ts": 0.2328338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9346295 + "ts": 0.232849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.934643125 + "ts": 0.23286425 }, { "core_id": 1, @@ -239753,23 +20844,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9347475 + "ts": 0.233666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.934756975 + "ts": 0.233680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9347706 + "ts": 0.233695225 }, { "core_id": 0, @@ -239779,23 +20870,23 @@ "params": { "irq_num": 5 }, - "ts": 2.93561795 + "ts": 0.2338338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9356295 + "ts": 0.2338492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.93564325 + "ts": 0.233864425 }, { "core_id": 1, @@ -239805,23 +20896,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9357475 + "ts": 0.234666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.935756975 + "ts": 0.23467995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9357706 + "ts": 0.2346951 }, { "core_id": 0, @@ -239831,23 +20922,23 @@ "params": { "irq_num": 5 }, - "ts": 2.93661795 + "ts": 0.2348338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.93662955 + "ts": 0.234849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.936643175 + "ts": 0.23486425 }, { "core_id": 1, @@ -239857,23 +20948,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9367475 + "ts": 0.235666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.936756975 + "ts": 0.235680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9367706 + "ts": 0.23569535 }, { "core_id": 0, @@ -239883,23 +20974,23 @@ "params": { "irq_num": 5 }, - "ts": 2.93761795 + "ts": 0.2358338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9376295 + "ts": 0.235849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.937643125 + "ts": 0.23586425 }, { "core_id": 1, @@ -239909,23 +21000,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9377475 + "ts": 0.236666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.937757 + "ts": 0.23668355 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.937770775 + "ts": 0.236698675 }, { "core_id": 0, @@ -239935,23 +21026,23 @@ "params": { "irq_num": 5 }, - "ts": 2.93861795 + "ts": 0.2368338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9386295 + "ts": 0.236849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.938643125 + "ts": 0.23686425 }, { "core_id": 1, @@ -239961,23 +21052,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9387475 + "ts": 0.237666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.938756975 + "ts": 0.237680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9387706 + "ts": 0.237695225 }, { "core_id": 0, @@ -239987,23 +21078,23 @@ "params": { "irq_num": 5 }, - "ts": 2.93961795 + "ts": 0.2378338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9396295 + "ts": 0.2378492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.93964325 + "ts": 0.237864425 }, { "core_id": 1, @@ -240013,23 +21104,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9397475 + "ts": 0.238666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.939756975 + "ts": 0.23867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9397706 + "ts": 0.2386951 }, { "core_id": 0, @@ -240039,23 +21130,23 @@ "params": { "irq_num": 5 }, - "ts": 2.94061795 + "ts": 0.2388338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.94062955 + "ts": 0.238849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.940643175 + "ts": 0.23886425 }, { "core_id": 1, @@ -240065,23 +21156,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9407475 + "ts": 0.239666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.940756975 + "ts": 0.239680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9407706 + "ts": 0.23969535 }, { "core_id": 0, @@ -240091,23 +21182,23 @@ "params": { "irq_num": 5 }, - "ts": 2.94161795 + "ts": 0.2398338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9416295 + "ts": 0.239849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.941643125 + "ts": 0.23986425 }, { "core_id": 1, @@ -240117,23 +21208,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9417475 + "ts": 0.240666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.941757 + "ts": 0.24068 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.941770775 + "ts": 0.240695125 }, { "core_id": 0, @@ -240143,23 +21234,23 @@ "params": { "irq_num": 5 }, - "ts": 2.94261795 + "ts": 0.2408338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9426295 + "ts": 0.240849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.942643125 + "ts": 0.24086425 }, { "core_id": 1, @@ -240169,23 +21260,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9427475 + "ts": 0.241666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.942756975 + "ts": 0.241680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9427706 + "ts": 0.241695225 }, { "core_id": 0, @@ -240195,7 +21286,7 @@ "params": { "irq_num": 5 }, - "ts": 2.94361795 + "ts": 0.2418338 }, { "core_id": 0, @@ -240203,17 +21294,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.943629375 + "ts": 0.241848825 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.943638825 + "ts": 0.241861575 }, { "core_id": 0, @@ -240221,19 +21312,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.943652975 + "ts": 0.24187725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb8a4", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 9, + "ts": 0.241912575 + }, + { + "addr": "0x3ffbb8b4", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -240243,8 +21355,8 @@ "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 198, - "ts": 2.943677 + "size": 18, + "ts": 0.241947 }, { "core_id": 0, @@ -240254,10 +21366,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.9436921 + "ts": 0.241964025 }, { "core_id": 0, @@ -240267,20 +21379,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.9437061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9437475 + "ts": 0.241980025 }, { "core_id": 0, @@ -240288,8 +21390,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3270) example: Task[0x3ffb7f40]: allocated 198 bytes @ 0x3ffb4b10\n", - "ts": 2.943768375 + "msg": "I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4\n", + "ts": 0.24205045 }, { "core_id": 0, @@ -240297,16 +21399,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3270) example: Task[0x3ffb7f40]: allocated 198 bytes @ 0x3ffb4b10\n", - "ts": 2.943768375 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.943777525 + "msg": "I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4\n", + "ts": 0.24205045 }, { "core_id": 0, @@ -240316,18 +21410,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12288168, + "xQueue": 12287056, "xTicksToWait": 0 }, - "ts": 2.9437858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9437964 + "ts": 0.242068275 }, { "core_id": 0, @@ -240335,9 +21421,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.9438072 + "ts": 0.2420815 }, { "core_id": 1, @@ -240347,7 +21433,7 @@ "params": { "irq_num": 31 }, - "ts": 2.9438202 + "ts": 0.242097725 }, { "core_id": 0, @@ -240357,26 +21443,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.94382875 + "ts": 0.2421086 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.943836675 + "ts": 0.24211935 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12287808 + "irq_num": 30 }, - "ts": 2.943845225 + "ts": 0.2421332 }, { "core_id": 1, @@ -240384,19 +21469,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.94385785 + "ts": 0.242144075 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.943866225 + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2421549 }, { "core_id": 1, @@ -240404,20 +21487,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, "xTicksToWait": 4294967295 }, - "ts": 2.94387455 + "ts": 0.242166875 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc0", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.943883425 + "ts": 0.242177125 }, { "core_id": 1, @@ -240427,18 +21510,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.943892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9439021 + "ts": 0.242188525 }, { "core_id": 1, @@ -240448,10 +21523,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.943916925 + "ts": 0.2422049 }, { "core_id": 1, @@ -240459,8 +21534,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3270) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.943966175 + "msg": "I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4\n", + "ts": 0.24226845 }, { "core_id": 1, @@ -240468,15 +21543,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3270) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.943966175 + "msg": "I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4\n", + "ts": 0.24226845 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb8b4", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -240490,44 +21565,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.943984575 + "ts": 0.24228965 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12288292 + "irq_num": 31 }, - "ts": 2.944002575 + "ts": 0.24232065 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.242332125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.242348825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.94401525 + "ts": 0.242666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.94402405 + "ts": 0.242679875 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 17, "in_irq": false, "params": {}, - "ts": 2.944039625 + "ts": 0.24269545 }, { "core_id": 0, @@ -240537,7 +21627,7 @@ "params": { "irq_num": 5 }, - "ts": 2.94461795 + "ts": 0.2428338 }, { "core_id": 0, @@ -240545,17 +21635,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.944629375 + "ts": 0.242848825 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9446388 + "ts": 0.242861575 }, { "core_id": 0, @@ -240563,19 +21653,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.944652975 + "ts": 0.24287725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb8b4", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 18, + "ts": 0.242912575 + }, + { + "addr": "0x3ffbb8cc", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -240585,8 +21696,8 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 396, - "ts": 2.944677 + "size": 36, + "ts": 0.24294715 }, { "core_id": 0, @@ -240596,10 +21707,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.9446897 + "ts": 0.242964175 }, { "core_id": 0, @@ -240609,20 +21720,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.944703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9447475 + "ts": 0.242980175 }, { "core_id": 0, @@ -240630,8 +21731,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3271) example: Task[0x3ffb82a0]: allocated 396 bytes @ 0x3ffb4b10\n", - "ts": 2.944769475 + "msg": "I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc\n", + "ts": 0.2430506 }, { "core_id": 0, @@ -240639,16 +21740,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3271) example: Task[0x3ffb82a0]: allocated 396 bytes @ 0x3ffb4b10\n", - "ts": 2.944769475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.94478125 + "msg": "I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc\n", + "ts": 0.2430506 }, { "core_id": 0, @@ -240658,18 +21751,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289032, + "xQueue": 12293072, "xTicksToWait": 0 }, - "ts": 2.94478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.944800125 + "ts": 0.24306415 }, { "core_id": 0, @@ -240677,9 +21762,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.9448109 + "ts": 0.243080975 }, { "core_id": 1, @@ -240689,7 +21774,7 @@ "params": { "irq_num": 31 }, - "ts": 2.944823925 + "ts": 0.243097275 }, { "core_id": 0, @@ -240699,26 +21784,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.94483245 + "ts": 0.243108125 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.944840425 + "ts": 0.243118875 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12288672 + "irq_num": 30 }, - "ts": 2.944849 + "ts": 0.2431326 }, { "core_id": 1, @@ -240726,19 +21810,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.94486165 + "ts": 0.24314345 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.944870025 + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.243154275 }, { "core_id": 1, @@ -240746,20 +21828,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, "xTicksToWait": 4294967295 }, - "ts": 2.94487835 + "ts": 0.24316615 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc1", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.944887225 + "ts": 0.2431764 }, { "core_id": 1, @@ -240769,18 +21851,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.9448966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9449058 + "ts": 0.243187875 }, { "core_id": 1, @@ -240790,10 +21864,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.944920625 + "ts": 0.243204375 }, { "core_id": 1, @@ -240801,8 +21875,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3271) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.944969875 + "msg": "I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc\n", + "ts": 0.243267825 }, { "core_id": 1, @@ -240810,15 +21884,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3271) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.944969875 + "msg": "I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc\n", + "ts": 0.243267825 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb8cc", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -240832,44 +21906,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.944985475 + "ts": 0.243288975 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12289156 + "irq_num": 31 }, - "ts": 2.945005825 + "ts": 0.243315975 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2433274 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.243343975 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.945018525 + "ts": 0.243666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.945027325 + "ts": 0.24367985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9450429 + "ts": 0.24369555 }, { "core_id": 0, @@ -240879,7 +21968,7 @@ "params": { "irq_num": 5 }, - "ts": 2.94561795 + "ts": 0.2438338 }, { "core_id": 0, @@ -240887,17 +21976,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.945629375 + "ts": 0.2438488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9456388 + "ts": 0.243861575 }, { "core_id": 0, @@ -240905,19 +21994,40 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.945652975 + "ts": 0.24387725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb8cc", "callers": [ - "0x400d3ad0", - "0x40089bbc", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 27, + "ts": 0.24391265 + }, + { + "addr": "0x3ffbb8ec", + "callers": [ + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", + "0x0", "0x0", "0x0", "0x0", @@ -240927,8 +22037,8 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 594, - "ts": 2.945676975 + "size": 54, + "ts": 0.243951325 }, { "core_id": 0, @@ -240938,10 +22048,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.945689675 + "ts": 0.24396835 }, { "core_id": 0, @@ -240951,20 +22061,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.945703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9457475 + "ts": 0.24398435 }, { "core_id": 0, @@ -240972,8 +22072,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3272) example: Task[0x3ffb8600]: allocated 594 bytes @ 0x3ffb4b10\n", - "ts": 2.94576945 + "msg": "I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec\n", + "ts": 0.244054675 }, { "core_id": 0, @@ -240981,16 +22081,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3272) example: Task[0x3ffb8600]: allocated 594 bytes @ 0x3ffb4b10\n", - "ts": 2.94576945 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9457782 + "msg": "I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec\n", + "ts": 0.244054675 }, { "core_id": 0, @@ -241000,18 +22092,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12289896, + "xQueue": 12299072, "xTicksToWait": 0 }, - "ts": 2.9457867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.945797075 + "ts": 0.2440684 }, { "core_id": 0, @@ -241019,9 +22103,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.94580785 + "ts": 0.244081625 }, { "core_id": 1, @@ -241031,7 +22115,7 @@ "params": { "irq_num": 31 }, - "ts": 2.945820875 + "ts": 0.24409795 }, { "core_id": 0, @@ -241041,26 +22125,25 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.9458294 + "ts": 0.2441088 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.945837375 + "ts": 0.24411955 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 4, - "tid": 12289536 + "irq_num": 30 }, - "ts": 2.94584595 + "ts": 0.244133275 }, { "core_id": 1, @@ -241068,19 +22151,17 @@ "id": 4, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.9458586 + "ts": 0.244144175 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.945866975 + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.244155 }, { "core_id": 1, @@ -241088,20 +22169,20 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, "xTicksToWait": 4294967295 }, - "ts": 2.9458792 + "ts": 0.24416685 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.945887225 + "ts": 0.24417815 }, { "core_id": 1, @@ -241111,18 +22192,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.945895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9459058 + "ts": 0.244189775 }, { "core_id": 1, @@ -241132,10 +22205,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.945920725 + "ts": 0.244210225 }, { "core_id": 1, @@ -241143,8 +22216,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3272) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.945970075 + "msg": "I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec\n", + "ts": 0.2442739 }, { "core_id": 1, @@ -241152,15 +22225,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3272) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.945970075 + "msg": "I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec\n", + "ts": 0.2442739 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb8ec", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", + "0x4008e674", + "0x400d6bb2", + "0x40088d94", "0x0", "0x0", "0x0", @@ -241174,44 +22247,59 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.94598545 + "ts": 0.2442951 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12274088 + "irq_num": 31 }, - "ts": 2.946003575 + "ts": 0.244322 }, { "core_id": 1, - "ctx_name": "FROM_CPU1", + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.244333425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.24435 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 31 + "irq_num": 5 }, - "ts": 2.9460164 + "ts": 0.244666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.946025175 + "ts": 0.24467985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.946040625 + "ts": 0.24469555 }, { "core_id": 0, @@ -241221,23 +22309,23 @@ "params": { "irq_num": 5 }, - "ts": 2.94661795 + "ts": 0.2448338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.94662955 + "ts": 0.244849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.946643175 + "ts": 0.24486425 }, { "core_id": 1, @@ -241247,23 +22335,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9467475 + "ts": 0.245666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.946756975 + "ts": 0.245680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9467706 + "ts": 0.24569535 }, { "core_id": 0, @@ -241273,23 +22361,23 @@ "params": { "irq_num": 5 }, - "ts": 2.94761795 + "ts": 0.2458338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9476295 + "ts": 0.245849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.947643125 + "ts": 0.24586425 }, { "core_id": 1, @@ -241299,23 +22387,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9477475 + "ts": 0.246666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.947757 + "ts": 0.24668 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.947770775 + "ts": 0.246695125 }, { "core_id": 0, @@ -241325,23 +22413,23 @@ "params": { "irq_num": 5 }, - "ts": 2.94861795 + "ts": 0.2468338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9486295 + "ts": 0.246849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.948643125 + "ts": 0.24686425 }, { "core_id": 1, @@ -241351,23 +22439,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9487475 + "ts": 0.247666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.948756975 + "ts": 0.247680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9487706 + "ts": 0.247695225 }, { "core_id": 0, @@ -241377,23 +22465,23 @@ "params": { "irq_num": 5 }, - "ts": 2.94961795 + "ts": 0.2478338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9496295 + "ts": 0.2478492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.94964325 + "ts": 0.247864425 }, { "core_id": 1, @@ -241403,23 +22491,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9497475 + "ts": 0.248666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.949756975 + "ts": 0.24867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9497706 + "ts": 0.2486951 }, { "core_id": 0, @@ -241429,23 +22517,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95061795 + "ts": 0.2488338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.950631925 + "ts": 0.248849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.95064555 + "ts": 0.24886425 }, { "core_id": 1, @@ -241455,23 +22543,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9507475 + "ts": 0.249666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.950756975 + "ts": 0.249680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9507706 + "ts": 0.24969535 }, { "core_id": 0, @@ -241481,23 +22569,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95161795 + "ts": 0.2498338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9516295 + "ts": 0.249849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.951643125 + "ts": 0.249868675 }, { "core_id": 1, @@ -241507,23 +22595,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9517475 + "ts": 0.250666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.951757 + "ts": 0.25067995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.951770775 + "ts": 0.2506951 }, { "core_id": 0, @@ -241533,23 +22621,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95261795 + "ts": 0.2508338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9526295 + "ts": 0.250849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.952643125 + "ts": 0.25086425 }, { "core_id": 1, @@ -241559,23 +22647,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9527475 + "ts": 0.251666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.952756975 + "ts": 0.251680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9527706 + "ts": 0.25169535 }, { "core_id": 0, @@ -241585,23 +22673,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95361795 + "ts": 0.2518338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9536295 + "ts": 0.251849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.95364325 + "ts": 0.25186425 }, { "core_id": 1, @@ -241611,23 +22699,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9537475 + "ts": 0.252666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.953756975 + "ts": 0.25268 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9537706 + "ts": 0.252695125 }, { "core_id": 0, @@ -241637,23 +22725,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95461795 + "ts": 0.2528338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.95462955 + "ts": 0.252849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.954643175 + "ts": 0.25286425 }, { "core_id": 1, @@ -241663,23 +22751,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9547475 + "ts": 0.253666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.954756975 + "ts": 0.253680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9547706 + "ts": 0.253695225 }, { "core_id": 0, @@ -241689,23 +22777,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95561795 + "ts": 0.2538338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9556295 + "ts": 0.2538492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.955643125 + "ts": 0.253864425 }, { "core_id": 1, @@ -241715,23 +22803,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9557475 + "ts": 0.254666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.955757 + "ts": 0.25467995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.955770775 + "ts": 0.2546951 }, { "core_id": 0, @@ -241741,23 +22829,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95661795 + "ts": 0.2548338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9566295 + "ts": 0.254849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.956643125 + "ts": 0.25486425 }, { "core_id": 1, @@ -241767,23 +22855,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9567475 + "ts": 0.255666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.956756975 + "ts": 0.255680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9567706 + "ts": 0.25569535 }, { "core_id": 0, @@ -241793,23 +22881,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95761795 + "ts": 0.2558338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9576295 + "ts": 0.255849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.95764325 + "ts": 0.25586425 }, { "core_id": 1, @@ -241819,23 +22907,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9577475 + "ts": 0.256666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.957756975 + "ts": 0.25668 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9577706 + "ts": 0.256695125 }, { "core_id": 0, @@ -241845,23 +22933,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95861795 + "ts": 0.2568338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.95862955 + "ts": 0.256849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.958643175 + "ts": 0.25686425 }, { "core_id": 1, @@ -241871,23 +22959,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9587475 + "ts": 0.257666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.958756975 + "ts": 0.257680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9587706 + "ts": 0.257695225 }, { "core_id": 0, @@ -241897,23 +22985,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95961795 + "ts": 0.2578338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9596295 + "ts": 0.2578492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.959643125 + "ts": 0.257864425 }, { "core_id": 1, @@ -241923,23 +23011,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9597475 + "ts": 0.258666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.959757 + "ts": 0.25867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.959770775 + "ts": 0.2586951 }, { "core_id": 0, @@ -241949,23 +23037,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96061795 + "ts": 0.2588338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9606295 + "ts": 0.258849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.960643125 + "ts": 0.25886425 }, { "core_id": 1, @@ -241975,23 +23063,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9607475 + "ts": 0.259666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.960756975 + "ts": 0.259680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9607706 + "ts": 0.25969535 }, { "core_id": 0, @@ -242001,23 +23089,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96161795 + "ts": 0.2598338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9616295 + "ts": 0.259849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.96164325 + "ts": 0.25986425 }, { "core_id": 1, @@ -242027,23 +23115,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9617475 + "ts": 0.260666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.961756975 + "ts": 0.26068 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9617706 + "ts": 0.260695125 }, { "core_id": 0, @@ -242053,23 +23141,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96261795 + "ts": 0.2608338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9626326 + "ts": 0.260849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.962646225 + "ts": 0.26086425 }, { "core_id": 1, @@ -242079,23 +23167,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9627475 + "ts": 0.261666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.962756975 + "ts": 0.261680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9627706 + "ts": 0.261695225 }, { "core_id": 0, @@ -242105,23 +23193,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96361795 + "ts": 0.2618338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9636295 + "ts": 0.2618492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.963643125 + "ts": 0.261864425 }, { "core_id": 1, @@ -242131,23 +23219,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9637475 + "ts": 0.262666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.963757 + "ts": 0.262680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.963770775 + "ts": 0.26269535 }, { "core_id": 0, @@ -242157,23 +23245,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96461795 + "ts": 0.2628338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9646295 + "ts": 0.262849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.964643125 + "ts": 0.26286425 }, { "core_id": 1, @@ -242183,23 +23271,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9647475 + "ts": 0.263666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.964756975 + "ts": 0.26368 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9647706 + "ts": 0.263695125 }, { "core_id": 0, @@ -242209,23 +23297,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96561795 + "ts": 0.2638338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9656295 + "ts": 0.263849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.96564325 + "ts": 0.26386425 }, { "core_id": 1, @@ -242235,23 +23323,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9657475 + "ts": 0.264666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.965756975 + "ts": 0.264680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9657706 + "ts": 0.264695225 }, { "core_id": 0, @@ -242261,23 +23349,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96661795 + "ts": 0.2648338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.96662955 + "ts": 0.2648492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.966643175 + "ts": 0.264864425 }, { "core_id": 1, @@ -242287,23 +23375,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9667475 + "ts": 0.265666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.966756975 + "ts": 0.26567995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9667706 + "ts": 0.2656951 }, { "core_id": 0, @@ -242313,23 +23401,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96761795 + "ts": 0.2658338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9676295 + "ts": 0.265849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.967643125 + "ts": 0.26586425 }, { "core_id": 1, @@ -242339,23 +23427,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9677475 + "ts": 0.266666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.967757 + "ts": 0.266680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.967770775 + "ts": 0.26669535 }, { "core_id": 0, @@ -242365,23 +23453,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96861795 + "ts": 0.2668338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9686295 + "ts": 0.266849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.968643125 + "ts": 0.26686425 }, { "core_id": 1, @@ -242391,23 +23479,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9687475 + "ts": 0.267666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.968756975 + "ts": 0.26768 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9687706 + "ts": 0.267695125 }, { "core_id": 0, @@ -242417,23 +23505,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96961795 + "ts": 0.2678338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9696295 + "ts": 0.267849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.96964325 + "ts": 0.26786425 }, { "core_id": 1, @@ -242443,23 +23531,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9697475 + "ts": 0.268666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.969756975 + "ts": 0.268680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9697706 + "ts": 0.268695225 }, { "core_id": 0, @@ -242469,23 +23557,23 @@ "params": { "irq_num": 5 }, - "ts": 2.97061795 + "ts": 0.2688338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.97062955 + "ts": 0.2688492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.970643175 + "ts": 0.268864425 }, { "core_id": 1, @@ -242495,23 +23583,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9707475 + "ts": 0.269666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.970756975 + "ts": 0.26967995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9707706 + "ts": 0.2696951 }, { "core_id": 0, @@ -242521,23 +23609,23 @@ "params": { "irq_num": 5 }, - "ts": 2.97161795 + "ts": 0.2698338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9716295 + "ts": 0.269849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.971643125 + "ts": 0.26986425 }, { "core_id": 1, @@ -242547,23 +23635,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9717475 + "ts": 0.270666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.971757 + "ts": 0.270680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.971770775 + "ts": 0.27069535 }, { "core_id": 0, @@ -242573,23 +23661,23 @@ "params": { "irq_num": 5 }, - "ts": 2.97261795 + "ts": 0.2708338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9726295 + "ts": 0.270849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.972643125 + "ts": 0.27086425 }, { "core_id": 1, @@ -242599,23 +23687,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9727475 + "ts": 0.271666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.972756975 + "ts": 0.27168 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9727706 + "ts": 0.271695125 }, { "core_id": 0, @@ -242625,7 +23713,7 @@ "params": { "irq_num": 5 }, - "ts": 2.97361795 + "ts": 0.2718338 }, { "core_id": 0, @@ -242633,17 +23721,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.973629375 + "ts": 0.2718488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.973638825 + "ts": 0.271861575 }, { "core_id": 0, @@ -242651,40 +23739,42 @@ "id": 4, "in_irq": false, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.973652975 + "ts": 0.27187725 }, { "core_id": 0, "ctx_name": "alloc0", - "id": 6, + "id": 44, "in_irq": false, "params": { - "tid": 12280900 + "eAction": 2, + "pulPreviousNotificationValue": 0, + "ulValue": 0, + "xTaskToNotify": 12254080 }, - "ts": 2.97366405 + "ts": 0.271895625 }, { "core_id": 0, "ctx_name": "alloc0", - "id": 34, + "id": 6, "in_irq": false, "params": { - "xTicksToDelay": 100 + "tid": 12254080 }, - "ts": 2.973676575 + "ts": 0.271906575 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, + "ctx_name": "alloc0", + "id": 34, "in_irq": false, "params": { - "cause": 4, - "tid": 12287808 + "xTicksToDelay": 100 }, - "ts": 2.9736851 + "ts": 0.271919725 }, { "core_id": 0, @@ -242694,15 +23784,15 @@ "params": { "irq_num": 30 }, - "ts": 2.97369775 + "ts": 0.271936275 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9737065 + "ts": 0.27194765 }, { "core_id": 0, @@ -242710,32 +23800,33 @@ "id": 4, "in_irq": false, "params": { - "tid": 12280900 + "tid": 12254080 }, - "ts": 2.973722375 + "ts": 0.2719646 }, { "core_id": 0, "ctx_name": "main", - "id": 49, + "id": 37, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 + "xClearCountOnExit": 0, + "xTicksToWait": 4294967295 }, - "ts": 2.973737475 + "ts": 0.271982475 }, { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, "params": { - "irq_num": 5 + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 }, - "ts": 2.9737486 + "ts": 0.271998425 }, { "core_id": 0, @@ -242745,26 +23836,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.9737579 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.973766525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9737826 + "ts": 0.272014325 }, { "core_id": 0, @@ -242772,8 +23847,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3300) example: Got notify val 1\n", - "ts": 2.973801325 + "msg": "I (580) example: Got notify val 1\n", + "ts": 0.272063675 }, { "core_id": 0, @@ -242781,8 +23856,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3300) example: Got notify val 1\n", - "ts": 2.973801325 + "msg": "I (580) example: Got notify val 1\n", + "ts": 0.272063675 }, { "core_id": 0, @@ -242792,10 +23867,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.973813625 + "ts": 0.272079975 }, { "core_id": 0, @@ -242805,10 +23880,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.97382765 + "ts": 0.272095925 }, { "core_id": 0, @@ -242816,8 +23891,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3300) example: Wait notify 1\n", - "ts": 2.9738646 + "msg": "I (580) example: Wait notify 1\n", + "ts": 0.272140275 }, { "core_id": 0, @@ -242825,45 +23900,60 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3300) example: Wait notify 1\n", - "ts": 2.9738646 + "msg": "I (580) example: Wait notify 1\n", + "ts": 0.272140275 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12280900 + "irq_num": 30 }, - "ts": 2.97387465 + "ts": 0.27215865 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.27217005 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2721861 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 30 + "irq_num": 5 }, - "ts": 2.97388695 + "ts": 0.272666425 }, { - "core_id": 0, - "ctx_name": "IDLE0", + "core_id": 1, + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.97389565 + "ts": 0.27267995 }, { - "core_id": 0, - "ctx_name": "IDLE0", + "core_id": 1, + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.97391015 + "ts": 0.2726951 }, { "core_id": 0, @@ -242873,7 +23963,7 @@ "params": { "irq_num": 5 }, - "ts": 2.97461795 + "ts": 0.2728338 }, { "core_id": 0, @@ -242881,17 +23971,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.974629375 + "ts": 0.2728488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.974638825 + "ts": 0.272861575 }, { "core_id": 0, @@ -242899,40 +23989,42 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.974652975 + "ts": 0.272877375 }, { "core_id": 0, "ctx_name": "alloc1", - "id": 6, + "id": 44, "in_irq": false, "params": { - "tid": 12280900 + "eAction": 2, + "pulPreviousNotificationValue": 0, + "ulValue": 0, + "xTaskToNotify": 12254080 }, - "ts": 2.97466405 + "ts": 0.2728918 }, { "core_id": 0, "ctx_name": "alloc1", - "id": 34, + "id": 6, "in_irq": false, "params": { - "xTicksToDelay": 100 + "tid": 12254080 }, - "ts": 2.974674225 + "ts": 0.272902925 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, + "ctx_name": "alloc1", + "id": 34, "in_irq": false, "params": { - "cause": 4, - "tid": 12288672 + "xTicksToDelay": 100 }, - "ts": 2.9746828 + "ts": 0.27291605 }, { "core_id": 0, @@ -242942,15 +24034,15 @@ "params": { "irq_num": 30 }, - "ts": 2.974695575 + "ts": 0.27293265 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.974704275 + "ts": 0.272944025 }, { "core_id": 0, @@ -242958,32 +24050,33 @@ "id": 4, "in_irq": false, "params": { - "tid": 12280900 + "tid": 12254080 }, - "ts": 2.974720025 + "ts": 0.272960975 }, { "core_id": 0, "ctx_name": "main", - "id": 49, + "id": 37, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 + "xClearCountOnExit": 0, + "xTicksToWait": 4294967295 }, - "ts": 2.97473515 + "ts": 0.272974675 }, { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, "params": { - "irq_num": 5 + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 }, - "ts": 2.9747485 + "ts": 0.2729906 }, { "core_id": 0, @@ -242993,26 +24086,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.974757725 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9747669 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.974781625 + "ts": 0.273006525 }, { "core_id": 0, @@ -243020,8 +24097,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3301) example: Got notify val 1\n", - "ts": 2.974797575 + "msg": "I (581) example: Got notify val 1\n", + "ts": 0.273056 }, { "core_id": 0, @@ -243029,8 +24106,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3301) example: Got notify val 1\n", - "ts": 2.974797575 + "msg": "I (581) example: Got notify val 1\n", + "ts": 0.273056 }, { "core_id": 0, @@ -243040,10 +24117,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.97481 + "ts": 0.2730723 }, { "core_id": 0, @@ -243053,10 +24130,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.974824 + "ts": 0.27308825 }, { "core_id": 0, @@ -243064,8 +24141,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3301) example: Wait notify 2\n", - "ts": 2.974860925 + "msg": "I (581) example: Wait notify 2\n", + "ts": 0.2731326 }, { "core_id": 0, @@ -243073,45 +24150,60 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3301) example: Wait notify 2\n", - "ts": 2.974860925 + "msg": "I (581) example: Wait notify 2\n", + "ts": 0.2731326 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, "params": { - "cause": 27, - "tid": 12280900 + "irq_num": 30 }, - "ts": 2.97487105 + "ts": 0.273150975 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.273162375 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.27317855 + }, + { + "core_id": 1, + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 30 + "irq_num": 5 }, - "ts": 2.974883275 + "ts": 0.273666425 }, { - "core_id": 0, - "ctx_name": "IDLE0", + "core_id": 1, + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.974892 + "ts": 0.27367995 }, { - "core_id": 0, - "ctx_name": "IDLE0", + "core_id": 1, + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.974906475 + "ts": 0.2736951 }, { "core_id": 0, @@ -243121,7 +24213,7 @@ "params": { "irq_num": 5 }, - "ts": 2.97561795 + "ts": 0.2738338 }, { "core_id": 0, @@ -243129,17 +24221,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.975629375 + "ts": 0.2738488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.97563885 + "ts": 0.273861575 }, { "core_id": 0, @@ -243147,40 +24239,42 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.975653025 + "ts": 0.273877375 }, { "core_id": 0, "ctx_name": "alloc2", - "id": 6, + "id": 44, "in_irq": false, "params": { - "tid": 12280900 + "eAction": 2, + "pulPreviousNotificationValue": 0, + "ulValue": 0, + "xTaskToNotify": 12254080 }, - "ts": 2.97566405 + "ts": 0.2738918 }, { "core_id": 0, "ctx_name": "alloc2", - "id": 34, + "id": 6, "in_irq": false, "params": { - "xTicksToDelay": 100 + "tid": 12254080 }, - "ts": 2.97567415 + "ts": 0.273902925 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, + "ctx_name": "alloc2", + "id": 34, "in_irq": false, "params": { - "cause": 4, - "tid": 12289536 + "xTicksToDelay": 100 }, - "ts": 2.9756827 + "ts": 0.27391605 }, { "core_id": 0, @@ -243190,15 +24284,15 @@ "params": { "irq_num": 30 }, - "ts": 2.9756954 + "ts": 0.27393265 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.975704125 + "ts": 0.273944025 }, { "core_id": 0, @@ -243206,32 +24300,33 @@ "id": 4, "in_irq": false, "params": { - "tid": 12280900 + "tid": 12254080 }, - "ts": 2.97571985 + "ts": 0.273960975 }, { "core_id": 0, "ctx_name": "main", - "id": 49, + "id": 37, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 + "xClearCountOnExit": 0, + "xTicksToWait": 4294967295 }, - "ts": 2.975735025 + "ts": 0.273974675 }, { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, "params": { - "irq_num": 5 + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 }, - "ts": 2.97574835 + "ts": 0.2739906 }, { "core_id": 0, @@ -243241,26 +24336,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.975756525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.975764875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9757796 + "ts": 0.274006525 }, { "core_id": 0, @@ -243268,8 +24347,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3302) example: Got notify val 1\n", - "ts": 2.975795775 + "msg": "I (582) example: Got notify val 1\n", + "ts": 0.274051775 }, { "core_id": 0, @@ -243277,18 +24356,21 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3302) example: Got notify val 1\n", - "ts": 2.975795775 + "msg": "I (582) example: Got notify val 1\n", + "ts": 0.274051775 }, { "core_id": 0, "ctx_name": "main", - "id": 33, + "id": 49, "in_irq": false, "params": { - "xTaskToDelete": 12280900 + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 }, - "ts": 3.096449025 + "ts": 0.330505425 }, { "core_id": 0, @@ -243296,7 +24378,7 @@ "id": 11, "in_irq": false, "params": {}, - "ts": 3.096456075 + "ts": 0.330514125 } ], "streams": { diff --git a/tools/esp_app_trace/test/sysview/gdbinit b/tools/esp_app_trace/test/sysview/gdbinit index 50dffef2d86d..6a17ec20f270 100644 --- a/tools/esp_app_trace/test/sysview/gdbinit +++ b/tools/esp_app_trace/test/sysview/gdbinit @@ -6,14 +6,14 @@ maintenance flush register-cache b heap_trace_start commands clear heap_trace_start -mon esp32 sysview start file://cpu0.svdat file://cpu1.svdat +mon esp sysview start file://heap_log0.svdat file://heap_log1.svdat c end b heap_trace_stop commands clear heap_trace_stop -mon esp32 sysview stop +mon esp sysview stop end c diff --git a/tools/esp_app_trace/test/sysview/gdbinit-mcore b/tools/esp_app_trace/test/sysview/gdbinit-mcore new file mode 100644 index 000000000000..e559db8db3a6 --- /dev/null +++ b/tools/esp_app_trace/test/sysview/gdbinit-mcore @@ -0,0 +1,19 @@ +target remote :3333 + +mon reset halt +maintenance flush register-cache + +b heap_trace_start +commands +clear heap_trace_start +mon esp sysview_mcore start file://heap_log_mcore.svdat +c +end + +b heap_trace_stop +commands +clear heap_trace_stop +mon esp sysview_mcore stop +end + +c diff --git a/tools/esp_app_trace/test/sysview/heap_log0.svdat b/tools/esp_app_trace/test/sysview/heap_log0.svdat new file mode 100644 index 0000000000000000000000000000000000000000..30f3c9e764b772b99605444598d990500d98eea5 GIT binary patch literal 12298 zcmeHNe{fXQ72fQ7Z#N0aLRRBA*hzN)JJMn5dvAY6`(~PK7T8WgGRXqYbUK+$*t8iD zG96#igy@1A$x`|ka|^PPM5-ClURXHH^Kd+Wjl9{kr3nK2_$?`gQVy(4kgoYut8 z6N@}^)bIIJh^x4}@IbdHhobdQ6H;q@Km(5&2MdvcfehzRcVR#Hm^D@tliU*SkNAyR-2A{ zPjHQkPWEf?G_ls^J5SkNMbXItZEkdWw6UfleAa>OAZyR6iFS(^9%Ajv$~A(kFgm$h ztBhgrW)WM8jLpi*=R}taS_*45!o|-Bt^(*$wfec0vDI{`;>AXFWS!tDhOd0|6~-Q5 zSNqx5x~l_PLv>i*E7DLwY$z{Dbl;FRduBK)uVn+5Q%iwXNp!L*Yq1$}V@z(Wj?9Tv z9}}rlVVw%=>=9gUh*YU_ZdHu+o)ul!L9ds3t1H5(?!#!Rv1)_^&#i+Y!^Mo5dQ z4f1w&O*uC38d!Cotj(^dkELecr%+3Ini%0zsii(e&*t-L4OP+F#+kJZu^j@^%jeS~ zv6;xA-_c!seywh9jr=^_#TUSa0^9s+x++tfQPJ6FZL3cmbIv6gxho%L9rA zyntl_Wd(qK(V9rTvfV*V;2k#A*9F%E_!jv_G>%lwh%6PU59tPdN+b5|bs)0?$TqnV z*@m6>69ofEHV^=E7<;=Vx;zBEL}BbpvLVY^9~*L*s2)TGDd{1%NXY6SDhPN!GURV5 zI|Nm&re=0ywBizLdbOH5Y@Vd~2>P^eMR;ZeI!*}1>t@;Bwim4b{WmnTdFtC$=cw z+`8Z=o|=X8?w+4`Eql`G?IgLVh@Y!mEdr$zTGf{3j(Qc|39@I2h=7nwT^ zuY%|5d<&i{jl;HV+^s^PXxj@wZaz3{2BhD3!DA&5`R3{&6A)Zve_=kvN!#)Z@I#VX zz_jGELMgWBR{iw+Lv{!DJS)Hx?^*}r=5f=1#`pjiiy^QF1KA{I*6D&V@W~0vxMcq+ z35;`TQK4<8)9=J4tln_(#7Je-bBkAzr+O0i#P4dGpSaBvi?`qTBl#Y0OG{HQo@oB@ zZ62EPct>KMNA)z_+mUGZ{J_HkLLpxWtory5{Z5!=9P_AyV5}A=<(2Kpx0ju8x{o`E zg`YZ*Sopveh_%yYmyQ<*%biFpyv7Q#j$-s+Cq!Ez*5cxPh?O1yV!=m>Sjq(;7BuOe zj99QR*z+6^>r)XWg{@6QtgUdX9K>3|h_#1^)nx{Rqs!JJB-UOt5L_e@YwwV>9f$=V zj93a13t9*9RvBVJ47I;AF9;6oxgWCgV7_~kQ^eK_`F3f&By<9K zr|f?l?wEs7|1PFf^)fPQ|6wyc98b0&qYj)j!@@-ZqaaRNn_qw*j8Q72T5Qp+7^6rYa(ez!8OG)KPeVDP2SG01hsYW7NL!21a#dQq{%$5k{%zjEa}fGcqc`F{&x3 zBBQoV@H=6akx^X|!B~UDdJ$69Kb-DkELGhHG&?k&%=D1pewn%GTaw}7UJ}!Ef2C;R zq;FFm)j!fgAI*3m@f8e#{EWP$=8pF?sLr3SAmZ(HswfU%Q2DdLfYj> zWG9S??D0$@yDX+?=d9k9${+>rx z^N#2qW;SyML~ag&lh~C)2<$qN0PSBYSIp6NsOw26^NB3?Z*Kt zc+Z1~buVB&fs*ASPvf~ zQd|O3tTb120-z9HZvbgfCN7T+O&&=Z#0q9ZUc>>?C(uY~HiYSg`?F zk;Cvl9%o>M(FADw>yxd@J)0EeNQz|{bAN=HdwTo(F4mN!fEQD8XNHG+$n$9KrVu!+ zRLFE8)(K-PfHU_k26HF5`((><&(3XePVSqS+}EPJ8|A*+T<(N{H*F5=QmWbz?2TiC z9o^j_kEg&|mAjf5)A8Y3ByKu23 zZm~I5kmL1WU?CUCnLuvG^LeexU6Hd2TsoEb>WW zBG@u6kXzZ6Mte6Va;A5$RlR$&!6upktgf1etqUGj6O6i^R zcT)_U1jyf4eF9)}Se^xc4_MZFmgR+H1gq0K@9!W1IH|yL{@3PuCk%X*&VePpcOuv+ zW9ywemC@-vv$B@;o>k0*R9|XkQ>THc-TTA3VkYJ9L)ZL0$B|^FZZPwAT5Kn`*c>a! z-@B0&E-sMM`{@3jW<|MWy=P0ni>%Q3`^(w>4iZ4UZ#MULQw$tfc36jCzcn^kPVc%M zZ3e7my=QG+*l%|_z3ctmSkG@W*Lx3QDCID4U`g*EVBmMTKyGC%_SW=6B_0tT>CT$g!o(?eBiovfi^@AUNUzU)JAEF>qkX-&Vk?+8{N8*FZW_p6rmo}Jv{BP*No_ijg~p2y?{zxKiDJnr8YU-S2`=I^-J zISz4|zhfX@9&#>_+u!|u%X-gdMHA=mQ1uz=dDy=LD~7?}A05Tt%`k8hAh5j{n4`q~ z$f$P{fA{+>>peTUHFNcR%HJO|?%z@Gzc<%AVYrEtF$b3I-w|wp3*=UIbblW?uk-t@ z>fN7RxzYX|lUqvf`r~=ydEKe6w10mPxbf%z-{bjdPJE-#X19I7UN+n#Ov;0}68r$`59!4`V`2J@iJ!&idlabHo;AJ_ zvMO_=4ZqFPTNlP5^lx3@^+Uz>vZIo_M<`hgZ(Z#8D?60aZ_?9<{v^^HAG;9IYCyEX z1W~7G_%-2+45G!-2qL{=O%Uz3fJi@t9+3)&&KM9K>E%z}&Wm3=BE2k45Iy8FOv=Ab KEXx~r#Qq<^q$F(s literal 0 HcmV?d00001 diff --git a/tools/esp_app_trace/test/sysview/heap_log1.svdat b/tools/esp_app_trace/test/sysview/heap_log1.svdat new file mode 100644 index 0000000000000000000000000000000000000000..5133eb868359d72bc594d43e33b34fa97e165457 GIT binary patch literal 9669 zcmeHNZEzFk5w=fvl4Xb-iMqoyKcp!$9WrH_yVIRMLT?&d7PdMT_E-Wklj*3oky{5F zJT{qIPZkdT-d3~k+pP^Rwgd%BZO z)){l9@CX08-S^|3+udjP-B+HTKixGu-rQ2ZV7?3gBEizqV3jNKe9OXkn#nX*u%)Rv-qKQE=L*fQ&7Yp1qyFV@{N&%%WLu(Z>7+!@=JG@$ zam$pmjI!}Fr5VlfcvZ9_;woxtYN)TRUI=fURwBh)n%w-ffV5~~e11#yvY{PFPnL^|SD0-1p(%c;IEs@u z(kO8(ip9lyX`2lsPL^V@_-&KT3L0Ljno}HYCrddu3gy8LlkE{0637tFJuI&l<>9o| z9w|~DU=Pq_D=!M%A%?uyC(SAggxHnx#(pAkAlXAxcvgy*vau)|D-X^NmS3WYl9QF3 ztn4<~959n7$~h%bSvySICV|#XwB<#Cr24eHtpI9H-S&#Sttcy#+YZoVTMtpH+YZUw zdWkl*Z6C1^?~_U^LlterCcK{rXn|n{E$U{a8C4bGSfFwi+hrmePStQnh~3=0s^NFb zbKI)N4RgQ`Zb6DvhS)8#01;3b;+By2yTQhlA^v4q02^0^+%L(3PYUr7cBj0?j{>d% zuM4a+tEeiPw7$R*iF=DgguoMt-%hXzZYfd{s)&_UM54P)7+!)P1*2scLF>s|1W~G- z6K403w+J2-IEXC>5Wy=|1tY<#*};6`}~A8Hfd+ju!`Gh zCL+Wgiu_TN?NJ!Tcq3sPEGZ2xp@|N|4Rl-#bqCBC*&d8GHiprL%EcrEJs5020E}VO zb}?kR540qNQJ0Xn^vgPV%Wp}jdyzq$y5$xIquPrMf;d;U>?GO2%S++#tXQb%wk*1( za3zX^#2#Kj3KRv(f}r@)^hn3doKuu_^^HMhGF{(P%O<82qR`PlIAS`OpL0Ifdh_qe zF|Pglg(%#3@fsQXEZ3U&W{}CH8>{Q*?|PyTh2d9V?6xiEOzva3Ir}Jz*-JT=S3NM)ZTtocqcPM6=;Fs`7K%?V<%ms1Y{`tXDSy4jC`EeNrKc106#OUI2ocy@2t^kdx!XZXm*1ik0N1z`1Gwq>7V|pRrBeCjQZ(^tqN8yJ63;O)Whnpt3|Az z7EsKwJnOmRss;HGQz44IAE*|5*JMV`V%qUOLr`{F@SAW#_HTL(-2Bc&$1St{ve|lg zP_a7y!4C^jI(S;O`gO{TnztcJmNAYOXd0#U7RtFH&#}Q`zhx%Fhn$piIper!Cc}TV za0LfXX>7E@qOs8mi)y3y^9UbavM8qFvzw|$tkpABjh9DLtt*6&-ZrHB(QjHQ=Qk4^ z8)^Fm3&rf5>{v(JKc^|?&@RfcfwrHA$HVZr9>(GEPuj7VR?lx1-y?KtmnCzVl#k|{qS@Swgl1w+?2Nw4OehBA&zz@<1#INOaM!fzm6|e0o z{=4UNjhEz~Yly#FAOA_9*Zw@m$0qx$fd9h=$7=*XQXKFj0Z*1u&Nh{Ay`%Z|8?F5> znN|C*RPh@jnuzxQ2jcJ5$KM0?KWSC$-}9_&fAEBsQU+Nt9;zajJ0CDrF^Q}-f`Jh2 zluWcf2vkyj3DLe7O|*iqlwn8#sAxs{r8xYiOy?; zXg<~ct=Dxc8WOEbO%!iDE8~Y_rc5*=^+;R&jO=hnevXIt_vOWeXlG=iy{94CxjPc= z^HiX2PdZv)jS$VRI(p66j)sbstOz4YMZjZovZ5XQ--#x$Mu=9e5^bA4{ws1tJ1SSS zTk}Q}?KlukP83+*&Wt8nMxsa~T1PTb2&@sJ)u{I0ua6&z)~hDE&G);a?PSP7b(fK9 zGU_Bd9{QynfE6af;q#tUwA0{dIC?>=fc@tA(L`IR&8TTaTcJ4GZG>o~ogzoa?y((x zMs@UONk^w29ed@9kUTnOsc3Cl{FhUSLaAti+X&I-szmG6$A3&y(UvHQBJJpSPE*lV zK_{Qls%79$Bid>u(YcKfEnce}-LLB7*H*Np4=dW(U1=tl(<|CB4biYi$mr2BjxJYH zfx269w8se1>QqPH9nDwIcWp5Y6XS9o;pyqc5lx?O2wI_Nf}Eco~wVqGb>*OOGb_jS!7oh7h84 z>*GJJsc5bLr;6q`LNt$R|1b3MKdfkYqpHWFJDyJOaYYk(BSiD6jvgMbqq9}C%Rn@^ zwbMU3uF@VIze-hPrNR ztM=cdj~|Kl2Q|@sRDb_(9kFgapv!srhljW19|-mt=@Zi{8s2)1S73#o*6>C~^{|kBV BXQcoD literal 0 HcmV?d00001 diff --git a/tools/esp_app_trace/test/sysview/heap_log_mcore.svdat b/tools/esp_app_trace/test/sysview/heap_log_mcore.svdat index 47df37c5d652b1503e6cf234e8d3df608cc8cd30..6a5b07cda831afe128c177e58ad7240cc23cd315 100644 GIT binary patch literal 19619 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ⅇbkmmAyk{drg?IM1HRt!vjk6HLL`J_62f}*AH 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 diff --git a/tools/esp_app_trace/test/sysview/sysview_tracing_heap_log.elf b/tools/esp_app_trace/test/sysview/sysview_tracing_heap_log.elf index 0e4e3c77f0f28915c8e044c2cb95256532e46b6c..05d483d7859e780ae72547cc6e41581defa5cd75 100644 GIT binary patch literal 3124788 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 z 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%0AVKf0q;-9JG+T> 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�tl*wNn@iZr9=HhTs{`UuyB({7PEzk%4uc|O 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׮jDn79&%U_$H=6Jm#$*Z_=)qX}ojdZ{Y-ItW&X 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

mg##8xAyO#2yC`dqi%wwpc76Vvj_qh&>J>_DF<^ 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

b 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

  • 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

    pxzDW*dO9186M@C*wx6{AKC+*JZ6M3&*_@%@0 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

      6r`(|$cbz9y{P<8t>g5@ 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

      yZPw?oUUC7 zvj8-x?-Um8qU76}Cjw`7>hlfhq+P2TXkB{KZqT(FFYI_XM69+5vcf}cd=n&VcIHXj zt$Xhp?XnHMPEeostT*SjXK!SsYpTarT$!bUnns%y4K`(bt7y5ZXNA5xpPs&W9NXR& z2EQ$>t}YFJIQFawHJ*NWu>37c$DelMxPP1ZsmnQ}UT?2yebK$3wGBgP3vR(S^m^~W zo#2C%O~w)9o_2e(y9L96{~cpl?ZepUjv;JL5@D)i*HACa3hxGXEHw}J++vgM{K=zh z87hZQQAZAZm)ADvQsyaC;|jy8LAVZpn5aEBbR($(Veg_T>E*XD8;Y=+Ab zYR4AZrQ>{n(!=hc5PpC*AO?nG^I@9Dq8|NG_(*@;aYNvhb?$lMq_SS}owZ<19%^}z zTsezI-$$;NE@#dXHZ^6t8Cu9VX&v8ElsluJyjP985prT%1q%q$er#z})aY!wlGQ}_ zwod`CziIGN+m&n7PK}>KO8jk8!`wxAdE>l^46uy$63INq$2&F%4e!|CzdYx~e+_De zoDyf`C~_99p(G1fn|x_IF^@KQ#{}CVC9+LMm-}sI-H0YX26aesuZv%#l|jYqiIjLD zX*Uq#_i#zCp9VGt2opBrF~Lq3HSl@7!^Qx$#!^MAI<(-I zUh6#?1ZMzcgtadGGH66H-KrwjYcAJ zOHV7ATjs{A$c_JcFE>d2?nuTcx|6wa-QR#4|EdXU>ct|3HhcQ2qZg?WckkuKxYQWy z=pL5u*{{md3L+w@H1Z6vG0U_f)coYeWH4t3BPaAxpeI_mHq z_{4b~>S)z4OHQDU>|N2+Js2iil*?SX(eVW85-Lf;_}~D)NgI z*WNj_Cdt=(=#&0*=g~5D7?DTtuTB>XAy*oUxluhwM&6{x-K2v4!oWdXqAgW0@)1Fw zd6Xr6_&g@@B}%tA2K3I1-;}aPMh)Kk#8P}PX4dye@W>1EPd&@v9GeBymK$ooSQ#@_ZfSyL=FtCw9t?zh(?GN z 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%0D^)h8gOue@YYUzrkaCuJVnIJMUr9|cqm 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

      8Kyd0j`0a)E}Gq(f9snt= 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⪪%pwDY#9>RTt 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 Dwmkkm literal 2718952 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

      h$ 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