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 c0598906c8..2919162bf5 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 105bcba9c7..f19265a7c0 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 @@ class SysViewEventParam: Returns ------- tuple - a tuple containg number of read bytes and decoded value. + a tuple containing number of read bytes and decoded value. """ pass @@ -900,7 +900,7 @@ class SysViewTraceDataProcessor(apptrace.TraceDataProcessor): # empty list means IDLE context or self.start_ctx self.ctx_stack[t.core_id] = [] # context is undefined, we do not know have we started the tracing in task/IDLE or IRQ context - # in general there are three scenarious when we can start tracing: when core is in task, IDLE task or IRQ context + # in general there are three scenarios when we can start tracing: when core is in task, IDLE task or IRQ context self.prev_ctx[t.core_id] = None def _get_curr_context(self, core_id): @@ -963,13 +963,13 @@ class SysViewTraceDataProcessor(apptrace.TraceDataProcessor): 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 @@ class SysViewHeapTraceDataParser(SysViewTraceDataExtEventParser): """ 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 0000000000..4f09f1677c --- /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 66fb4d31f0..0000000000 --- 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 501b9729dc..0000000000 Binary files a/tools/esp_app_trace/test/sysview/cpu0.svdat and /dev/null differ 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 d339cd190d..0000000000 Binary files a/tools/esp_app_trace/test/sysview/cpu1.svdat and /dev/null differ diff --git a/tools/esp_app_trace/test/sysview/expected_output b/tools/esp_app_trace/test/sysview/expected_output index 8d90f69d04..a342a494cd 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[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[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[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[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[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[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[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[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[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[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[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[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[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[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[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[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[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[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[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[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[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[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[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[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[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[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[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[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[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.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.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.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.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.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.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.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.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.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.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 -Found 374 leaked bytes in 6 blocks. +[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.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.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.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.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.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 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 ea5ab64374..4a42e26841 100644 --- a/tools/esp_app_trace/test/sysview/expected_output.json +++ b/tools/esp_app_trace/test/sysview/expected_output.json @@ -2,2085 +2,1665 @@ "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, - "params": { - "name": "esp_timer", - "prio": 22, - "tid": 12253880 - }, - "ts": 0.0016474 - }, - { - "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, - "params": { - "name": "esp_timer", - "prio": 22, - "tid": 12253880 - }, - "ts": 0.0016474 - }, - { - "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, - "params": { - "base": 1073408692, - "sz": 3436, - "tid": 12253880, - "unused": 0 - }, - "ts": 0.001652 - }, - { - "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, - "params": { - "base": 1073408692, - "sz": 3436, - "tid": 12253880, - "unused": 0 - }, - "ts": 0.001652 - }, - { - "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, + "in_irq": false, "params": { "name": "ipc0", "prio": 24, - "tid": 12254636 + "tid": 12253204 }, - "ts": 0.00173855 + "ts": 0.001056 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 9, - "in_irq": true, + "in_irq": false, "params": { "name": "ipc0", "prio": 24, - "tid": 12254636 + "tid": 12253204 }, - "ts": 0.00173855 + "ts": 0.001056 }, { "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": 1073410064, + "sz": 1344, + "tid": 12253204, "unused": 0 }, - "ts": 0.00174275 + "ts": 0.001061525 }, { "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": 1073410064, + "sz": 1344, + "tid": 12253204, "unused": 0 }, - "ts": 0.00174275 + "ts": 0.001061525 }, { "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 + "tid": 12253560 }, - "ts": 0.001828975 + "ts": 0.00117065 }, { "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 + "tid": 12253560 }, - "ts": 0.001828975 + "ts": 0.00117065 }, { "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": 1073431024, + "sz": 1344, + "tid": 12253560, "unused": 0 }, - "ts": 0.001833225 + "ts": 0.0011759 }, { "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": 1073431024, + "sz": 1344, + "tid": 12253560, "unused": 0 }, - "ts": 0.001833225 + "ts": 0.0011759 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 9, - "in_irq": true, - "params": { - "name": "blink_task", - "prio": 5, - "tid": 12291908 - }, - "ts": 0.001871225 - }, - { - "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, - "params": { - "name": "blink_task", - "prio": 5, - "tid": 12291908 - }, - "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 - }, - { - "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, - "params": { - "base": 1073448452, - "sz": 524, - "tid": 12291908, - "unused": 0 - }, - "ts": 0.00187565 - }, - { - "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, + "in_irq": false, "params": { "name": "main", "prio": 1, - "tid": 12282660 + "tid": 12254080 }, - "ts": 0.0020708 + "ts": 0.001327475 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 9, - "in_irq": true, + "in_irq": false, "params": { "name": "main", "prio": 1, - "tid": 12282660 + "tid": 12254080 }, - "ts": 0.0020708 + "ts": 0.001327475 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 21, - "in_irq": true, + "in_irq": false, "params": { - "base": 1073437472, - "sz": 3296, - "tid": 12282660, + "base": 1073433076, + "sz": 1916, + "tid": 12254080, "unused": 0 }, - "ts": 0.0020752 + "ts": 0.0013329 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 21, - "in_irq": true, + "in_irq": false, "params": { - "base": 1073437472, - "sz": 3296, - "tid": 12282660, + "base": 1073433076, + "sz": 1916, + "tid": 12254080, "unused": 0 }, - "ts": 0.0020752 + "ts": 0.0013329 }, { "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, - "params": { - "name": "IDLE0", - "prio": 0, - "tid": 12284560 - }, - "ts": 0.002153375 - }, - { - "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, - "params": { - "name": "IDLE0", - "prio": 0, - "tid": 12284560 - }, - "ts": 0.002153375 - }, - { - "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, - "params": { - "base": 1073441932, - "sz": 1236, - "tid": 12284560, - "unused": 0 - }, - "ts": 0.00215785 - }, - { - "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, - "params": { - "base": 1073441932, - "sz": 1236, - "tid": 12284560, - "unused": 0 - }, - "ts": 0.00215785 - }, - { - "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, - "params": { - "name": "IDLE1", - "prio": 0, - "tid": 12286460 - }, - "ts": 0.00222895 - }, - { - "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, - "params": { - "name": "IDLE1", - "prio": 0, - "tid": 12286460 - }, - "ts": 0.00222895 - }, - { - "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, - "params": { - "base": 1073443832, - "sz": 1112, - "tid": 12286460, - "unused": 0 - }, - "ts": 0.00223325 - }, - { - "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, - "params": { - "base": 1073443832, - "sz": 1112, - "tid": 12286460, - "unused": 0 - }, - "ts": 0.00223325 - }, - { - "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": "IRQ_oncore1", - "id": 9, - "in_irq": true, - "params": { - "name": "Tmr Svc", - "prio": 1, - "tid": 12289116 - }, - "ts": 0.002319675 - }, - { - "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, - "params": { - "base": 1073445976, - "sz": 1384, - "tid": 12289116, - "unused": 0 - }, - "ts": 0.0023241 - }, - { - "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, - "params": { - "base": 1073445976, - "sz": 1384, - "tid": 12289116, - "unused": 0 - }, - "ts": 0.0023241 - }, - { - "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, - "params": { - "name": "blink_task2", - "prio": 5, - "tid": 12294320 - }, - "ts": 0.0024312 - }, - { - "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 9, - "in_irq": true, - "params": { - "name": "blink_task2", - "prio": 5, - "tid": 12294320 - }, - "ts": 0.0024312 - }, - { - "core_id": 0, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, - "params": { - "base": 1073451180, - "sz": 1748, - "tid": 12294320, - "unused": 0 - }, - "ts": 0.00243875 - }, - { - "core_id": 1, - "ctx_name": "IRQ_oncore1", - "id": 21, - "in_irq": true, - "params": { - "base": 1073451180, - "sz": 1748, - "tid": 12294320, - "unused": 0 - }, - "ts": 0.00243875 - }, - { - "core_id": 0, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 27, - "in_irq": true, + "in_irq": false, "params": { "mod_cnt": 0 }, - "ts": 0.00244615 + "ts": 0.00134065 }, { "core_id": 1, - "ctx_name": "IRQ_oncore1", + "ctx_name": "IDLE1", "id": 27, - "in_irq": true, + "in_irq": false, "params": { "mod_cnt": 0 }, - "ts": 0.00244615 + "ts": 0.00134065 }, { "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.002484225 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12291908 - }, - "ts": 0.002496125 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.002508025 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", + "ctx_name": "SysTick", "id": 2, "in_irq": true, "params": { - "irq_num": 30 + "irq_num": 5 }, - "ts": 0.00251635 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12294320 - }, - "ts": 0.002524325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.00253235 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.0025412 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 4, - "in_irq": false, - "params": { - "tid": 12282660 - }, - "ts": 0.002548475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.002556375 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 33, - "in_irq": false, - "params": { - "xTaskToDelete": 12282660 - }, - "ts": 0.00256445 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0025777 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.002585225 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.00259295 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.00260595 + "ts": 0.001348325 }, { "core_id": 0, @@ -2090,7 +1670,15 @@ "params": { "irq_num": 5 }, - "ts": 0.00881955 + "ts": 0.0013597 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.001370975 }, { "core_id": 0, @@ -2098,9 +1686,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12291908 + "tid": 12254080 }, - "ts": 0.008828075 + "ts": 0.001381825 }, { "core_id": 1, @@ -2108,39 +1696,65 @@ "id": 6, "in_irq": false, "params": { - "tid": 12291908 + "tid": 12254080 }, - "ts": 0.008828075 + "ts": 0.001381825 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 3, + "in_irq": false, + "params": {}, + "ts": 0.0013969 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0014077 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.001419225 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.001430725 }, { "core_id": 0, "ctx_name": "main", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.008837475 - }, - { - "core_id": 0, - "ctx_name": "blink_task", "id": 4, "in_irq": false, "params": { - "tid": 12291908 + "tid": 12254080 }, - "ts": 0.00885045 + "ts": 0.001447075 }, { "core_id": 0, - "ctx_name": "blink_task", + "ctx_name": "main", "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.00887265 + "ts": 0.00147395 }, { "core_id": 1, @@ -2148,136 +1762,32 @@ "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.00887265 + "ts": 0.00147395 }, { - "core_id": 0, - "ctx_name": "blink_task", - "id": 6, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.008886175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.008886175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.008897425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.00890615 - }, - { - "addr": "0x3ffb8e08", + "addr": "0x3ffb70d8", "callers": [ - "0x400d1e63", - "0x40087834" + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6bef", + "0x400e693b", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0" ], "core_id": 0, - "ctx_name": "blink_task", + "ctx_name": "main", "id": 512, "in_irq": false, - "size": 64, - "ts": 0.0089199 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.00892825 - }, - { - "addr": "0x3ffb8e4c", - "callers": [ - "0x40087f1e", - "0x40088183" - ], - "core_id": 0, - "ctx_name": "blink_task", - "id": 512, - "in_irq": false, - "size": 80, - "ts": 0.00895795 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 47, - "in_irq": false, - "params": { - "ucQueueType": 4, - "uxItemSize": 0, - "uxQueueLength": 1 - }, - "ts": 0.00896725 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.0089773 - }, - { - "addr": "0x3ffb8ea0", - "callers": [ - "0x400d1da6", - "0x40087834" - ], - "core_id": 1, - "ctx_name": "blink_task2", - "id": 512, - "in_irq": false, - "size": 65, - "ts": 0.008984625 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.008995725 + "size": 8, + "ts": 0.00152955 }, { "core_id": 1, @@ -2287,299 +1797,153 @@ "params": { "irq_num": 5 }, - "ts": 0.009010075 + "ts": 0.0016694 }, { "core_id": 1, - "ctx_name": "blink_task2", + "ctx_name": "IDLE1", "id": 18, "in_irq": false, "params": {}, - "ts": 0.009018025 + "ts": 0.00168285 }, { "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, + "ctx_name": "IDLE1", + "id": 17, "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.0090319 + "params": {}, + "ts": 0.0016995 }, { - "addr": "0x3ffb5014", + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.00181295 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 3, + "in_irq": false, + "params": {}, + "ts": 0.00182845 + }, + { + "addr": "0x3ffb70e8", "callers": [ - "0x40087f1e", - "0x40088183" + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6c38", + "0x400e693b", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0" ], "core_id": 0, - "ctx_name": "blink_task", + "ctx_name": "main", "id": 512, "in_irq": false, - "size": 80, - "ts": 0.0090896 + "size": 2500, + "ts": 0.00186425 }, { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12294320 - }, - "ts": 0.009098175 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 47, - "in_irq": false, - "params": { - "ucQueueType": 4, - "uxItemSize": 0, - "uxQueueLength": 1 - }, - "ts": 0.0091063 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "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 - }, - "ts": 0.0091216 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "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 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.009145425 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 - }, - "ts": 0.0091696 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.009185225 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 6, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.009195125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.009195125 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.009207 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.009215575 - }, - { - "addr": "0x3ffb5068", + "addr": "0x3ffb7aec", "callers": [ - "0x400d1e73", - "0x40087834" + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6c38", + "0x400e693b", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0" ], "core_id": 0, - "ctx_name": "blink_task", + "ctx_name": "main", "id": 512, "in_irq": false, - "size": 96, - "ts": 0.009223275 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.00923105 + "size": 340, + "ts": 0.0019041 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 49, + "ctx_name": "main", + "id": 8, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 + "tid": 12286700 }, - "ts": 0.009241875 + "ts": 0.001926775 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 9, + "in_irq": false, + "params": { + "name": "alloc0", + "prio": 5, + "tid": 12286700 + }, + "ts": 0.0019394 }, { "core_id": 1, "ctx_name": "IDLE1", - "id": 7, + "id": 9, "in_irq": false, "params": { - "cause": 27, - "tid": 12294320 + "name": "alloc0", + "prio": 5, + "tid": 12286700 }, - "ts": 0.009257225 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.0092692 + "ts": 0.0019394 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 49, + "ctx_name": "main", + "id": 21, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 + "base": 1073443048, + "sz": 4294965096, + "tid": 12286700, + "unused": 0 }, - "ts": 0.009278275 + "ts": 0.0019485 }, { "core_id": 1, "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.009286275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.00930345 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 53, + "id": 21, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 + "base": 1073443048, + "sz": 4294965096, + "tid": 12286700, + "unused": 0 }, - "ts": 0.00931095 + "ts": 0.0019485 }, { "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.009329625 - }, - { - "core_id": 0, - "ctx_name": "blink_task", + "ctx_name": "main", "id": 6, "in_irq": false, "params": { - "tid": 12294320 + "tid": 12286700 }, - "ts": 0.009339525 + "ts": 0.0019592 }, { "core_id": 1, @@ -2587,638 +1951,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12294320 + "tid": 12286700 }, - "ts": 0.009339525 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.009351425 - }, - { - "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", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0093678 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.00937895 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.00938745 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12294320 - }, - "ts": 0.009402575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.0094149 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 - }, - "ts": 0.009423125 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.00943025 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 - }, - "ts": 0.009445425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.009453075 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.009469225 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 6, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.009479025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.009479025 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.00949095 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.009499475 - }, - { - "addr": "0x3ffb8e08", - "callers": [ - "0x400d1e8f", - "0x40087834" - ], - "core_id": 0, - "ctx_name": "blink_task", - "id": 512, - "in_irq": false, - "size": 10, - "ts": 0.0095076 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.0095153 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.0095261 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12294320 - }, - "ts": 0.00954155 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "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 - }, - "ts": 0.0095611 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0095684 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.009585075 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 - }, - "ts": 0.009593375 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.00960915 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 6, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.009621875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.009621875 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.009633775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0096423 - }, - { - "addr": "0x3ffb8e18", - "callers": [ - "0x400d1e9c", - "0x40087834" - ], - "core_id": 0, - "ctx_name": "blink_task", - "id": 512, - "in_irq": false, - "size": 23, - "ts": 0.009649475 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.009657875 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.009666025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12294320 - }, - "ts": 0.0096815 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.009693375 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 - }, - "ts": 0.0097028 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.00971055 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.009726725 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 - }, - "ts": 0.010504825 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.01052065 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 6, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.01053055 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.01053055 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.0105424 - }, - { - "addr": "0x3ffb8e18", - "callers": [ - "0x400d1eab", - "0x40087834" - ], - "core_id": 0, - "ctx_name": "blink_task", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.010550025 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.01055745 - }, - { - "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", - "id": 4, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.0105777 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "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 - }, - "ts": 0.01060595 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 - }, - "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 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 - }, - "ts": 0.01224095 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.012256775 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 6, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.01226665 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.01226665 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.01228135 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12291908 - }, - "ts": 0.012289475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.01229745 + "ts": 0.0019592 }, { "core_id": 0, @@ -3228,513 +1963,180 @@ "params": { "irq_num": 30 }, - "ts": 0.01230635 + "ts": 0.001974775 }, { - "core_id": 1, - "ctx_name": "blink_task2", + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.00198615 + }, + { + "core_id": 0, + "ctx_name": "alloc0", "id": 4, "in_irq": false, "params": { - "tid": 12294320 + "tid": 12286700 }, - "ts": 0.012312875 + "ts": 0.0020025 }, { - "core_id": 0, - "ctx_name": "IDLE0", - "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 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0123381 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 - }, - "ts": 0.012640475 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 - }, - "ts": 0.01493185 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.014963325 - }, - { - "addr": "0x3ffb50cc", + "addr": "0x3ffb7c50", "callers": [ - "0x400d1db7", - "0x40087834" + "0x40081fef", + "0x40089414", + "0x40088679", + "0x400d6aa4", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" ], - "core_id": 1, - "ctx_name": "blink_task2", + "core_id": 0, + "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 97, - "ts": 0.01498415 + "size": 124, + "ts": 0.002037875 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, + "core_id": 0, + "ctx_name": "alloc0", + "id": 47, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 + "ucQueueType": 0, + "uxItemSize": 4, + "uxQueueLength": 10 }, - "ts": 0.0149974 + "ts": 0.002052175 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 - }, - "ts": 0.01503105 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 - }, - "ts": 0.0176228 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.017638675 - }, - { - "addr": "0x3ffb8ea0", + "addr": "0x3ffb7cd0", "callers": [ - "0x400d1dc4", - "0x40087834" + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6ae0", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" ], - "core_id": 1, - "ctx_name": "blink_task2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.017656375 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.017674025 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 - }, - "ts": 0.0177017 - }, - { "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.01881955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.018829625 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.01884475 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.019010075 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.01901795 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12294320 - }, - "ts": 0.0190332 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 - }, - "ts": 0.019358925 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.0193746 - }, - { - "addr": "0x3ffb8e18", - "callers": [ - "0x400d1dd3", - "0x40087834" - ], - "core_id": 1, - "ctx_name": "blink_task2", + "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 11, - "ts": 0.019395425 + "size": 2500, + "ts": 0.0021074 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.0194126 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 - }, - "ts": 0.01944625 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 - }, - "ts": 0.0220499 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.022065775 - }, - { - "addr": "0x3ffb8e28", + "addr": "0x3ffb86d4", "callers": [ - "0x400d1de0", - "0x40087834" + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6ae0", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" ], - "core_id": 1, - "ctx_name": "blink_task2", + "core_id": 0, + "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 24, - "ts": 0.022086625 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.022103925 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 - }, - "ts": 0.02213755 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 - }, - "ts": 0.02474085 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.024756725 - }, - { - "addr": "0x3ffb8e28", - "callers": [ - "0x400d1def", - "0x40087834" - ], - "core_id": 1, - "ctx_name": "blink_task2", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.024770475 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12291660, - "xTicksToWait": 4294967295 - }, - "ts": 0.02479175 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12275732, - "xTicksToWait": 4294967295 - }, - "ts": 0.0248195 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12275732, - "xTicksToWait": 0 - }, - "ts": 0.02647695 - }, - { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12291660, - "xTicksToWait": 0 - }, - "ts": 0.0264957 + "size": 340, + "ts": 0.0021418 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 6, + "ctx_name": "alloc0", + "id": 8, "in_irq": false, "params": { - "tid": 12291908 + "tid": 12289748 }, - "ts": 0.026506975 + "ts": 0.0021685 }, { - "core_id": 1, - "ctx_name": "blink_task2", - "id": 6, + "core_id": 0, + "ctx_name": "alloc0", + "id": 9, "in_irq": false, "params": { - "tid": 12291908 + "name": "free0", + "prio": 5, + "tid": 12289748 }, - "ts": 0.026506975 + "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.026518525 + "ts": 0.002181 }, { "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, + "ctx_name": "alloc0", + "id": 21, + "in_irq": false, "params": { - "irq_num": 30 + "base": 1073446096, + "sz": 4294965088, + "tid": 12289748, + "unused": 0 }, - "ts": 0.026526625 + "ts": 0.00219015 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073446096, + "sz": 4294965088, + "tid": 12289748, + "unused": 0 + }, + "ts": 0.00219015 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc0", + "id": 6, "in_irq": false, - "params": {}, - "ts": 0.026535575 + "params": { + "tid": 12289748 + }, + "ts": 0.002200975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.002200975 }, { "core_id": 1, @@ -3744,17 +2146,7 @@ "params": { "irq_num": 31 }, - "ts": 0.026544075 - }, - { - "core_id": 0, - "ctx_name": "blink_task", - "id": 4, - "in_irq": false, - "params": { - "tid": 12291908 - }, - "ts": 0.02655165 + "ts": 0.00221635 }, { "core_id": 1, @@ -3762,52 +2154,23867 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0265595 + "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": "IDLE1", - "id": 17, + "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.148816725 + "ts": 0.002308975 }, { "core_id": 0, - "ctx_name": "blink_task", + "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": 1 + "xTicksToDelay": 30 }, - "ts": 0.14882575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12291908 - }, - "ts": 0.1488332 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 11, - "in_irq": false, - "params": {}, - "ts": 0.14883925 + "ts": 0.0026673 }, { "core_id": 1, - "ctx_name": "IDLE1", + "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": 9, + "in_irq": false, + "params": { + "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.2566694 + }, + { + "core_id": 1, + "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.2566981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2568132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2568287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.256843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2576694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.257682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.257698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2578132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2578286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.257843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2586694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.258682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.258698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2588132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2588287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.258843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2596694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.259682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.259698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2598132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2598287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.259843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2606694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.260682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2606981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2608132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2608287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.260843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2616694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.261682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.261698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2618132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2618286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.261843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2626694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.262682925 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.2628132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2628287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.262843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2636694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.263682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2636981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2638132 + }, + { + "core_id": 0, + "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": { + "irq_num": 5 + }, + "ts": 0.2646694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.264682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.264698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2648132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2648286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.264843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2656694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.265682925 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.2658132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2658287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.265843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2666694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.266682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.266698325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2668132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2668287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.266843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2676694 + }, + { + "core_id": 1, + "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.2676981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2678132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2678287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.267843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2686694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.268682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.268698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2688132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2688286 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.268843825 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2696694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.269682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.269698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2698132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2698287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.269843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2706694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.270682925 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.2708132 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2708287 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.270843775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2716694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.271682975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2716981 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2718132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12286700 + }, + "ts": 0.271828325 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.271828325 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.271840975 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.27185665 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 44, + "in_irq": false, + "params": { + "eAction": 2, + "pulPreviousNotificationValue": 0, + "ulValue": 0, + "xTaskToNotify": 12254080 + }, + "ts": 0.27187515 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.271886225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.271886225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 100 + }, + "ts": 0.271899375 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.271915925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2719273 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.27194425 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 37, + "in_irq": false, + "params": { + "xClearCountOnExit": 0, + "xTicksToWait": 4294967295 + }, + "ts": 0.271962125 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.271978075 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.271993975 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (580) example: Got notify val 1\n", + "ts": 0.2720432 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (580) example: Got notify val 1\n", + "ts": 0.2720432 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.2720595 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.27207545 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (580) example: Wait notify 1\n", + "ts": 0.2721198 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (580) example: Wait notify 1\n", + "ts": 0.2721198 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.272138175 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.272149575 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.272165625 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2726694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.272682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.272698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2728132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.272828325 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.272828325 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.272840975 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.272856775 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 44, + "in_irq": false, + "params": { + "eAction": 2, + "pulPreviousNotificationValue": 0, + "ulValue": 0, + "xTaskToNotify": 12254080 + }, + "ts": 0.2728712 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.2728822 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.2728822 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 100 + }, + "ts": 0.272895325 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.272911925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2729233 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.27294025 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 37, + "in_irq": false, + "params": { + "xClearCountOnExit": 0, + "xTicksToWait": 4294967295 + }, + "ts": 0.27295395 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.272969875 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.272985925 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (581) example: Got notify val 1\n", + "ts": 0.273035525 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (581) example: Got notify val 1\n", + "ts": 0.273035525 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.273051825 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.273067775 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (581) example: Wait notify 2\n", + "ts": 0.27311225 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (581) example: Wait notify 2\n", + "ts": 0.27311225 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.273130625 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.273142025 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.273158075 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2736694 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.273682925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.273698075 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2738132 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.273828325 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.273828325 + }, + { + "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": { + "tid": 12298716 + }, + "ts": 0.273856775 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 44, + "in_irq": false, + "params": { + "eAction": 2, + "pulPreviousNotificationValue": 0, + "ulValue": 0, + "xTaskToNotify": 12254080 + }, + "ts": 0.2738712 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.2738822 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.2738822 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 100 + }, + "ts": 0.273895325 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.273911925 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2739233 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.27394025 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 37, + "in_irq": false, + "params": { + "xClearCountOnExit": 0, + "xTicksToWait": 4294967295 + }, + "ts": 0.27395395 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.273969875 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.273985925 + }, + { + "core_id": 0, + "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": 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": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.329656225 + }, + { + "core_id": 0, + "ctx_name": "main", "id": 11, "in_irq": false, "params": {}, - "ts": 0.14883925 + "ts": 0.32966495 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 11, + "in_irq": false, + "params": {}, + "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 cacefccfc5..7e621cef33 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 +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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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 +[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 -Found 17520 leaked bytes in 18 blocks. +[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 c6c03e982a..5cc8728b17 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,9 +799,9 @@ "params": { "name": "main", "prio": 1, - "tid": 12280900 + "tid": 12254080 }, - "ts": 0.0023185 + "ts": 0.001331775 }, { "core_id": 0, @@ -834,87 +809,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073435712, - "sz": 2416, - "tid": 12280900, + "base": 1073433076, + "sz": 1916, + "tid": 12254080, "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 - }, - "ts": 0.0025996 - }, - { - "core_id": 0, - "ctx_name": "IDLE1", - "id": 21, - "in_irq": false, - "params": { - "base": 1073444216, - "sz": 1352, - "tid": 12287356, - "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,7 +852,17 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.002637475 + "ts": 0.0013738 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12254080 + }, + "ts": 0.00138475 }, { "core_id": 0, @@ -960,53 +870,7 @@ "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, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.002662925 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.00267075 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "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 }, { - "addr": "0x3ffb888c", + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.001696525 + }, + { + "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,78 +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, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.004126475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "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", + "ctx_name": "free0", "id": 17, "in_irq": false, "params": {}, - "ts": 0.0041737 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (330) example: Task[0x3ffb7f40]: allocated 2 bytes @ 0x3ffb828c\n", - "ts": 0.004291975 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (330) example: Task[0x3ffb7f40]: allocated 2 bytes @ 0x3ffb828c\n", - "ts": 0.004291975 + "ts": 0.002338225 }, { "core_id": 0, @@ -1580,10 +1337,41 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12288168, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 0.004303075 + "ts": 0.0023724 + }, + { + "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.002611675 + }, + { + "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.002611675 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "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 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "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 + "ts": 0.00267345 }, { "core_id": 1, "ctx_name": "free0", - "id": 4, + "id": 18, "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.00436355 + "params": {}, + "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": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.00270915 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.002720075 }, { "core_id": 1, "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 0.004380175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", "id": 18, "in_irq": false, "params": {}, - "ts": 0.004388875 + "ts": 0.002731625 }, { "core_id": 0, @@ -1681,9 +1453,19 @@ "id": 4, "in_irq": false, "params": { - "tid": 12280900 + "tid": 12254080 }, - "ts": 0.004405225 + "ts": 0.0027421 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.0027596 }, { "core_id": 1, @@ -1692,34 +1474,21 @@ "in_irq": false, "params": { "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 }, - "ts": 0.00441405 + "ts": 0.00277655 }, { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.004430975 - }, - { - "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,7 +1648,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00457775 + "ts": 0.002988 }, { "core_id": 0, @@ -1843,73498 +1656,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 0.004592525 + "ts": 0.00300485 }, { - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 0.004644525 - }, - { - "addr": "0x3ffb8408", - "callers": [ - "0x4008a2a6", - "0x400d3a80", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 120, - "ts": 0.004654925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 47, - "in_irq": false, - "params": { - "ucQueueType": 0, - "uxItemSize": 4, - "uxQueueLength": 10 - }, - "ts": 0.00466545 - }, - { - "addr": "0x3ffba5e4", - "callers": [ - "0x4008b4df", - "0x400d3abd", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 2500, - "ts": 0.004694775 - }, - { - "addr": "0x3ffb8484", - "callers": [ - "0x4008b4ed", - "0x400d3abd", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 356, - "ts": 0.00471815 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 8, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.004751775 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 9, - "in_irq": false, - "params": { - "name": "free1", - "prio": 5, - "tid": 12289156 - }, - "ts": 0.004762675 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 21, - "in_irq": false, - "params": { - "base": 1073456612, - "sz": 2204, - "tid": 12289156, - "unused": 0 - }, - "ts": 0.004769375 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.004777425 - }, - { - "addr": "0x3ffb85ec", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc1", - "id": 512, - "in_irq": false, - "size": 4, - "ts": 0.0048012 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.004813875 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.00482785 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (330) example: Task[0x3ffb8124]: free memory @ 0x3ffb828c\n", - "ts": 0.004936525 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (330) example: Task[0x3ffb8124]: free memory @ 0x3ffb828c\n", - "ts": 0.004936525 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.004947675 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.00495715 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 0.0049712 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (331) example: Task[0x3ffb82a0]: allocated 4 bytes @ 0x3ffb85ec\n", - "ts": 0.004990925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (331) example: Task[0x3ffb82a0]: allocated 4 bytes @ 0x3ffb85ec\n", - "ts": 0.004990925 - }, - { - "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.00500315 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 0.005011525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 0.005023375 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.0050333 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.005042275 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 0.00505055 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "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 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 0.005077825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0050864 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 0.00509575 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 4, - "in_irq": false, - "params": { - "tid": 12280900 - }, - "ts": 0.0051052 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "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 - }, - { - "addr": "0x3ffbafac", - "callers": [ - "0x4008b4df", - "0x400d3c04", - "0x400d0ac5", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "main", - "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 - }, - { - "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 - }, - { - "addr": "0x3ffb8600", - "callers": [ - "0x4008b4ed", - "0x400d3c04", - "0x400d0ac5", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "main", - "id": 512, - "in_irq": false, - "size": 356, - "ts": 0.005205975 - }, - { - "addr": "0x3ffb85ec", - "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.005214875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 0.005236175 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 8, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.005247025 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.00525555 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 9, - "in_irq": false, - "params": { - "name": "alloc2", - "prio": 5, - "tid": 12289536 - }, - "ts": 0.00526545 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 21, - "in_irq": false, - "params": { - "base": 1073459116, - "sz": 2196, - "tid": 12289536, - "unused": 0 - }, - "ts": 0.005273425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.005281875 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.005290525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.005307225 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.005321225 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.00532995 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 0.005344575 - }, - { - "addr": "0x3ffb8768", - "callers": [ - "0x4008a2a6", - "0x400d3a80", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 120, - "ts": 0.005369825 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 47, - "in_irq": false, - "params": { - "ucQueueType": 0, - "uxItemSize": 4, - "uxQueueLength": 10 - }, - "ts": 0.005383475 - }, - { - "addr": "0x3ffbb974", - "callers": [ - "0x4008b4df", - "0x400d3abd", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 2500, - "ts": 0.00541335 - }, - { - "addr": "0x3ffb49a8", - "callers": [ - "0x4008b4ed", - "0x400d3abd", - "0x40089bbc", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 0, - "ctx_name": "alloc2", - "id": 512, - "in_irq": false, - "size": 356, - "ts": 0.00543725 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 8, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.00546805 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 9, - "in_irq": false, - "params": { - "name": "free2", - "prio": 5, - "tid": 12274088 - }, - "ts": 0.005479125 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 21, - "in_irq": false, - "params": { - "base": 1073461620, - "sz": 2204, - "tid": 12274088, - "unused": 0 - }, - "ts": 0.005485675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.005493825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.005507775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0055182 - }, - { - "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": 6, - "ts": 0.005526475 - }, - { - "core_id": 1, - "ctx_name": "free2", - "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 - }, - "ts": 0.0055529 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.00556785 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.005576775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.005585 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.005603325 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "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": "alloc2", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 3, - "in_irq": false, - "params": {}, - "ts": 0.005655825 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 0.00566755 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 0.005677625 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.005690575 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.0056993 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "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 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.005736825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 0.005745075 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "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 - }, - { - "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 - }, - "ts": 0.0058008 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 0.0058175 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 0.005833675 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "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 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "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 - }, - { - "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, - "in_irq": false, - "params": {}, - "ts": 0.0059875 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.00661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0066295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.006643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "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 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.00761795 - }, - { - "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", + "addr": "0x3ffb93d0", "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x40088679", + "0x400d6aa4", + "0x40088d94", "0x0", "0x0", "0x0", @@ -75346,131215 +1679,49 @@ "id": 512, "in_irq": false, "size": 124, - "ts": 0.90467695 + "ts": 0.0030403 }, { "core_id": 0, "ctx_name": "alloc1", - "id": 49, + "id": 47, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 + "ucQueueType": 0, + "uxItemSize": 4, + "uxQueueLength": 10 }, - "ts": 0.904689625 + "ts": 0.0030546 }, { - "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", + "addr": "0x3ffb9450", "callers": [ - "0x400d3b82", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6ae0", + "0x40088d94", "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, + "id": 512, "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.524652975 + "size": 2500, + "ts": 0.00309395 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffb9e54", "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6ae0", + "0x40088d94", "0x0", "0x0", "0x0", @@ -206566,90 +1733,42 @@ "id": 512, "in_irq": false, "size": 340, - "ts": 2.524677 + "ts": 0.00312835 }, { "core_id": 0, "ctx_name": "alloc1", - "id": 49, + "id": 8, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 + "tid": 12295764 }, - "ts": 2.5246897 + "ts": 0.0031551 }, { "core_id": 0, "ctx_name": "alloc1", - "id": 53, + "id": 9, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 + "name": "free1", + "prio": 5, + "tid": 12295764 }, - "ts": 2.524703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5247475 + "ts": 0.0031676 }, { "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, + "id": 21, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 + "base": 1073452112, + "sz": 4294965088, + "tid": 12295764, + "unused": 0 }, - "ts": 2.52478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.524800125 + "ts": 0.003176775 }, { "core_id": 0, @@ -206657,2334 +1776,18 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.5248109 + "ts": 0.003187575 }, { - "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", + "addr": "0x3ffb9fb8", "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", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", @@ -208995,2426 +1798,17 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 344, - "ts": 2.554677 + "size": 2, + "ts": 0.0032237 }, { - "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", + "addr": "0x3ffb9fc8", "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", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", "0x0", "0x0", "0x0", @@ -211425,8 +1819,8 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 348, - "ts": 2.584677 + "size": 4, + "ts": 0.0032581 }, { "core_id": 0, @@ -211436,10 +1830,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.5846897 + "ts": 0.003275 }, { "core_id": 0, @@ -211449,77 +1843,28 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.584703675 + "ts": 0.003296925 }, { "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.5847475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", + "ctx_name": "free0", "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (2911) example: Task[0x3ffb82a0]: allocated 348 bytes @ 0x3ffb4b10\n", - "ts": 2.584769475 + "msg": "I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848\n", + "ts": 0.00333965 }, { - "core_id": 0, - "ctx_name": "alloc1", + "core_id": 1, + "ctx_name": "free0", "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 + "msg": "I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848\n", + "ts": 0.00333965 }, { "core_id": 1, @@ -211529,7 +1874,77 @@ "params": { "irq_num": 31 }, - "ts": 2.58482275 + "ts": 0.0033598 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.00337125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.003388225 + }, + { + "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.00340705 + }, + { + "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.00340705 + }, + { + "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": [ + "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.0034343 }, { "core_id": 0, @@ -211539,36 +1954,7 @@ "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 + "ts": 0.003446125 }, { "core_id": 0, @@ -211578,7 +1964,74 @@ "params": { "irq_num": 30 }, - "ts": 2.58486885 + "ts": 0.0034648 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.00347875 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.003492825 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.003504725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0035156 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.00353485 + }, + { + "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.003547175 }, { "core_id": 1, @@ -211586,20 +2039,12 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, "xTicksToWait": 4294967295 }, - "ts": 2.584877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.58488605 + "ts": 0.003564225 }, { "core_id": 1, @@ -211609,18 +2054,31 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.584895425 + "ts": 0.0035829 }, { + "addr": "0x3ffb9fd8", + "callers": [ + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6c38", + "0x400e693b", + "0x40088d94", + "0x0", + "0x0", + "0x0", + "0x0" + ], "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, + "ctx_name": "main", + "id": 512, "in_irq": false, - "params": {}, - "ts": 2.584904625 + "size": 2500, + "ts": 0.003600675 }, { "core_id": 1, @@ -211630,37 +2088,149 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.58491945 + "ts": 0.0036134 }, { - "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", + "addr": "0x3ffba9dc", "callers": [ - "0x400d3b82", - "0x40089bbc", + "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.003639925 + }, + { + "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.003663425 + }, + { + "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.003663425 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 8, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.0036748 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.003691 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 9, + "in_irq": false, + "params": { + "name": "alloc2", + "prio": 5, + "tid": 12298716 + }, + "ts": 0.003703775 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 21, + "in_irq": false, + "params": { + "base": 1073455064, + "sz": 4294965096, + "tid": 12298716, + "unused": 0 + }, + "ts": 0.00371475 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 6, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.00372765 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0037451 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.00375595 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.003766625 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.003777475 + }, + { + "addr": "0x3ffb9fc8", + "callers": [ + "0x4008e674", + "0x400d6bb2", + "0x40088d94", + "0x0", + "0x0", "0x0", "0x0", "0x0", @@ -211672,18 +2242,17 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.5849843 + "ts": 0.003792825 }, { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, "params": { - "cause": 27, - "tid": 12289156 + "tid": 12298716 }, - "ts": 2.58500535 + "ts": 0.00380445 }, { "core_id": 1, @@ -211693,23 +2262,7 @@ "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 + "ts": 0.00382735 }, { "core_id": 0, @@ -211719,44 +2272,40 @@ "params": { "irq_num": 5 }, - "ts": 2.58561795 + "ts": 0.003839325 }, { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.585629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", + "core_id": 1, + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.5856388 + "ts": 0.0038505 }, { "core_id": 0, "ctx_name": "alloc2", - "id": 4, + "id": 3, "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.585652975 + "params": {}, + "ts": 0.003862175 }, { - "addr": "0x3ffb4b10", + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.00387205 + }, + { + "addr": "0x3ffbab40", "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40089414", + "0x40088679", + "0x400d6aa4", + "0x40088d94", "0x0", "0x0", "0x0", @@ -211767,2426 +2316,29 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 522, - "ts": 2.585676975 + "size": 124, + "ts": 0.0038881 }, { "core_id": 0, "ctx_name": "alloc2", - "id": 49, + "id": 47, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 + "ucQueueType": 0, + "uxItemSize": 4, + "uxQueueLength": 10 }, - "ts": 2.585689675 + "ts": 0.003902475 }, { - "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", + "addr": "0x3ffbabc0", "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", + "0x40081fef", + "0x40089414", + "0x4008b304", + "0x400d6ae0", + "0x40088d94", "0x0", "0x0", "0x0", @@ -214197,2426 +2349,17 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 528, - "ts": 2.615676975 + "size": 2500, + "ts": 0.003941825 }, { - "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", + "addr": "0x3ffbb5c4", "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", + "0x40081fef", + "0x40089414", + "0x4008b30f", + "0x400d6ae0", + "0x40088d94", "0x0", "0x0", "0x0", @@ -216627,91 +2370,43 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 534, - "ts": 2.645676975 + "size": 340, + "ts": 0.003976225 }, { "core_id": 0, "ctx_name": "alloc2", - "id": 49, + "id": 8, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 + "tid": 12301764 }, - "ts": 2.645689675 + "ts": 0.0040022 }, { "core_id": 0, "ctx_name": "alloc2", - "id": 53, + "id": 9, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 + "name": "free2", + "prio": 5, + "tid": 12301764 }, - "ts": 2.645703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.6457475 + "ts": 0.0040147 }, { "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, + "id": 21, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 + "base": 1073458112, + "sz": 4294965088, + "tid": 12301764, + "unused": 0 }, - "ts": 2.6457867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.645797075 + "ts": 0.004023875 }, { "core_id": 0, @@ -216719,9 +2414,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.64580785 + "ts": 0.004034675 }, { "core_id": 1, @@ -216731,2322 +2426,24 @@ "params": { "irq_num": 31 }, - "ts": 2.645820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.6458294 + "ts": 0.004050925 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.645837375 + "ts": 0.004063775 }, { - "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", + "addr": "0x3ffb9fc8", "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", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", @@ -219057,101 +2454,18 @@ "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 + "size": 3, + "ts": 0.00407545 }, { "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, + "ctx_name": "free2", + "id": 4, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 + "tid": 12301764 }, - "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 + "ts": 0.0040869 }, { "core_id": 1, @@ -219161,2322 +2475,16 @@ "params": { "irq_num": 31 }, - "ts": 2.675820875 + "ts": 0.004113275 }, { - "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", + "addr": "0x3ffbb728", "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", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", "0x0", "0x0", "0x0", @@ -221487,8 +2495,16 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 546, - "ts": 2.705676975 + "size": 6, + "ts": 0.004125025 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.00413645 }, { "core_id": 0, @@ -221498,80 +2514,62 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "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 + "ts": 0.004148425 }, { "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", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.705797075 + "ts": 0.0041587 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.0041771 + }, + { + "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.0042294 + }, + { + "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.0042294 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.0042464 }, { "core_id": 0, @@ -221579,9 +2577,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.70580785 + "ts": 0.00425955 }, { "core_id": 1, @@ -221591,7 +2589,7 @@ "params": { "irq_num": 31 }, - "ts": 2.705820875 + "ts": 0.004275825 }, { "core_id": 0, @@ -221601,36 +2599,15 @@ "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 + "ts": 0.004286675 }, { "core_id": 1, "ctx_name": "free2", - "id": 4, + "id": 18, "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.7058586 + "params": {}, + "ts": 0.00429745 }, { "core_id": 0, @@ -221640,7 +2617,25 @@ "params": { "irq_num": 30 }, - "ts": 2.705866975 + "ts": 0.004311325 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.004322125 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.004332975 }, { "core_id": 1, @@ -221648,20 +2643,22 @@ "id": 49, "in_irq": false, "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, "xTicksToWait": 4294967295 }, - "ts": 2.705879175 + "ts": 0.004344875 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "main", + "id": 4, "in_irq": false, - "params": {}, - "ts": 2.705887225 + "params": { + "tid": 12254080 + }, + "ts": 0.00435545 }, { "core_id": 1, @@ -221671,18 +2668,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.705895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.705905775 + "ts": 0.004367625 }, { "core_id": 1, @@ -221692,10 +2681,74 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.705920725 + "ts": 0.004394675 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.004405525 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.0044172 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.00442855 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.004446675 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.004461 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "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,18 +2787,25 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.70598545 + "ts": 0.004524 }, { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, + "core_id": 0, + "ctx_name": "main", + "id": 26, "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.706003575 + "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, @@ -221755,49 +2815,49 @@ "params": { "irq_num": 31 }, - "ts": 2.7060164 + "ts": 0.004553625 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.70602515 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7060406 + "ts": 0.0045677 }, { "core_id": 0, - "ctx_name": "SysTick", + "ctx_name": "FROM_CPU0", "id": 2, "in_irq": true, "params": { - "irq_num": 5 + "irq_num": 30 }, - "ts": 2.70661795 + "ts": 0.00458165 }, { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.70662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", + "core_id": 1, + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.706643175 + "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, @@ -221807,23 +2867,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7067475 + "ts": 0.004666675 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.706756975 + "ts": 0.0046801 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7067706 + "ts": 0.00469525 }, { "core_id": 0, @@ -221833,23 +2893,23 @@ "params": { "irq_num": 5 }, - "ts": 2.70761795 + "ts": 0.0048338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7076295 + "ts": 0.004849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.707643125 + "ts": 0.00486425 }, { "core_id": 1, @@ -221859,23 +2919,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7077475 + "ts": 0.005666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.707757 + "ts": 0.005680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.707770775 + "ts": 0.005695225 }, { "core_id": 0, @@ -221885,23 +2945,23 @@ "params": { "irq_num": 5 }, - "ts": 2.70861795 + "ts": 0.0058338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7086295 + "ts": 0.0058492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.708643125 + "ts": 0.005864425 }, { "core_id": 1, @@ -221911,23 +2971,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7087475 + "ts": 0.006666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.708756975 + "ts": 0.00667995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7087706 + "ts": 0.0066951 }, { "core_id": 0, @@ -221937,23 +2997,23 @@ "params": { "irq_num": 5 }, - "ts": 2.70961795 + "ts": 0.0068338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7096295 + "ts": 0.006849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.70964325 + "ts": 0.00686425 }, { "core_id": 1, @@ -221963,23 +3023,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7097475 + "ts": 0.007666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.709756975 + "ts": 0.007680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7097706 + "ts": 0.00769535 }, { "core_id": 0, @@ -221989,23 +3049,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71061795 + "ts": 0.0078338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7106326 + "ts": 0.007849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.710646225 + "ts": 0.00786425 }, { "core_id": 1, @@ -222015,23 +3075,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7107475 + "ts": 0.008666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.710756975 + "ts": 0.00868 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7107706 + "ts": 0.008695125 }, { "core_id": 0, @@ -222041,23 +3101,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71161795 + "ts": 0.0088338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7116295 + "ts": 0.008849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.711643125 + "ts": 0.008868 }, { "core_id": 1, @@ -222067,23 +3127,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7117475 + "ts": 0.009666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.711757 + "ts": 0.00967995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.711770775 + "ts": 0.0096951 }, { "core_id": 0, @@ -222093,23 +3153,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71261795 + "ts": 0.0098338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7126295 + "ts": 0.009849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.712643125 + "ts": 0.00986425 }, { "core_id": 1, @@ -222119,23 +3179,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7127475 + "ts": 0.010666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.712756975 + "ts": 0.010680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7127706 + "ts": 0.01069535 }, { "core_id": 0, @@ -222145,23 +3205,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71361795 + "ts": 0.0108338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7136295 + "ts": 0.010849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.71364325 + "ts": 0.01086425 }, { "core_id": 1, @@ -222171,23 +3231,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7137475 + "ts": 0.011666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.713756975 + "ts": 0.01168 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7137706 + "ts": 0.011695125 }, { "core_id": 0, @@ -222197,23 +3257,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71461795 + "ts": 0.0118338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.71462955 + "ts": 0.011849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.714643175 + "ts": 0.01186425 }, { "core_id": 1, @@ -222223,23 +3283,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7147475 + "ts": 0.012666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.714756975 + "ts": 0.012680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7147706 + "ts": 0.012695225 }, { "core_id": 0, @@ -222249,23 +3309,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71561795 + "ts": 0.0128338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7156295 + "ts": 0.0128492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.715643125 + "ts": 0.012864425 }, { "core_id": 1, @@ -222275,23 +3335,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7157475 + "ts": 0.013666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.715757 + "ts": 0.01367995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.715770775 + "ts": 0.0136951 }, { "core_id": 0, @@ -222301,23 +3361,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71661795 + "ts": 0.0138338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7166295 + "ts": 0.0138494 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.716643125 + "ts": 0.0138645 }, { "core_id": 1, @@ -222327,23 +3387,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7167475 + "ts": 0.014666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.716756975 + "ts": 0.014680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7167706 + "ts": 0.01469535 }, { "core_id": 0, @@ -222353,23 +3413,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71761795 + "ts": 0.0148338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7176295 + "ts": 0.014849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.71764325 + "ts": 0.01486425 }, { "core_id": 1, @@ -222379,23 +3439,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7177475 + "ts": 0.015666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.717756975 + "ts": 0.01568 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7177706 + "ts": 0.015695125 }, { "core_id": 0, @@ -222405,23 +3465,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71861795 + "ts": 0.0158338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.71862955 + "ts": 0.015849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.718643175 + "ts": 0.01586425 }, { "core_id": 1, @@ -222431,23 +3491,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7187475 + "ts": 0.016666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.718756975 + "ts": 0.016680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7187706 + "ts": 0.016695225 }, { "core_id": 0, @@ -222457,23 +3517,23 @@ "params": { "irq_num": 5 }, - "ts": 2.71961795 + "ts": 0.0168338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7196295 + "ts": 0.0168492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.719643125 + "ts": 0.016864425 }, { "core_id": 1, @@ -222483,23 +3543,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7197475 + "ts": 0.017666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.719757 + "ts": 0.01767995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.719770775 + "ts": 0.0176951 }, { "core_id": 0, @@ -222509,23 +3569,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72061795 + "ts": 0.0178338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7206295 + "ts": 0.017849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.720643125 + "ts": 0.01786425 }, { "core_id": 1, @@ -222535,23 +3595,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7207475 + "ts": 0.018666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.720756975 + "ts": 0.018680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7207706 + "ts": 0.01869535 }, { "core_id": 0, @@ -222561,23 +3621,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72161795 + "ts": 0.0188338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7216295 + "ts": 0.018849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.72164325 + "ts": 0.01886425 }, { "core_id": 1, @@ -222587,23 +3647,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7217475 + "ts": 0.019666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.721756975 + "ts": 0.01968 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7217706 + "ts": 0.019695125 }, { "core_id": 0, @@ -222613,23 +3673,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72261795 + "ts": 0.0198338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.722631925 + "ts": 0.019849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.72264555 + "ts": 0.01986425 }, { "core_id": 1, @@ -222639,23 +3699,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7227475 + "ts": 0.020666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.722756975 + "ts": 0.020680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7227706 + "ts": 0.020695225 }, { "core_id": 0, @@ -222665,23 +3725,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72361795 + "ts": 0.0208338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7236295 + "ts": 0.0208492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.723643125 + "ts": 0.020864425 }, { "core_id": 1, @@ -222691,23 +3751,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7237475 + "ts": 0.021666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.723757 + "ts": 0.021680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.723770775 + "ts": 0.02169535 }, { "core_id": 0, @@ -222717,23 +3777,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72461795 + "ts": 0.0218338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7246295 + "ts": 0.021849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.724643125 + "ts": 0.02186425 }, { "core_id": 1, @@ -222743,23 +3803,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7247475 + "ts": 0.022666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.724756975 + "ts": 0.02268 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7247706 + "ts": 0.022695125 }, { "core_id": 0, @@ -222769,23 +3829,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72561795 + "ts": 0.0228338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7256295 + "ts": 0.022849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.72564325 + "ts": 0.02286425 }, { "core_id": 1, @@ -222795,23 +3855,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7257475 + "ts": 0.023666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.725756975 + "ts": 0.023680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7257706 + "ts": 0.023695225 }, { "core_id": 0, @@ -222821,23 +3881,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72661795 + "ts": 0.0238338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.72662955 + "ts": 0.0238492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.726643175 + "ts": 0.023864425 }, { "core_id": 1, @@ -222847,23 +3907,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7267475 + "ts": 0.024666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.726756975 + "ts": 0.02467995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7267706 + "ts": 0.0246951 }, { "core_id": 0, @@ -222873,23 +3933,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72761795 + "ts": 0.0248338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7276295 + "ts": 0.024849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.727643125 + "ts": 0.02486425 }, { "core_id": 1, @@ -222899,23 +3959,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7277475 + "ts": 0.025666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.727757 + "ts": 0.025680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.727770775 + "ts": 0.02569535 }, { "core_id": 0, @@ -222925,23 +3985,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72861795 + "ts": 0.0258338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7286295 + "ts": 0.025849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.728643125 + "ts": 0.02586425 }, { "core_id": 1, @@ -222951,23 +4011,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7287475 + "ts": 0.026666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.728756975 + "ts": 0.02668 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7287706 + "ts": 0.026695125 }, { "core_id": 0, @@ -222977,23 +4037,23 @@ "params": { "irq_num": 5 }, - "ts": 2.72961795 + "ts": 0.0268338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7296295 + "ts": 0.026849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.72964325 + "ts": 0.02686425 }, { "core_id": 1, @@ -223003,23 +4063,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7297475 + "ts": 0.027666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.729756975 + "ts": 0.027680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7297706 + "ts": 0.027695225 }, { "core_id": 0, @@ -223029,23 +4089,23 @@ "params": { "irq_num": 5 }, - "ts": 2.73061795 + "ts": 0.0278338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.73062955 + "ts": 0.0278492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.730643175 + "ts": 0.027864425 }, { "core_id": 1, @@ -223055,23 +4115,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7307475 + "ts": 0.028666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.730756975 + "ts": 0.02867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7307706 + "ts": 0.0286951 }, { "core_id": 0, @@ -223081,23 +4141,23 @@ "params": { "irq_num": 5 }, - "ts": 2.73161795 + "ts": 0.0288338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7316295 + "ts": 0.028849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.731643125 + "ts": 0.02886425 }, { "core_id": 1, @@ -223107,23 +4167,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7317475 + "ts": 0.029666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.731757 + "ts": 0.029680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.731770775 + "ts": 0.02969535 }, { "core_id": 0, @@ -223133,23 +4193,23 @@ "params": { "irq_num": 5 }, - "ts": 2.73261795 + "ts": 0.0298338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7326295 + "ts": 0.029849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.732643125 + "ts": 0.02986425 }, { "core_id": 1, @@ -223159,23 +4219,23 @@ "params": { "irq_num": 5 }, - "ts": 2.7327475 + "ts": 0.030666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.732756975 + "ts": 0.03068 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.7327706 + "ts": 0.030695125 }, { "core_id": 0, @@ -223185,7 +4245,59 @@ "params": { "irq_num": 5 }, - "ts": 2.73361795 + "ts": 0.0308338 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.030849175 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.03086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.031666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.031680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.031695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "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,18 +4323,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.733652975 + "ts": 0.03187725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb728", "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", @@ -223233,2426 +4345,17 @@ "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 184, - "ts": 2.733677 + "size": 2, + "ts": 0.031912575 }, { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.733692775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.733706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7337475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3060) example: Task[0x3ffb7f40]: allocated 184 bytes @ 0x3ffb4b10\n", - "ts": 2.73376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.733785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.733795925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.7338067 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.733819725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.73382825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7338362 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.733844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.73385735 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.73386575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.73387405 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.733882925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.733892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.733901625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.73391645 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3060) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.7339657 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3060) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.7339657 - }, - { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb738", "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.733984175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.734002175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.73401485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.73402365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.734039225 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.73461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.734629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7346388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.734652975 - }, - { - "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": 368, - "ts": 2.734677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.7346897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.734703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7347475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3061) example: Task[0x3ffb82a0]: allocated 368 bytes @ 0x3ffb4b10\n", - "ts": 2.734769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.73478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.73479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.734809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.73482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.734831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.73483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.734847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.734860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.73486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.734877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.73488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.734895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.734904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.73491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3061) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.7349687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3061) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.7349687 - }, - { - "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.7349843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.73500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.73501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.73502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.735042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.73561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.735629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7356388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.735652975 - }, - { - "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": 552, - "ts": 2.735676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.735689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.735703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7357475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3062) example: Task[0x3ffb8600]: allocated 552 bytes @ 0x3ffb4b10\n", - "ts": 2.73576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.7357867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.735797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.73580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.735820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.7358294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.735837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.73584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.7358586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.735866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.73587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.735887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.735895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.735905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.73592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3062) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.7359701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3062) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.7359701 - }, - { - "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.735985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.7360036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.736016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7360252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.73604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.73661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.73662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.736643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.736756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.73761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.737643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.737757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.737770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.73861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.738643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.738756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.73961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.73964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.739756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.74061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7406326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.740646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.740756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.74161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.741643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.741757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.741770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.74261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.742643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.742756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.74361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7436295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.74364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7437475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.743756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7437706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.74461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.74462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.744643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7447475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.744756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7447706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.74561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7456295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.745643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7457475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.745757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.745770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.74661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7466295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.746643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7467475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.746756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7467706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.74761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7476295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.74764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7477475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.747756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7477706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.74861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.74862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.748643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7487475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.748756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7487706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.74961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7496295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.749643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7497475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.749757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.749770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.75061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7506295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.750643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7507475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.750756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7507706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.75161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7516295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.75164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7517475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.751756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7517706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.75261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.752631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.75264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7527475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.752756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7527706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.75361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7536295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.753643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7537475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.753757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.753770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.75461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7546295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.754643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7547475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.754756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7547706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.75561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7556295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.75564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7557475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.755756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7557706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.75661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.75662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.756643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.756756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.75761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.757643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.757757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.757770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.75861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.758643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.758756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.75961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.75964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.759756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.76061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.76062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.760643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.760756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.76161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.761643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.761757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.761770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.76261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.762643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.762756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.76361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.763629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.763638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.763652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", "0x0", "0x0", "0x0", @@ -225663,8 +4366,8 @@ "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 186, - "ts": 2.763677 + "size": 4, + "ts": 0.0319512 }, { "core_id": 0, @@ -225674,10 +4377,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.763692775 + "ts": 0.0319681 }, { "core_id": 0, @@ -225687,20 +4390,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.031984075 }, { "core_id": 0, @@ -225708,8 +4401,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3090) example: Task[0x3ffb7f40]: allocated 186 bytes @ 0x3ffb4b10\n", - "ts": 2.76376895 + "msg": "I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738\n", + "ts": 0.03204825 }, { "core_id": 0, @@ -225717,16 +4410,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 (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738\n", + "ts": 0.03204825 }, { "core_id": 0, @@ -225736,18 +4421,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.032061825 }, { "core_id": 0, @@ -225755,9 +4432,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.7638067 + "ts": 0.03207495 }, { "core_id": 1, @@ -225767,7 +4444,7 @@ "params": { "irq_num": 31 }, - "ts": 2.763819725 + "ts": 0.03209115 }, { "core_id": 0, @@ -225777,36 +4454,15 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.76382825 + "ts": 0.032102025 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7638362 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.763844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.76385735 + "ts": 0.0321128 }, { "core_id": 0, @@ -225816,7 +4472,25 @@ "params": { "irq_num": 30 }, - "ts": 2.76386575 + "ts": 0.0321267 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.0321375 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.03214835 }, { "core_id": 1, @@ -225824,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.76387405 + "ts": 0.032160325 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc0", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.763882925 + "ts": 0.03217055 }, { "core_id": 1, @@ -225847,18 +4521,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.032182025 }, { "core_id": 1, @@ -225868,10 +4534,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.76391645 + "ts": 0.0322023 }, { "core_id": 1, @@ -225879,8 +4545,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3090) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.7639657 + "msg": "I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738\n", + "ts": 0.03226585 }, { "core_id": 1, @@ -225888,15 +4554,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3090) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.7639657 + "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", @@ -225910,18 +4576,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.763984175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.764002175 + "ts": 0.03228705 }, { "core_id": 1, @@ -225931,23 +4586,49 @@ "params": { "irq_num": 31 }, - "ts": 2.76401485 + "ts": 0.032313925 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.76402365 + "ts": 0.03232535 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 17, "in_irq": false, "params": {}, - "ts": 2.764039225 + "ts": 0.03234205 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.032666425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.03267985 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.03269555 }, { "core_id": 0, @@ -225957,7 +4638,7 @@ "params": { "irq_num": 5 }, - "ts": 2.76461795 + "ts": 0.0328338 }, { "core_id": 0, @@ -225965,17 +4646,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.764629375 + "ts": 0.0328488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7646388 + "ts": 0.032861575 }, { "core_id": 0, @@ -225983,18 +4664,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.764652975 + "ts": 0.032877375 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb738", "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", @@ -226005,2426 +4686,17 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 372, - "ts": 2.764677 + "size": 4, + "ts": 0.0329126 }, { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.7646897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.764703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7647475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3091) example: Task[0x3ffb82a0]: allocated 372 bytes @ 0x3ffb4b10\n", - "ts": 2.764769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.76478905 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.76479895 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.764809725 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.76482275 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.764831275 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.76483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.764847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.764860475 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.76486885 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.764877175 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.76488605 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.764895425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.764904625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.76491945 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3091) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.7649687 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3091) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.7649687 - }, - { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb748", "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.7649843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.76500535 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.76501805 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.76502685 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.765042425 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.76561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.765629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7656388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.765652975 - }, - { - "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": 558, - "ts": 2.765676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.765689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.765703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7657475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3092) example: Task[0x3ffb8600]: allocated 558 bytes @ 0x3ffb4b10\n", - "ts": 2.76576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.7657867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.765797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.76580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.765820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.7658294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.765837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.76584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.7658586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.765866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.76587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.765887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.765895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.765905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.76592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3092) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.7659701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3092) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.7659701 - }, - { - "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.765985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.7660036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.766016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7660252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.76604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.76661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.76662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.766643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.766756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.76761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.767643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.767757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.767770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.76861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7686295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.768643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.768756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.76961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.76964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.769756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7697706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.77061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7706326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.770646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.770756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.77161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.771643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.771757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.771770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.77261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7726295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.772643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.772756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.77361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.77364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.773756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7737706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.77461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.77462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.774643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.774756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.77561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.775643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.775757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.775770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.77661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7766295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.776643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.776756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.77761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.77764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.777756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7777706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.77861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.77862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.778643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.778756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.77961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.779643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.779757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.779770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.78061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7806295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.780643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.780756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.78161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.78164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.781756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7817706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.78261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.782631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.78264555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.782756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.78361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7836295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.783643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7837475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.783757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.783770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.78461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7846295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.784643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7847475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.784756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7847706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.78561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7856295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.78564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7857475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.785756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7857706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.78661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.78662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.786643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.786756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.78761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.787643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.787757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.787770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.78861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.788643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.788756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.78961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.78964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.789756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.79061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.79062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.790643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.790756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.79161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.791643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.791757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.791770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.79261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.792643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.792756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.79361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.793629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.793638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.793652975 - }, - { - "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": 188, - "ts": 2.793677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.793692775 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.793706775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7937475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3120) example: Task[0x3ffb7f40]: allocated 188 bytes @ 0x3ffb4b10\n", - "ts": 2.79376895 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.793785775 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.793795925 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.7938067 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.793819725 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.79382825 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7938362 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.793844725 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.79385735 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.79386575 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.79387405 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.793882925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.793892325 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.793901625 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.79391645 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3120) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.7939657 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3120) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.7939657 - }, - { - "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.793984175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.794002175 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.79401485 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.79402365 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.794039225 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.79461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.794629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7946388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.794652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", "0x0", "0x0", "0x0", @@ -228435,8 +4707,8 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 376, - "ts": 2.794677 + "size": 8, + "ts": 0.03294715 }, { "core_id": 0, @@ -228446,10 +4718,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.7946897 + "ts": 0.032964075 }, { "core_id": 0, @@ -228459,20 +4731,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.03298425 }, { "core_id": 0, @@ -228480,8 +4742,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3121) example: Task[0x3ffb82a0]: allocated 376 bytes @ 0x3ffb4b10\n", - "ts": 2.794769475 + "msg": "I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748\n", + "ts": 0.0330485 }, { "core_id": 0, @@ -228489,16 +4751,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 (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748\n", + "ts": 0.0330485 }, { "core_id": 0, @@ -228508,18 +4762,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.033062225 }, { "core_id": 0, @@ -228527,9 +4773,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.794809725 + "ts": 0.03307545 }, { "core_id": 1, @@ -228539,7 +4785,7 @@ "params": { "irq_num": 31 }, - "ts": 2.79482275 + "ts": 0.0330917 }, { "core_id": 0, @@ -228549,36 +4795,15 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.794831275 + "ts": 0.03310255 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.79483925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.794847825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.794860475 + "ts": 0.0331133 }, { "core_id": 0, @@ -228588,7 +4813,25 @@ "params": { "irq_num": 30 }, - "ts": 2.79486885 + "ts": 0.033127025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.0331378 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.03314855 }, { "core_id": 1, @@ -228596,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.794877175 + "ts": 0.03316055 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc1", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.79488605 + "ts": 0.033171875 }, { "core_id": 1, @@ -228619,18 +4862,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.0331841 }, { "core_id": 1, @@ -228640,10 +4875,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.79491945 + "ts": 0.033200475 }, { "core_id": 1, @@ -228651,8 +4886,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3121) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.7949687 + "msg": "I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748\n", + "ts": 0.033263975 }, { "core_id": 1, @@ -228660,15 +4895,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3121) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.7949687 + "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", @@ -228682,18 +4917,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.7949843 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.79500535 + "ts": 0.0332885 }, { "core_id": 1, @@ -228703,23 +4927,49 @@ "params": { "irq_num": 31 }, - "ts": 2.79501805 + "ts": 0.033315625 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.79502685 + "ts": 0.03332705 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 17, "in_irq": false, "params": {}, - "ts": 2.795042425 + "ts": 0.033343625 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.033666425 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.03367985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.03369555 }, { "core_id": 0, @@ -228729,7 +4979,7 @@ "params": { "irq_num": 5 }, - "ts": 2.79561795 + "ts": 0.0338338 }, { "core_id": 0, @@ -228737,17 +4987,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.795629375 + "ts": 0.0338488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.7956388 + "ts": 0.033861575 }, { "core_id": 0, @@ -228755,18 +5005,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.795652975 + "ts": 0.03387725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb748", "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", @@ -228777,2426 +5027,17 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 564, - "ts": 2.795676975 + "size": 6, + "ts": 0.03391265 }, { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.795689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.795703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7957475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3122) example: Task[0x3ffb8600]: allocated 564 bytes @ 0x3ffb4b10\n", - "ts": 2.79576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.7957867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.795797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.79580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.795820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.7958294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.795837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.79584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.7958586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.795866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.79587925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.795887275 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.795895725 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.795905825 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.79592075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3122) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.7959701 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3122) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.7959701 - }, - { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb758", "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.795985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.7960036 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.796016425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7960252 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.79604065 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.79661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.79662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.796643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.796756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.79761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.797643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.797757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.797770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.79861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7986295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.798643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.798756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.79961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.7996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.79964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.7997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.799756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.7997706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.80061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8006326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.800646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.800756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.80161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.801643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.801757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.801770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.80261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8026295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.802643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.802756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.80361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.80364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.803756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8037706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.80461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.80462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.804643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.804756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.80561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.805643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.805757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.805770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.80661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8066295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.806643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.806756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.80761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.80764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.807756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8077706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.80861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.80862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.808643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.808756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.80961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.809643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.809757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.809770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.81061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8106295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.810643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.810756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.81161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.81164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.811756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8117706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.81261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.812633975 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8126476 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.812756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.81361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8136295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.813643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8137475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.813757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.813770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.81461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8146295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.814643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8147475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.814756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8147706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.81561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8156295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.81564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8157475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.815756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8157706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.81661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.81662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.816643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.816756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.81761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.817643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.817757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.817770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.81861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.818643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.818756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.81961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.81964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.819756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.82061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.82062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.820643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.820756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.82161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.821643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.821757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.821770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.82261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.822643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.822756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.82361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.823629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.823638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.823652975 - }, - { - "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": 190, - "ts": 2.823677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.8236921 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.8237061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8237475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3150) example: Task[0x3ffb7f40]: allocated 190 bytes @ 0x3ffb4b10\n", - "ts": 2.823768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.8237858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8237964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.8238072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.8238202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.82382875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.823836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.823845225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.82385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.823866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.82387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.823883425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.823892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8239021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.823916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3150) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.823966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3150) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.823966175 - }, - { - "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.823984575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.824002575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.82401525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.82402405 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.824039625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.82461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.824629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8246388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.824652975 - }, - { - "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": 380, - "ts": 2.824677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.8246897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.824703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8247475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3151) example: Task[0x3ffb82a0]: allocated 380 bytes @ 0x3ffb4b10\n", - "ts": 2.824769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.82478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.824800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.8248109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.824823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.82483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.824840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.824849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.82486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.824870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.82487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.824887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.8248966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8249058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.824920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3151) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.824969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3151) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.824969875 - }, - { - "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.824985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.825005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.825018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.825027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8250429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.82561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.825629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8256388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.825652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", "0x0", "0x0", "0x0", @@ -231207,8 +5048,8 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 570, - "ts": 2.825676975 + "size": 12, + "ts": 0.03394705 }, { "core_id": 0, @@ -231218,10 +5059,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.825689675 + "ts": 0.03396395 }, { "core_id": 0, @@ -231231,20 +5072,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.03398005 }, { "core_id": 0, @@ -231252,8 +5083,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3152) example: Task[0x3ffb8600]: allocated 570 bytes @ 0x3ffb4b10\n", - "ts": 2.82576945 + "msg": "I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758\n", + "ts": 0.034050525 }, { "core_id": 0, @@ -231261,16 +5092,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 (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758\n", + "ts": 0.034050525 }, { "core_id": 0, @@ -231280,18 +5103,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.03406835 }, { "core_id": 0, @@ -231299,9 +5114,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.82580785 + "ts": 0.034081575 }, { "core_id": 1, @@ -231311,7 +5126,7 @@ "params": { "irq_num": 31 }, - "ts": 2.825820875 + "ts": 0.034097875 }, { "core_id": 0, @@ -231321,36 +5136,15 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.8258294 + "ts": 0.034108725 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.825837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.82584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.8258586 + "ts": 0.0341195 }, { "core_id": 0, @@ -231360,7 +5154,25 @@ "params": { "irq_num": 30 }, - "ts": 2.825866975 + "ts": 0.034133225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.0341441 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.034154925 }, { "core_id": 1, @@ -231368,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.8258792 + "ts": 0.0341668 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.825887225 + "ts": 0.034178075 }, { "core_id": 1, @@ -231391,18 +5203,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.034189725 }, { "core_id": 1, @@ -231412,10 +5216,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.825920725 + "ts": 0.0342061 }, { "core_id": 1, @@ -231423,8 +5227,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3152) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.825970075 + "msg": "I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758\n", + "ts": 0.03426965 }, { "core_id": 1, @@ -231432,15 +5236,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3152) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.825970075 + "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", @@ -231454,18 +5258,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.82598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.826003575 + "ts": 0.03429085 }, { "core_id": 1, @@ -231475,49 +5268,23 @@ "params": { "irq_num": 31 }, - "ts": 2.8260164 + "ts": 0.0343219 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.826025175 + "ts": 0.034333375 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.826040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.82661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.82662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.826643175 + "ts": 0.034350075 }, { "core_id": 1, @@ -231527,23 +5294,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8267475 + "ts": 0.034666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.826756975 + "ts": 0.034679875 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8267706 + "ts": 0.03469545 }, { "core_id": 0, @@ -231553,23 +5320,23 @@ "params": { "irq_num": 5 }, - "ts": 2.82761795 + "ts": 0.0348338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8276295 + "ts": 0.0348492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.827643125 + "ts": 0.034864425 }, { "core_id": 1, @@ -231579,23 +5346,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8277475 + "ts": 0.035666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.827757 + "ts": 0.03567995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.827770775 + "ts": 0.0356951 }, { "core_id": 0, @@ -231605,23 +5372,23 @@ "params": { "irq_num": 5 }, - "ts": 2.82861795 + "ts": 0.0358338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8286295 + "ts": 0.035849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.828643125 + "ts": 0.03586425 }, { "core_id": 1, @@ -231631,23 +5398,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8287475 + "ts": 0.036666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.828756975 + "ts": 0.036680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8287706 + "ts": 0.03669535 }, { "core_id": 0, @@ -231657,23 +5424,23 @@ "params": { "irq_num": 5 }, - "ts": 2.82961795 + "ts": 0.0368338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8296295 + "ts": 0.036849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.82964325 + "ts": 0.03686425 }, { "core_id": 1, @@ -231683,23 +5450,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8297475 + "ts": 0.037666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.829756975 + "ts": 0.03768 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8297706 + "ts": 0.037695125 }, { "core_id": 0, @@ -231709,23 +5476,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83061795 + "ts": 0.0378338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.830631925 + "ts": 0.037849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.83064555 + "ts": 0.03786425 }, { "core_id": 1, @@ -231735,23 +5502,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8307475 + "ts": 0.038666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.830756975 + "ts": 0.038680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8307706 + "ts": 0.038695225 }, { "core_id": 0, @@ -231761,23 +5528,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83161795 + "ts": 0.0388338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8316295 + "ts": 0.0388492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.831643125 + "ts": 0.038864425 }, { "core_id": 1, @@ -231787,23 +5554,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8317475 + "ts": 0.039666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.831757 + "ts": 0.03967995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.831770775 + "ts": 0.0396951 }, { "core_id": 0, @@ -231813,23 +5580,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83261795 + "ts": 0.0398338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8326295 + "ts": 0.039849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.832643125 + "ts": 0.03986425 }, { "core_id": 1, @@ -231839,23 +5606,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8327475 + "ts": 0.040666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.832756975 + "ts": 0.040680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8327706 + "ts": 0.04069535 }, { "core_id": 0, @@ -231865,23 +5632,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83361795 + "ts": 0.0408338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8336295 + "ts": 0.040849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.83364325 + "ts": 0.04086425 }, { "core_id": 1, @@ -231891,23 +5658,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8337475 + "ts": 0.041666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.833756975 + "ts": 0.04168 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8337706 + "ts": 0.041695125 }, { "core_id": 0, @@ -231917,23 +5684,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83461795 + "ts": 0.0418338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.83462955 + "ts": 0.041849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.834643175 + "ts": 0.04186425 }, { "core_id": 1, @@ -231943,23 +5710,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8347475 + "ts": 0.042666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.834756975 + "ts": 0.042680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8347706 + "ts": 0.042695225 }, { "core_id": 0, @@ -231969,23 +5736,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83561795 + "ts": 0.0428338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8356295 + "ts": 0.0428492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.835643125 + "ts": 0.042864425 }, { "core_id": 1, @@ -231995,23 +5762,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8357475 + "ts": 0.043666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.835757 + "ts": 0.04367995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.835770775 + "ts": 0.0436951 }, { "core_id": 0, @@ -232021,23 +5788,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83661795 + "ts": 0.0438338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8366295 + "ts": 0.043849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.836643125 + "ts": 0.04386425 }, { "core_id": 1, @@ -232047,23 +5814,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8367475 + "ts": 0.044666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.836756975 + "ts": 0.0446842 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8367706 + "ts": 0.044699325 }, { "core_id": 0, @@ -232073,23 +5840,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83761795 + "ts": 0.0448338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8376295 + "ts": 0.044849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.83764325 + "ts": 0.04486425 }, { "core_id": 1, @@ -232099,23 +5866,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8377475 + "ts": 0.045666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.837756975 + "ts": 0.045680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8377706 + "ts": 0.045695225 }, { "core_id": 0, @@ -232125,23 +5892,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83861795 + "ts": 0.0458338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.83862955 + "ts": 0.0458492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.838643175 + "ts": 0.045864425 }, { "core_id": 1, @@ -232151,23 +5918,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8387475 + "ts": 0.046666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.838756975 + "ts": 0.04667995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8387706 + "ts": 0.0466951 }, { "core_id": 0, @@ -232177,23 +5944,23 @@ "params": { "irq_num": 5 }, - "ts": 2.83961795 + "ts": 0.0468338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8396295 + "ts": 0.046849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.839643125 + "ts": 0.04686425 }, { "core_id": 1, @@ -232203,23 +5970,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8397475 + "ts": 0.047666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.839757 + "ts": 0.047680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.839770775 + "ts": 0.04769535 }, { "core_id": 0, @@ -232229,23 +5996,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84061795 + "ts": 0.0478338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8406295 + "ts": 0.047849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.840643125 + "ts": 0.04786425 }, { "core_id": 1, @@ -232255,23 +6022,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8407475 + "ts": 0.048666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.840756975 + "ts": 0.04868 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8407706 + "ts": 0.048695125 }, { "core_id": 0, @@ -232281,23 +6048,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84161795 + "ts": 0.0488338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8416295 + "ts": 0.048849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.84164325 + "ts": 0.04886425 }, { "core_id": 1, @@ -232307,23 +6074,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8417475 + "ts": 0.049666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.841756975 + "ts": 0.049680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8417706 + "ts": 0.049695225 }, { "core_id": 0, @@ -232333,23 +6100,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84261795 + "ts": 0.0498338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8426326 + "ts": 0.0498492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.842646225 + "ts": 0.049864425 }, { "core_id": 1, @@ -232359,23 +6126,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8427475 + "ts": 0.050666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.842756975 + "ts": 0.05067995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8427706 + "ts": 0.0506951 }, { "core_id": 0, @@ -232385,23 +6152,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84361795 + "ts": 0.0508338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8436295 + "ts": 0.050849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.843643125 + "ts": 0.05086425 }, { "core_id": 1, @@ -232411,23 +6178,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8437475 + "ts": 0.051666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.843757 + "ts": 0.051680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.843770775 + "ts": 0.05169535 }, { "core_id": 0, @@ -232437,23 +6204,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84461795 + "ts": 0.0518338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8446295 + "ts": 0.051849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.844643125 + "ts": 0.05186425 }, { "core_id": 1, @@ -232463,23 +6230,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8447475 + "ts": 0.052666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.844756975 + "ts": 0.05268 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8447706 + "ts": 0.052695125 }, { "core_id": 0, @@ -232489,23 +6256,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84561795 + "ts": 0.0528338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8456295 + "ts": 0.052849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.84564325 + "ts": 0.05286425 }, { "core_id": 1, @@ -232515,23 +6282,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8457475 + "ts": 0.053666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.845756975 + "ts": 0.053680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8457706 + "ts": 0.053695225 }, { "core_id": 0, @@ -232541,23 +6308,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84661795 + "ts": 0.0538338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.84662955 + "ts": 0.0538492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.846643175 + "ts": 0.053864425 }, { "core_id": 1, @@ -232567,23 +6334,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8467475 + "ts": 0.054666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.846756975 + "ts": 0.05467995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8467706 + "ts": 0.0546951 }, { "core_id": 0, @@ -232593,23 +6360,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84761795 + "ts": 0.0548338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8476295 + "ts": 0.054849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.847643125 + "ts": 0.05486425 }, { "core_id": 1, @@ -232619,23 +6386,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8477475 + "ts": 0.055666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.847757 + "ts": 0.055680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.847770775 + "ts": 0.05569535 }, { "core_id": 0, @@ -232645,23 +6412,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84861795 + "ts": 0.0558338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8486295 + "ts": 0.055849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.848643125 + "ts": 0.05586425 }, { "core_id": 1, @@ -232671,23 +6438,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8487475 + "ts": 0.056666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.848756975 + "ts": 0.056684225 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8487706 + "ts": 0.056699375 }, { "core_id": 0, @@ -232697,23 +6464,23 @@ "params": { "irq_num": 5 }, - "ts": 2.84961795 + "ts": 0.0568338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8496295 + "ts": 0.056849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.84964325 + "ts": 0.05686425 }, { "core_id": 1, @@ -232723,23 +6490,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8497475 + "ts": 0.057666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.849756975 + "ts": 0.057680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8497706 + "ts": 0.057695225 }, { "core_id": 0, @@ -232749,23 +6516,23 @@ "params": { "irq_num": 5 }, - "ts": 2.85061795 + "ts": 0.0578338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.85062955 + "ts": 0.0578492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.850643175 + "ts": 0.057864425 }, { "core_id": 1, @@ -232775,23 +6542,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8507475 + "ts": 0.058666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.850756975 + "ts": 0.05867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8507706 + "ts": 0.0586951 }, { "core_id": 0, @@ -232801,23 +6568,23 @@ "params": { "irq_num": 5 }, - "ts": 2.85161795 + "ts": 0.0588338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8516295 + "ts": 0.058849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.851643125 + "ts": 0.05886425 }, { "core_id": 1, @@ -232827,23 +6594,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8517475 + "ts": 0.059666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.851757 + "ts": 0.059680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.851770775 + "ts": 0.05969535 }, { "core_id": 0, @@ -232853,23 +6620,23 @@ "params": { "irq_num": 5 }, - "ts": 2.85261795 + "ts": 0.0598338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8526295 + "ts": 0.059849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.852643125 + "ts": 0.05986425 }, { "core_id": 1, @@ -232879,23 +6646,23 @@ "params": { "irq_num": 5 }, - "ts": 2.8527475 + "ts": 0.060666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.852756975 + "ts": 0.06068 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.8527706 + "ts": 0.060695125 }, { "core_id": 0, @@ -232905,7 +6672,59 @@ "params": { "irq_num": 5 }, - "ts": 2.85361795 + "ts": 0.0608338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.060849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.06086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.061666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.061680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.061695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0618338 }, { "core_id": 0, @@ -232913,17 +6732,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.853629375 + "ts": 0.061848825 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.853638825 + "ts": 0.061861575 }, { "core_id": 0, @@ -232931,18 +6750,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.853652975 + "ts": 0.06187725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb758", "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", @@ -232953,2426 +6772,17 @@ "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 192, - "ts": 2.853677 + "size": 3, + "ts": 0.061912575 }, { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.8536921 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.8537061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8537475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3180) example: Task[0x3ffb7f40]: allocated 192 bytes @ 0x3ffb4b10\n", - "ts": 2.853768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.8537858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8537964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.8538072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.8538202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.85382875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.853836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.853845225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.85385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.853866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.85387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.853883425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.853892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8539021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.853916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3180) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.853966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3180) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.853966175 - }, - { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb768", "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.853984575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.854002575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.85401525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.85402405 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.854039625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.85461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.854629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8546388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.854652975 - }, - { - "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": 384, - "ts": 2.854677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.8546897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.854703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8547475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3181) example: Task[0x3ffb82a0]: allocated 384 bytes @ 0x3ffb4b10\n", - "ts": 2.854769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.85478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.854800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.8548109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.854823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.85483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.854840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.854849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.85486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.854870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.85487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.854887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.8548966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8549058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.854920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3181) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.854969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3181) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.854969875 - }, - { - "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.854985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.855005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.855018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.855027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8550429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.85561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.855629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8556388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.855652975 - }, - { - "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": 576, - "ts": 2.855676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.855689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.855703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8557475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3182) example: Task[0x3ffb8600]: allocated 576 bytes @ 0x3ffb4b10\n", - "ts": 2.85576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.8557867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.855797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.85580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.855820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.8558294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.855837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.85584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.8558586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.855866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.8558792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.855887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.855895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8559058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.855920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3182) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.855970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3182) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.855970075 - }, - { - "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.85598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.856003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.8560164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.856025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.856040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.85661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.85662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.856643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8567475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.856756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8567706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.85761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8576295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.857643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8577475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.857757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.857770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.85861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8586295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.858643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8587475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.858756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8587706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.85961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8596295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.85964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8597475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.859756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8597706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.86061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.860631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.86064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8607475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.860756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8607706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.86161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8616295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.861643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8617475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.861757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.861770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.86261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8626295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.862643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8627475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.862756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8627706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.86361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8636295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.86364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8637475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.863756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8637706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.86461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.86462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.864643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8647475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.864756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8647706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.86561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8656295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.865643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8657475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.865757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.865770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.86661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8666295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.866643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8667475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.866756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8667706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.86761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8676295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.86764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8677475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.867756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8677706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.86861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.86862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.868643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8687475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.868756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8687706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.86961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8696295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.869643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8697475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.869757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.869770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.87061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8706295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.870643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8707475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.870756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8707706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.87161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8716295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.87164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8717475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.871756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8717706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.87261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8726326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.872646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8727475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.872756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8727706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.87361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8736295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.873643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8737475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.873757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.873770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.87461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8746295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.874643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8747475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.874756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8747706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.87561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8756295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.87564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8757475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.875756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8757706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.87661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.87662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.876643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8767475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.876756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8767706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.87761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8776295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.877643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8777475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.877757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.877770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.87861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8786295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.878643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8787475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.878756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8787706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.87961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8796295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.87964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8797475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.879756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8797706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.88061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.88062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.880643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8807475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.880756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8807706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.88161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8816295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.881643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8817475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.881757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.881770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.88261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8826295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.882643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8827475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.882756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8827706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.88361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.883629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.883638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.883652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", "0x0", "0x0", "0x0", @@ -235383,8 +6793,8 @@ "ctx_name": "alloc0", "id": 512, "in_irq": false, - "size": 194, - "ts": 2.883677 + "size": 6, + "ts": 0.061947 }, { "core_id": 0, @@ -235394,10 +6804,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.8836921 + "ts": 0.061964025 }, { "core_id": 0, @@ -235407,20 +6817,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.061980025 }, { "core_id": 0, @@ -235428,8 +6828,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3210) example: Task[0x3ffb7f40]: allocated 194 bytes @ 0x3ffb4b10\n", - "ts": 2.883768375 + "msg": "I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768\n", + "ts": 0.062044275 }, { "core_id": 0, @@ -235437,16 +6837,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 (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768\n", + "ts": 0.062044275 }, { "core_id": 0, @@ -235456,18 +6848,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.062062075 }, { "core_id": 0, @@ -235475,9 +6859,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12288292 + "tid": 12289748 }, - "ts": 2.8838072 + "ts": 0.0620752 }, { "core_id": 1, @@ -235487,7 +6871,7 @@ "params": { "irq_num": 31 }, - "ts": 2.8838202 + "ts": 0.06209135 }, { "core_id": 0, @@ -235497,36 +6881,15 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.88382875 + "ts": 0.0621024 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.883836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.883845225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.88385785 + "ts": 0.06211315 }, { "core_id": 0, @@ -235536,7 +6899,25 @@ "params": { "irq_num": 30 }, - "ts": 2.883866225 + "ts": 0.06212715 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.062138 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.062148875 }, { "core_id": 1, @@ -235544,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.88387455 + "ts": 0.062160875 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc0", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.883883425 + "ts": 0.0621712 }, { "core_id": 1, @@ -235567,18 +6948,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.062183675 }, { "core_id": 1, @@ -235588,10 +6961,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.883916925 + "ts": 0.06219985 }, { "core_id": 1, @@ -235599,8 +6972,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3210) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.883966175 + "msg": "I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768\n", + "ts": 0.0622634 }, { "core_id": 1, @@ -235608,15 +6981,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3210) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.883966175 + "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", @@ -235630,18 +7003,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.883984575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.884002575 + "ts": 0.0622844 }, { "core_id": 1, @@ -235651,23 +7013,49 @@ "params": { "irq_num": 31 }, - "ts": 2.88401525 + "ts": 0.062314725 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.88402405 + "ts": 0.0623262 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 17, "in_irq": false, "params": {}, - "ts": 2.884039625 + "ts": 0.0623429 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.062666425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.062679875 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.06269545 }, { "core_id": 0, @@ -235677,7 +7065,7 @@ "params": { "irq_num": 5 }, - "ts": 2.88461795 + "ts": 0.0628338 }, { "core_id": 0, @@ -235685,17 +7073,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.884629375 + "ts": 0.062848825 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.8846388 + "ts": 0.062861575 }, { "core_id": 0, @@ -235703,18 +7091,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.884652975 + "ts": 0.06287725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb768", "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", @@ -235725,2426 +7113,17 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 388, - "ts": 2.884677 + "size": 6, + "ts": 0.062912575 }, { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.8846897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.884703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8847475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3211) example: Task[0x3ffb82a0]: allocated 388 bytes @ 0x3ffb4b10\n", - "ts": 2.884769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.88478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.884800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.8848109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.884823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.88483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.884840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.884849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.88486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.884870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.88487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.884887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.8848966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8849058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.884920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3211) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.884969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3211) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.884969875 - }, - { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb778", "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.884985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.885005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.885018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.885027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8850429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.88561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.885629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8856388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.885652975 - }, - { - "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": 582, - "ts": 2.885676975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.885689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.885703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8857475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3212) example: Task[0x3ffb8600]: allocated 582 bytes @ 0x3ffb4b10\n", - "ts": 2.88576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.8857867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.885797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.88580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.885820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.8858294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.885837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.88584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.8858586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.885866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.8858792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.885887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.885895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8859058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.885920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3212) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.885970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3212) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.885970075 - }, - { - "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.88598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.886003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.8860164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.886025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.886040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.88661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.88662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.886643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8867475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.886756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8867706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.88761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8876295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.887643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8877475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.887757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.887770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.88861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8886295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.888643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8887475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.888756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8887706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.88961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8896295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.88964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8897475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.889756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8897706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.89061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.890631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.89064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8907475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.890756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8907706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.89161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8916295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.891643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8917475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.891757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.891770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.89261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8926295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.892643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8927475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.892756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8927706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.89361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8936295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.89364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8937475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.893756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8937706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.89461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.89462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.894643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8947475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.894756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8947706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.89561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8956295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.895643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8957475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.895757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.895770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.89661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8966295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.896643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8967475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.896756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8967706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.89761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8976295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.89764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8977475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.897756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8977706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.89861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.89862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.898643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8987475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.898756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.8987706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.89961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.8996295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.899643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.8997475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.899757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.899770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.90061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9006295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.900643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9007475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.900756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9007706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.90161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9016295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.90164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9017475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.901756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9017706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.90261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9026326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.902646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9027475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.902756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9027706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.90361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9036295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.903643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9037475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.903757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.903770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.90461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9046295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.904643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9047475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.904756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9047706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.90561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9056295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.90564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9057475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.905756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9057706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.90661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.90662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.906643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9067475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.906756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9067706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.90761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9076295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.907643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9077475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.907757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.907770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.90861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9086295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.908643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9087475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.908756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9087706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.90961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9096295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.90964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9097475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.909756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9097706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.91061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.91062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.910643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9107475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.910756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9107706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.91161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9116295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.911643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9117475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.911757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.911770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.91261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9126295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.912643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9127475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.912756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9127706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.91361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.913629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.913638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.913652975 - }, - { - "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": 196, - "ts": 2.913677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.9136921 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.9137061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9137475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3240) example: Task[0x3ffb7f40]: allocated 196 bytes @ 0x3ffb4b10\n", - "ts": 2.913768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.9137858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9137964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.9138072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.9138202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.91382875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.913836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.913845225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.91385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.913866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.91387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.913883425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.913892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9139021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.913916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3240) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.913966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3240) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.913966175 - }, - { - "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.913984575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.914002575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.91401525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.91402405 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.914039625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.91461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.914629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9146388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.914652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", "0x0", "0x0", "0x0", @@ -238155,8 +7134,8 @@ "ctx_name": "alloc1", "id": 512, "in_irq": false, - "size": 392, - "ts": 2.914677 + "size": 12, + "ts": 0.062947 }, { "core_id": 0, @@ -238166,10 +7145,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.9146897 + "ts": 0.062964025 }, { "core_id": 0, @@ -238179,20 +7158,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.062980025 }, { "core_id": 0, @@ -238200,8 +7169,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3241) example: Task[0x3ffb82a0]: allocated 392 bytes @ 0x3ffb4b10\n", - "ts": 2.914769475 + "msg": "I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778\n", + "ts": 0.0630465 }, { "core_id": 0, @@ -238209,16 +7178,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 (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778\n", + "ts": 0.0630465 }, { "core_id": 0, @@ -238228,18 +7189,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.06306005 }, { "core_id": 0, @@ -238247,9 +7200,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289156 + "tid": 12295764 }, - "ts": 2.9148109 + "ts": 0.06307745 }, { "core_id": 1, @@ -238259,7 +7212,7 @@ "params": { "irq_num": 31 }, - "ts": 2.914823925 + "ts": 0.063093775 }, { "core_id": 0, @@ -238269,36 +7222,15 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.91483245 + "ts": 0.063104625 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free0", "id": 18, "in_irq": false, "params": {}, - "ts": 2.914840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.914849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.91486165 + "ts": 0.063115375 }, { "core_id": 0, @@ -238308,7 +7240,25 @@ "params": { "irq_num": 30 }, - "ts": 2.914870025 + "ts": 0.0631291 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.06313995 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.063150775 }, { "core_id": 1, @@ -238316,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.91487835 + "ts": 0.063162625 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc1", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.914887225 + "ts": 0.0631729 }, { "core_id": 1, @@ -238339,18 +7289,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.063184375 }, { "core_id": 1, @@ -238360,10 +7302,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.914920625 + "ts": 0.063200675 }, { "core_id": 1, @@ -238371,8 +7313,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3241) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.914969875 + "msg": "I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778\n", + "ts": 0.063264125 }, { "core_id": 1, @@ -238380,15 +7322,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3241) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.914969875 + "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", @@ -238402,18 +7344,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.914985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.915005825 + "ts": 0.063285275 }, { "core_id": 1, @@ -238423,23 +7354,49 @@ "params": { "irq_num": 31 }, - "ts": 2.915018525 + "ts": 0.0633124 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.915027325 + "ts": 0.063323825 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9150429 + "ts": 0.0633404 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.063666425 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.06367985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.06369555 }, { "core_id": 0, @@ -238449,7 +7406,7 @@ "params": { "irq_num": 5 }, - "ts": 2.91561795 + "ts": 0.0638338 }, { "core_id": 0, @@ -238457,17 +7414,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.915629375 + "ts": 0.0638488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9156388 + "ts": 0.063861575 }, { "core_id": 0, @@ -238475,18 +7432,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.915652975 + "ts": 0.06387725 }, { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb778", "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6af3", + "0x40088d94", "0x0", "0x0", "0x0", @@ -238497,2426 +7454,17 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 588, - "ts": 2.915676975 + "size": 9, + "ts": 0.06391265 }, { - "core_id": 0, - "ctx_name": "alloc2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.915689675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.915703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9157475 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3242) example: Task[0x3ffb8600]: allocated 588 bytes @ 0x3ffb4b10\n", - "ts": 2.91576945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289896, - "xTicksToWait": 0 - }, - "ts": 2.9157867 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.915797075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.91580785 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.915820875 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.9158294 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.915837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.91584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.9158586 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.915866975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12305024, - "xJustPeek": 0, - "xQueue": 12289896, - "xTicksToWait": 4294967295 - }, - "ts": 2.9158792 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.915887225 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.915895675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9159058 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.915920725 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3242) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.915970075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3242) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.915970075 - }, - { - "addr": "0x3ffb4b10", + "addr": "0x3ffbb788", "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.91598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.916003575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.9160164 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.916025175 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.916040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.91661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.91662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.916643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9167475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.916756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9167706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.91761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9176295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.917643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9177475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.917757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.917770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.91861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9186295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.918643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9187475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.918756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9187706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.91961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9196295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.91964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9197475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.919756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9197706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.92061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.920631925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.92064555 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9207475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.920756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9207706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.92161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9216295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.921643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9217475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.921757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.921770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.92261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9226295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.922643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9227475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.922756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9227706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.92361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9236295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.92364325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9237475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.923756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9237706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.92461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.92462955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.924643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9247475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.924756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9247706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.92561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9256295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.925643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9257475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.925757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.925770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.92661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9266295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.926643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9267475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.926756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9267706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.92761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9276295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.92764325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9277475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.927756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9277706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.92861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.92862955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.928643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9287475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.928756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9287706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.92961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9296295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.929643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9297475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.929757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.929770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.93061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9306295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.930643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9307475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.930756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9307706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.93161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9316295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.93164325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9317475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.931756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9317706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.93261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9326326 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.932646225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9327475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.932756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9327706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.93361795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9336295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.933643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9337475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.933757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.933770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.93461795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9346295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.934643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9347475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.934756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9347706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.93561795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9356295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.93564325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9357475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.935756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9357706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.93661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.93662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.936643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9367475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.936756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9367706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.93761795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9376295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.937643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9377475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.937757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.937770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.93861795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9386295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.938643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9387475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.938756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9387706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.93961795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9396295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.93964325 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9397475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.939756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9397706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.94061795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.94062955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.940643175 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9407475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.940756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9407706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.94161795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9416295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.941643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9417475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.941757 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.941770775 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.94261795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9426295 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.942643125 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9427475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.942756975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9427706 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.94361795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12287808 - }, - "ts": 2.943629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.943638825 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12287808 - }, - "ts": 2.943652975 - }, - { - "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": 198, - "ts": 2.943677 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.9436921 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.9437061 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9437475 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3270) example: Task[0x3ffb7f40]: allocated 198 bytes @ 0x3ffb4b10\n", - "ts": 2.943768375 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12288168, - "xTicksToWait": 0 - }, - "ts": 2.9437858 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9437964 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.9438072 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.9438202 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.94382875 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.943836675 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "ts": 2.943845225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288292 - }, - "ts": 2.94385785 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.943866225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12295008, - "xJustPeek": 0, - "xQueue": 12288168, - "xTicksToWait": 4294967295 - }, - "ts": 2.94387455 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.943883425 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.943892825 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9439021 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.943916925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3270) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.943966175 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3270) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", - "ts": 2.943966175 - }, - { - "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.943984575 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12288292 - }, - "ts": 2.944002575 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.94401525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.94402405 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.944039625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.94461795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12288672 - }, - "ts": 2.944629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9446388 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12288672 - }, - "ts": 2.944652975 - }, - { - "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": 396, - "ts": 2.944677 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.9446897 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.944703675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.9447475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3271) example: Task[0x3ffb82a0]: allocated 396 bytes @ 0x3ffb4b10\n", - "ts": 2.944769475 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "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 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12289032, - "xTicksToWait": 0 - }, - "ts": 2.94478975 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.944800125 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.9448109 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.944823925 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 2.94483245 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.944840425 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "ts": 2.944849 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289156 - }, - "ts": 2.94486165 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 2.944870025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 12300016, - "xJustPeek": 0, - "xQueue": 12289032, - "xTicksToWait": 4294967295 - }, - "ts": 2.94487835 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.944887225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12276584, - "xTicksToWait": 10 - }, - "ts": 2.9448966 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9449058 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12276584, - "xTicksToWait": 0 - }, - "ts": 2.944920625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3271) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.944969875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (3271) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", - "ts": 2.944969875 - }, - { - "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.944985475 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12289156 - }, - "ts": 2.945005825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 2.945018525 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.945027325 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.9450429 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.94561795 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12289536 - }, - "ts": 2.945629375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.9456388 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289536 - }, - "ts": 2.945652975 - }, - { - "addr": "0x3ffb4b10", - "callers": [ - "0x400d3ad0", - "0x40089bbc", - "0x0", - "0x0", - "0x0", + "0x40081fef", + "0x40082024", + "0x4008e668", + "0x400d6afa", + "0x40088d94", "0x0", "0x0", "0x0", @@ -240927,8 +7475,8 @@ "ctx_name": "alloc2", "id": 512, "in_irq": false, - "size": 594, - "ts": 2.945676975 + "size": 18, + "ts": 0.0639513 }, { "core_id": 0, @@ -240938,10 +7486,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.945689675 + "ts": 0.0639682 }, { "core_id": 0, @@ -240951,20 +7499,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.063984175 }, { "core_id": 0, @@ -240972,8 +7510,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3272) example: Task[0x3ffb8600]: allocated 594 bytes @ 0x3ffb4b10\n", - "ts": 2.94576945 + "msg": "I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788\n", + "ts": 0.064054525 }, { "core_id": 0, @@ -240981,16 +7519,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 (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788\n", + "ts": 0.064054525 }, { "core_id": 0, @@ -241000,18 +7530,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.064068125 }, { "core_id": 0, @@ -241019,9 +7541,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12274088 + "tid": 12301764 }, - "ts": 2.94580785 + "ts": 0.06408135 }, { "core_id": 1, @@ -241031,7 +7553,7 @@ "params": { "irq_num": 31 }, - "ts": 2.945820875 + "ts": 0.06409765 }, { "core_id": 0, @@ -241041,36 +7563,15 @@ "params": { "xTicksToDelay": 30 }, - "ts": 2.9458294 + "ts": 0.0641085 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free1", "id": 18, "in_irq": false, "params": {}, - "ts": 2.945837375 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "ts": 2.94584595 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12274088 - }, - "ts": 2.9458586 + "ts": 0.064119275 }, { "core_id": 0, @@ -241080,7 +7581,25 @@ "params": { "irq_num": 30 }, - "ts": 2.945866975 + "ts": 0.064133 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.064143875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0641547 }, { "core_id": 1, @@ -241088,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.9458792 + "ts": 0.064166575 }, { "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, + "ctx_name": "alloc2", + "id": 17, "in_irq": false, "params": {}, - "ts": 2.945887225 + "ts": 0.06417785 }, { "core_id": 1, @@ -241111,18 +7630,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.0641895 }, { "core_id": 1, @@ -241132,10 +7643,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 0 }, - "ts": 2.945920725 + "ts": 0.06420995 }, { "core_id": 1, @@ -241143,8 +7654,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3272) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.945970075 + "msg": "I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788\n", + "ts": 0.0642735 }, { "core_id": 1, @@ -241152,15 +7663,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3272) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", - "ts": 2.945970075 + "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", @@ -241174,18 +7685,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 2.94598545 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12274088 - }, - "ts": 2.946003575 + "ts": 0.0642947 }, { "core_id": 1, @@ -241195,49 +7695,23 @@ "params": { "irq_num": 31 }, - "ts": 2.9460164 + "ts": 0.064321575 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.946025175 + "ts": 0.064333 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.946040625 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 2.94661795 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 2.94662955 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 2.946643175 + "ts": 0.064349575 }, { "core_id": 1, @@ -241247,23 +7721,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9467475 + "ts": 0.064666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.946756975 + "ts": 0.06467985 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9467706 + "ts": 0.06469555 }, { "core_id": 0, @@ -241273,23 +7747,23 @@ "params": { "irq_num": 5 }, - "ts": 2.94761795 + "ts": 0.0648338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9476295 + "ts": 0.064849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.947643125 + "ts": 0.06486425 }, { "core_id": 1, @@ -241299,23 +7773,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9477475 + "ts": 0.065666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.947757 + "ts": 0.065680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.947770775 + "ts": 0.06569535 }, { "core_id": 0, @@ -241325,23 +7799,23 @@ "params": { "irq_num": 5 }, - "ts": 2.94861795 + "ts": 0.0658338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9486295 + "ts": 0.065849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.948643125 + "ts": 0.06586425 }, { "core_id": 1, @@ -241351,23 +7825,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9487475 + "ts": 0.066666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.948756975 + "ts": 0.06668 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9487706 + "ts": 0.066695125 }, { "core_id": 0, @@ -241377,23 +7851,23 @@ "params": { "irq_num": 5 }, - "ts": 2.94961795 + "ts": 0.0668338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9496295 + "ts": 0.066849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.94964325 + "ts": 0.06686425 }, { "core_id": 1, @@ -241403,23 +7877,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9497475 + "ts": 0.067666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.949756975 + "ts": 0.067680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9497706 + "ts": 0.067695225 }, { "core_id": 0, @@ -241429,23 +7903,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95061795 + "ts": 0.0678338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.950631925 + "ts": 0.0678492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.95064555 + "ts": 0.067864425 }, { "core_id": 1, @@ -241455,23 +7929,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9507475 + "ts": 0.068666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.950756975 + "ts": 0.06867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9507706 + "ts": 0.0686951 }, { "core_id": 0, @@ -241481,23 +7955,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95161795 + "ts": 0.0688338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9516295 + "ts": 0.068849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.951643125 + "ts": 0.06886425 }, { "core_id": 1, @@ -241507,23 +7981,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9517475 + "ts": 0.069666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.951757 + "ts": 0.069680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.951770775 + "ts": 0.06969535 }, { "core_id": 0, @@ -241533,23 +8007,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95261795 + "ts": 0.0698338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9526295 + "ts": 0.069849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.952643125 + "ts": 0.069868575 }, { "core_id": 1, @@ -241559,23 +8033,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9527475 + "ts": 0.070666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.952756975 + "ts": 0.07067995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9527706 + "ts": 0.0706951 }, { "core_id": 0, @@ -241585,23 +8059,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95361795 + "ts": 0.0708338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9536295 + "ts": 0.070849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.95364325 + "ts": 0.07086425 }, { "core_id": 1, @@ -241611,23 +8085,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9537475 + "ts": 0.071666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.953756975 + "ts": 0.071680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9537706 + "ts": 0.07169535 }, { "core_id": 0, @@ -241637,23 +8111,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95461795 + "ts": 0.0718338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.95462955 + "ts": 0.071849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.954643175 + "ts": 0.07186425 }, { "core_id": 1, @@ -241663,23 +8137,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9547475 + "ts": 0.072666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.954756975 + "ts": 0.07268 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9547706 + "ts": 0.072695125 }, { "core_id": 0, @@ -241689,23 +8163,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95561795 + "ts": 0.0728338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9556295 + "ts": 0.072849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.955643125 + "ts": 0.07286425 }, { "core_id": 1, @@ -241715,23 +8189,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9557475 + "ts": 0.073666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.955757 + "ts": 0.073680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.955770775 + "ts": 0.073695225 }, { "core_id": 0, @@ -241741,23 +8215,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95661795 + "ts": 0.0738338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9566295 + "ts": 0.0738492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.956643125 + "ts": 0.073864425 }, { "core_id": 1, @@ -241767,23 +8241,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9567475 + "ts": 0.074666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.956756975 + "ts": 0.07467995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9567706 + "ts": 0.0746951 }, { "core_id": 0, @@ -241793,23 +8267,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95761795 + "ts": 0.0748338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9576295 + "ts": 0.074849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.95764325 + "ts": 0.07486425 }, { "core_id": 1, @@ -241819,23 +8293,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9577475 + "ts": 0.075666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.957756975 + "ts": 0.075680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9577706 + "ts": 0.07569535 }, { "core_id": 0, @@ -241845,23 +8319,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95861795 + "ts": 0.0758338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.95862955 + "ts": 0.075849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.958643175 + "ts": 0.07586425 }, { "core_id": 1, @@ -241871,23 +8345,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9587475 + "ts": 0.076666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.958756975 + "ts": 0.07668 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9587706 + "ts": 0.076695125 }, { "core_id": 0, @@ -241897,23 +8371,23 @@ "params": { "irq_num": 5 }, - "ts": 2.95961795 + "ts": 0.0768338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9596295 + "ts": 0.076849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.959643125 + "ts": 0.07686425 }, { "core_id": 1, @@ -241923,23 +8397,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9597475 + "ts": 0.077666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.959757 + "ts": 0.077680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.959770775 + "ts": 0.077695225 }, { "core_id": 0, @@ -241949,23 +8423,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96061795 + "ts": 0.0778338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9606295 + "ts": 0.0778492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.960643125 + "ts": 0.077864425 }, { "core_id": 1, @@ -241975,23 +8449,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9607475 + "ts": 0.078666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.960756975 + "ts": 0.07867995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9607706 + "ts": 0.0786951 }, { "core_id": 0, @@ -242001,23 +8475,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96161795 + "ts": 0.0788338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9616295 + "ts": 0.078849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.96164325 + "ts": 0.07886425 }, { "core_id": 1, @@ -242027,23 +8501,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9617475 + "ts": 0.079666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.961756975 + "ts": 0.079680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9617706 + "ts": 0.07969535 }, { "core_id": 0, @@ -242053,23 +8527,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96261795 + "ts": 0.0798338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9626326 + "ts": 0.079849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.962646225 + "ts": 0.07986425 }, { "core_id": 1, @@ -242079,23 +8553,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9627475 + "ts": 0.080666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.962756975 + "ts": 0.08068 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9627706 + "ts": 0.080695125 }, { "core_id": 0, @@ -242105,23 +8579,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96361795 + "ts": 0.0808338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9636295 + "ts": 0.080849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.963643125 + "ts": 0.08086425 }, { "core_id": 1, @@ -242131,23 +8605,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9637475 + "ts": 0.081666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.963757 + "ts": 0.081680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.963770775 + "ts": 0.081695225 }, { "core_id": 0, @@ -242157,23 +8631,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96461795 + "ts": 0.0818338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9646295 + "ts": 0.0818492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.964643125 + "ts": 0.081864425 }, { "core_id": 1, @@ -242183,23 +8657,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9647475 + "ts": 0.082666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.964756975 + "ts": 0.082680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9647706 + "ts": 0.08269535 }, { "core_id": 0, @@ -242209,23 +8683,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96561795 + "ts": 0.0828338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9656295 + "ts": 0.082849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.96564325 + "ts": 0.08286425 }, { "core_id": 1, @@ -242235,23 +8709,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9657475 + "ts": 0.083666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.965756975 + "ts": 0.08368 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9657706 + "ts": 0.083695125 }, { "core_id": 0, @@ -242261,23 +8735,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96661795 + "ts": 0.0838338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.96662955 + "ts": 0.083849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.966643175 + "ts": 0.08386425 }, { "core_id": 1, @@ -242287,23 +8761,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9667475 + "ts": 0.084666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.966756975 + "ts": 0.084680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9667706 + "ts": 0.084695225 }, { "core_id": 0, @@ -242313,23 +8787,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96761795 + "ts": 0.0848338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9676295 + "ts": 0.0848492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.967643125 + "ts": 0.084864425 }, { "core_id": 1, @@ -242339,23 +8813,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9677475 + "ts": 0.085666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.967757 + "ts": 0.08567995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.967770775 + "ts": 0.0856951 }, { "core_id": 0, @@ -242365,23 +8839,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96861795 + "ts": 0.0858338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9686295 + "ts": 0.085849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.968643125 + "ts": 0.08586425 }, { "core_id": 1, @@ -242391,23 +8865,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9687475 + "ts": 0.086666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.968756975 + "ts": 0.086680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9687706 + "ts": 0.08669535 }, { "core_id": 0, @@ -242417,23 +8891,23 @@ "params": { "irq_num": 5 }, - "ts": 2.96961795 + "ts": 0.0868338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9696295 + "ts": 0.086849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.96964325 + "ts": 0.08686425 }, { "core_id": 1, @@ -242443,23 +8917,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9697475 + "ts": 0.087666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.969756975 + "ts": 0.08768 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9697706 + "ts": 0.087695125 }, { "core_id": 0, @@ -242469,23 +8943,23 @@ "params": { "irq_num": 5 }, - "ts": 2.97061795 + "ts": 0.0878338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.97062955 + "ts": 0.087849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.970643175 + "ts": 0.08786425 }, { "core_id": 1, @@ -242495,23 +8969,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9707475 + "ts": 0.088666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.970756975 + "ts": 0.088680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9707706 + "ts": 0.088695225 }, { "core_id": 0, @@ -242521,23 +8995,23 @@ "params": { "irq_num": 5 }, - "ts": 2.97161795 + "ts": 0.0888338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9716295 + "ts": 0.0888492 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.971643125 + "ts": 0.088864425 }, { "core_id": 1, @@ -242547,23 +9021,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9717475 + "ts": 0.089666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.971757 + "ts": 0.08967995 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.971770775 + "ts": 0.0896951 }, { "core_id": 0, @@ -242573,23 +9047,23 @@ "params": { "irq_num": 5 }, - "ts": 2.97261795 + "ts": 0.0898338 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.9726295 + "ts": 0.089849175 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.972643125 + "ts": 0.08986425 }, { "core_id": 1, @@ -242599,23 +9073,23 @@ "params": { "irq_num": 5 }, - "ts": 2.9727475 + "ts": 0.090666425 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.972756975 + "ts": 0.090680075 }, { "core_id": 1, - "ctx_name": "IDLE1", + "ctx_name": "free2", "id": 17, "in_irq": false, "params": {}, - "ts": 2.9727706 + "ts": 0.09069535 }, { "core_id": 0, @@ -242625,7 +9099,59 @@ "params": { "irq_num": 5 }, - "ts": 2.97361795 + "ts": 0.0908338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.090849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.09086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.091666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09168 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.091695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0918338 }, { "core_id": 0, @@ -242633,17 +9159,17 @@ "id": 6, "in_irq": true, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.973629375 + "ts": 0.0918488 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "alloc2", "id": 18, "in_irq": false, "params": {}, - "ts": 2.973638825 + "ts": 0.091861575 }, { "core_id": 0, @@ -242651,9 +9177,108 @@ "id": 4, "in_irq": false, "params": { - "tid": 12287808 + "tid": 12286700 }, - "ts": 2.973652975 + "ts": 0.09187725 + }, + { + "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.091912475 + }, + { + "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.0919503 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.0919672 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.0919832 + }, + { + "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.09204735 + }, + { + "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.09204735 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "ts": 0.092060925 }, { "core_id": 0, @@ -242661,9 +9286,14485 @@ "id": 6, "in_irq": false, "params": { - "tid": 12280900 + "tid": 12289748 }, - "ts": 2.97366405 + "ts": 0.092074075 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.092090275 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.092101125 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.092111925 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.0921258 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.092136625 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.092147475 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 + }, + "ts": 0.09215935 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.092169575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.09218105 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.0922013 + }, + { + "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.09226485 + }, + { + "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.09226485 + }, + { + "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.09228605 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.09231295 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.092666425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09267985 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.09269555 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0928338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.0928488 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.092861575 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.092877375 + }, + { + "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.092912775 + }, + { + "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.0929473 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.09296425 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.092984425 + }, + { + "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.0930509 + }, + { + "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.0930509 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.09306455 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.09307785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.093094175 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.093105025 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.093115775 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.0931295 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.09314035 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.093151175 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, + "xTicksToWait": 4294967295 + }, + "ts": 0.093163025 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0931733 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.093184775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.093201075 + }, + { + "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.093264525 + }, + { + "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.093264525 + }, + { + "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.09328955 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.09331655 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.093666425 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09367985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.09369555 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0938338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.0938488 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.093861575 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.09387725 + }, + { + "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.09391265 + }, + { + "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.09394705 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.09396395 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.09398005 + }, + { + "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.094050525 + }, + { + "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.094050525 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.09406835 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.094081575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.094097875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.094108725 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0941195 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.094133225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.0941441 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.094154925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 + }, + "ts": 0.0941668 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.094178075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.094189725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.0942061 + }, + { + "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.09426965 + }, + { + "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.09426965 + }, + { + "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.09429085 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.094321875 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.094666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.094679875 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.09469545 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0948338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0948492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.094864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.095666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09567995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0956951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0958338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.095849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.09586425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.096666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.096680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.09669535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0968338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.096849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.09686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.097666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09768 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.097695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0978338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.097849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.09786425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.098666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.098680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.098695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0988338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0988492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.098864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.099666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09967995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0996951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0998338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.099849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.09986425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.100666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.100680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.10069535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1008338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.100849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.10086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.101666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.10168 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.101695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1018338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.101849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.10186425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.102666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.102680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.102695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1028338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1028492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.102864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.103666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.10367995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1036951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1038338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.103849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.10386425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.104666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.104683575 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.104698725 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1048338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.104849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.10486425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.105666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.105680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.105695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1058338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1058492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.105864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.106666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.10667995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1066951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1068338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.106849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.10686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.107666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.107680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.10769535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1078338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.107849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.10786425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.108666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.10868 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.108695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1088338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.108849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.10886425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.109666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.109680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.109695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1098338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1098492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.109864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.110666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.11067995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1106951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1108338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.110849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.11086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.111666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.111680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.11169535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1118338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.111849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.11186425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.112666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.11268 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.112695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1128338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.112849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.11286425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.113666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.113680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.113695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1138338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1138492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.113864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.114666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.11467995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1146951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1148338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.114849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.11486425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.115666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.115680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.11569535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1158338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.115849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.11586425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.116666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.116684225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.116699375 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1168338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.116849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.11686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.117666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.117680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.117695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1178338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1178492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.117864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.118666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.11867995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1186951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1188338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.118849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.11886425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.119666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.119680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.11969535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1198338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.119849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.11986425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.120666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.12068 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.120695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1208338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.120849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.121666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.121680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.121695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1218338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12286700 + }, + "ts": 0.121848825 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.121861575 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.12187725 + }, + { + "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.121912575 + }, + { + "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.121947 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.121964025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.121980025 + }, + { + "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.12205045 + }, + { + "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.12205045 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "ts": 0.122068175 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.1220814 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.12209765 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.1221085 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.122119275 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.1221331 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.122144 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.122154825 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 + }, + "ts": 0.122166775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.122177025 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.12218845 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.1222048 + }, + { + "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.12226835 + }, + { + "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.12226835 + }, + { + "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.12228955 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.122320575 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.122666425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.122679875 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12269545 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1228338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.122848825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.122861575 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.12287725 + }, + { + "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.122912575 + }, + { + "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.122947 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.122964025 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.122980025 + }, + { + "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.12305045 + }, + { + "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.12305045 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.123064 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.123081425 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.123097725 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.123108575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.123119325 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.12313305 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.1231439 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.123154725 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, + "xTicksToWait": 4294967295 + }, + "ts": 0.1231666 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12317685 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.123188325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.123204625 + }, + { + "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.123268075 + }, + { + "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.123268075 + }, + { + "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.12328925 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.12331625 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.123666425 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.12367985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12369555 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1238338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.1238488 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.123861575 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.12387725 + }, + { + "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.12391265 + }, + { + "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.123951325 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.123968225 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.1239842 + }, + { + "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.12405455 + }, + { + "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.12405455 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.12406815 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.124081375 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.124097675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.124108525 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1241193 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.124133175 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.12414405 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.124154875 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 + }, + "ts": 0.12416675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.124178025 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.124189675 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.124209375 + }, + { + "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.124272925 + }, + { + "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.124272925 + }, + { + "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.124294125 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.124321025 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.124666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.12467985 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12469555 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1248338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.124849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12486425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.125666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.125680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12569535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1258338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.125849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12586425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.126666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.12668 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.126695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1268338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.126849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.127666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.127680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.127695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1278338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1278492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.127864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.128666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.12867995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1286951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1288338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.128849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12886425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.129666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.129680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12969535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1298338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.129849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.129868575 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.130666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.13067995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1306951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1308338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.130849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.13086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.131666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.131680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.13169535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1318338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.131849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.13186425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.132666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.13268 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.132695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1328338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.132849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.13286425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.133666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.133680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.133695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1338338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1338492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.133864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.134666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.13467995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1346951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1348338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.134849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.13486425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.135666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.135680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.13569535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1358338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.135849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.13586425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.136666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.13668 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.136695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1368338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.136849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.13686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.137666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.137680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.137695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1378338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1378492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.137864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.138666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.13867995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1386951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1388338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.138849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.13886425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.139666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.139680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.13969535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1398338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.139849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.13986425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.140666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.14068 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.140695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1408338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.140849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.14086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.141666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.141680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.141695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1418338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1418492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.141864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.142666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.142680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.14269535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1428338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.142849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.14286425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.143666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.14368 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.143695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1438338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.143849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.14386425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.144666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.144680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.144695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1448338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1448492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.144864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.145666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.14567995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1456951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1458338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.145849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.14586425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.146666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.146680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.14669535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1468338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.146849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.14686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.147666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.14768 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.147695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1478338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.147849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.14786425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.148666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.148680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.148695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1488338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1488492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.148864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.149666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.14967995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1496951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1498338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.149849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.14986425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.150666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.150680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.15069535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1508338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.150849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.15086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.151666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15168 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.151695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1518338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12286700 + }, + "ts": 0.1518488 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.151861575 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.15187725 + }, + { + "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.15191265 + }, + { + "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.15195125 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.15196815 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.15198415 + }, + { + "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.152054475 + }, + { + "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.152054475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "ts": 0.152068075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.1520813 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.152097675 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.152108525 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1521193 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.152133125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.152144025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15215485 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 + }, + "ts": 0.1521668 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.15217705 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.152188475 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.15220885 + }, + { + "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.1522724 + }, + { + "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.1522724 + }, + { + "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.1522936 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.152320475 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.152666425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15267985 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.15269555 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1528338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.1528488 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.152861575 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.152877375 + }, + { + "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.152912775 + }, + { + "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.1529473 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.15296425 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.152984425 + }, + { + "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.15305485 + }, + { + "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.15305485 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.1530685 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.153081675 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.153097875 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.153108925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.153119675 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.1531334 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.15314435 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15315515 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, + "xTicksToWait": 4294967295 + }, + "ts": 0.153167 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.153177275 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.15318875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.15320505 + }, + { + "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.1532685 + }, + { + "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.1532685 + }, + { + "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.153293525 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.153320525 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.153666425 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15367985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.15369555 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1538338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.1538488 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.153861575 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.15387725 + }, + { + "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.15391265 + }, + { + "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.1539472 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.15396435 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.15398035 + }, + { + "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.154050675 + }, + { + "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.154050675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.1540685 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.15408185 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.154098175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.154109025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.154119775 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.1541335 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.1541444 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.154155225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 + }, + "ts": 0.154167075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.154178375 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.15419 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.1542064 + }, + { + "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.15426995 + }, + { + "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.15426995 + }, + { + "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.15429115 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.15432215 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.154666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.154679875 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.15469545 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1548338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1548492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.154864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.155666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15567995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1556951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1558338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.155849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.15586425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.156666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.156680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.15669535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1568338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.156849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.15686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.157666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15768 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.157695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1578338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.157849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.15786425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.158666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.158680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.158695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1588338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1588492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.158864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.159666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15967995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1596951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1598338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.159849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.15986425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.160666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.160680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.16069535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1608338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.160849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.16086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.161666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.16168 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.161695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1618338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.161849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.16186425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.162666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.162680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.162695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1628338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1628492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.162864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.163666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.16367995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1636951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1638338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.163849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.16386425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.164666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.164683575 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.164698725 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1648338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.164849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.16486425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.165666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.165680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.165695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1658338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1658492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.165864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.166666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.16667995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1666951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1668338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.166849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.16686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.167666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.167680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.16769535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1678338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.167849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.16786425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.168666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.16868 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.168695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1688338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.168849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.16886425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.169666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.169680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.169695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1698338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1698492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.169864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.170666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.17067995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1706951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1708338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.170849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.17086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.171666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.171680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.17169535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1718338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.171849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.17186425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.172666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.17268 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.172695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1728338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.172849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.17286425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.173666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.173680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.173695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1738338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1738492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.173864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.174666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.17467995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1746951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1748338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.174849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.17486425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.175666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.175680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.17569535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1758338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.175849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.17586425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.176666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.176684225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.176699375 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1768338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.176849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.17686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.177666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.177680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.177695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1778338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1778492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.177864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.178666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.17867995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1786951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1788338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.178849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.17886425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.179666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.179680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.17969535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1798338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.179849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.17986425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.180666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.18068 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.180695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1808338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.180849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.18086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.181666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.181680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.181695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1818338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12286700 + }, + "ts": 0.181848825 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.181861575 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.18187725 + }, + { + "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.181912575 + }, + { + "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.181947 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.181964025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.181980025 + }, + { + "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.18205045 + }, + { + "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.18205045 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "ts": 0.1820682 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.182081425 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.18209765 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.182108525 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.182119275 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.182133125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.182144 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.182154825 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 + }, + "ts": 0.1821668 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.18217705 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.18218845 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.182204825 + }, + { + "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.182268375 + }, + { + "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.182268375 + }, + { + "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.182289575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.182320575 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.182666425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.182679875 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.18269545 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1828338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.182848825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.182861575 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.18287725 + }, + { + "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.182912575 + }, + { + "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.182947 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.182964025 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.182980025 + }, + { + "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.18305045 + }, + { + "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.18305045 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.183064 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.183081425 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.183097725 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.183108575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.183119325 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.18313305 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.1831439 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.183154725 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, + "xTicksToWait": 4294967295 + }, + "ts": 0.1831666 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.18317685 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.183188325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.183204625 + }, + { + "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.183268075 + }, + { + "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.183268075 + }, + { + "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.18328925 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.18331625 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.183666425 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.18367985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.18369555 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1838338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.1838488 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.183861575 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.18387725 + }, + { + "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.18391265 + }, + { + "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.183951325 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.183968225 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.1839842 + }, + { + "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.18405455 + }, + { + "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.18405455 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.18406815 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.184081375 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.184097675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.184108525 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1841193 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.184133175 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.18414405 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.184154875 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 + }, + "ts": 0.18416675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.184178025 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.184189675 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.184209375 + }, + { + "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.184272925 + }, + { + "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.184272925 + }, + { + "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.184294125 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.184321025 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.184666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.18467985 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.18469555 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1848338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.184849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.18486425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.185666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.185680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.18569535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1858338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.185849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.18586425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.186666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.18668 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.186695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1868338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.186849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.18686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.187666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.187680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.187695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1878338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1878492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.187864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.188666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.18867995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1886951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1888338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.188849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.18886425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.189666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.189680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.18969535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1898338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.189849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.189868575 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.190666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.19067995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1906951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1908338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.190849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.19086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.191666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.191680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.19169535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1918338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.191849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.19186425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.192666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.19268 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.192695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1928338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.192849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.19286425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.193666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.193680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.193695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1938338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1938492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.193864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.194666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.19467995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1946951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1948338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.194849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.19486425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.195666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.195680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.19569535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1958338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.195849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.19586425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.196666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.19668 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.196695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1968338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.196849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.19686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.197666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.197680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.197695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1978338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1978492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.197864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.198666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.19867995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1986951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1988338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.198849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.19886425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.199666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.199680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.19969535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1998338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.199849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.19986425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.200666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.20068 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.200695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2008338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.200849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.20086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.201666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.201680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.201695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2018338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2018492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.201864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.202666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.202680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.20269535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2028338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.202849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.20286425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.203666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.20368 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.203695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2038338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.203849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.20386425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.204666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.204680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.204695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2048338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2048492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.204864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.205666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.20567995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2056951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2058338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.205849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.20586425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.206666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.206680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.20669535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2068338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.206849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.20686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.207666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.20768 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.207695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2078338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.207849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.20786425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.208666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.208680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.208695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2088338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2088492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.208864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.209666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.20967995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2096951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2098338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.209849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.20986425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.210666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.210680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21069535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2108338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.210849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.211666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21168 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.211695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2118338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12286700 + }, + "ts": 0.2118488 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.211861575 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.21187725 + }, + { + "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.21191265 + }, + { + "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.21195125 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.21196815 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.21198415 + }, + { + "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.212054475 + }, + { + "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.212054475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "ts": 0.212068075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.2120813 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.212097675 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.212108525 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2121193 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.212133125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.212144025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21215485 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 + }, + "ts": 0.2121668 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21217705 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.212188475 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.21220885 + }, + { + "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.2122724 + }, + { + "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.2122724 + }, + { + "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.2122936 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.212320475 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.212666425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21267985 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21269555 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2128338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.2128488 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.212861575 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.212877375 + }, + { + "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.212912775 + }, + { + "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.212947475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.2129644 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.212984575 + }, + { + "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.213055025 + }, + { + "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.213055025 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.21306865 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.21308185 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.21309815 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.213109 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21311975 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.213133475 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.213144325 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21315515 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, + "xTicksToWait": 4294967295 + }, + "ts": 0.213167025 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.213177275 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.21318875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.21320505 + }, + { + "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.2132685 + }, + { + "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.2132685 + }, + { + "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.21329355 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.21332055 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.213666425 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21367985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21369555 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2138338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.2138488 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.213861575 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.21387725 + }, + { + "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.21391265 + }, + { + "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.2139472 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.21396435 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.21398035 + }, + { + "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.214050675 + }, + { + "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.214050675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.214071175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.2140844 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.214100725 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.214111575 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.214122325 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.21413605 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.21414695 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.214157775 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 + }, + "ts": 0.214169625 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.214180925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.21419255 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.21420895 + }, + { + "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.2142725 + }, + { + "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.2142725 + }, + { + "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.2142937 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.214324025 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.214666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.214679875 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21469545 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2148338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2148492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.214864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.215666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21567995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2156951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2158338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.215849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21586425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.216666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.216680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21669535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2168338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.216849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.217666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21768 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.217695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2178338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.217849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21786425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.218666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.218680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.218695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2188338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2188492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.218864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.219666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21967995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2196951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2198338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.219849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21986425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.220666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.220680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.22069535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2208338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.220849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.22086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.221666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.22168 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.221695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2218338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.221849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.22186425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.222666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.222680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.222695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2228338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2228492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.222864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.223666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.22367995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2236951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2238338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.223849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.22386425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.224666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2246842 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.22469935 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2248338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.224849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.22486425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.225666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.225680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.225695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2258338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2258492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.225864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.226666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.22667995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2266951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2268338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.226849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.22686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.227666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.227680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.22769535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2278338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.227849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.22786425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.228666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.22868 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.228695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2288338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.228849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.22886425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.229666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.229680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.229695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2298338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2298492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.229864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.230666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.23067995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2306951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2308338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.230849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.23086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.231666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.231680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.23169535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2318338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.231849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.23186425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.232666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.23268 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.232695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2328338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.232849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.23286425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.233666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.233680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.233695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2338338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2338492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.233864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.234666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.23467995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2346951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2348338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.234849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.23486425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.235666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.235680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.23569535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2358338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.235849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.23586425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.236666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.23668355 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.236698675 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2368338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.236849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.23686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.237666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.237680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.237695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2378338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2378492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.237864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.238666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.23867995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2386951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2388338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.238849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.23886425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.239666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.239680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.23969535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2398338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.239849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.23986425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.240666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.24068 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.240695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2408338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.240849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.24086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.241666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.241680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.241695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2418338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12286700 + }, + "ts": 0.241848825 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.241861575 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.24187725 + }, + { + "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.241912575 + }, + { + "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.241947 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.241964025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.241980025 + }, + { + "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.24205045 + }, + { + "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.24205045 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12287056, + "xTicksToWait": 0 + }, + "ts": 0.242068275 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.2420815 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.242097725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.2421086 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.24211935 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.2421332 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289748 + }, + "ts": 0.242144075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2421549 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12287056, + "xTicksToWait": 4294967295 + }, + "ts": 0.242166875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.242177125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.242188525 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.2422049 + }, + { + "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.24226845 + }, + { + "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.24226845 + }, + { + "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.24228965 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.24232065 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.242666425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.242679875 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.24269545 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2428338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12292716 + }, + "ts": 0.242848825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.242861575 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12292716 + }, + "ts": 0.24287725 + }, + { + "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.242912575 + }, + { + "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.24294715 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.242964175 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.242980175 + }, + { + "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.2430506 + }, + { + "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.2430506 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12293072, + "xTicksToWait": 0 + }, + "ts": 0.24306415 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.243080975 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.243097275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.243108125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.243118875 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.2431326 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12295764 + }, + "ts": 0.24314345 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.243154275 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12293072, + "xTicksToWait": 4294967295 + }, + "ts": 0.24316615 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2431764 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.243187875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.243204375 + }, + { + "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.243267825 + }, + { + "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.243267825 + }, + { + "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.243288975 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.243315975 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.243666425 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.24367985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.24369555 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2438338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12298716 + }, + "ts": 0.2438488 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.243861575 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12298716 + }, + "ts": 0.24387725 + }, + { + "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.24391265 + }, + { + "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.243951325 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.24396835 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.24398435 + }, + { + "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.244054675 + }, + { + "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.244054675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12299072, + "xTicksToWait": 0 + }, + "ts": 0.2440684 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.244081625 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.24409795 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.2441088 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.24411955 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.244133275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12301764 + }, + "ts": 0.244144175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.244155 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 1, + "xQueue": 12299072, + "xTicksToWait": 4294967295 + }, + "ts": 0.24416685 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.24417815 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12283904, + "xTicksToWait": 10 + }, + "ts": 0.244189775 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12283904, + "xTicksToWait": 0 + }, + "ts": 0.244210225 + }, + { + "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.2442739 + }, + { + "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.2442739 + }, + { + "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.2442951 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.244322 + }, + { + "core_id": 1, + "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": 5 + }, + "ts": 0.244666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.24467985 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.24469555 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2448338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.244849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.24486425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.245666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.245680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.24569535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2458338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.245849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.24586425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.246666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.24668 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.246695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2468338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.246849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.24686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.247666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.247680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.247695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2478338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2478492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.247864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.248666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.24867995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2486951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2488338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.248849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.24886425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.249666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.249680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.24969535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2498338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.249849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.249868675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.250666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.25067995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2506951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2508338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.250849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.25086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.251666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.251680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.25169535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2518338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.251849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.25186425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.252666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.25268 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.252695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2528338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.252849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.25286425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.253666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.253680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.253695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2538338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2538492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.253864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.254666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.25467995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2546951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2548338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.254849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.25486425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.255666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.255680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.25569535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2558338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.255849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.25586425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.256666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.25668 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.256695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2568338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.256849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.25686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.257666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.257680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.257695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2578338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2578492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.257864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.258666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.25867995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2586951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2588338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.258849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.25886425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.259666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.259680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.25969535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2598338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.259849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.25986425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.260666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.26068 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.260695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2608338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.260849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.26086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.261666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.261680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.261695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2618338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2618492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.261864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.262666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.262680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.26269535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2628338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.262849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.26286425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.263666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.26368 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.263695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2638338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.263849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.26386425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.264666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.264680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.264695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2648338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2648492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.264864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.265666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.26567995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2656951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2658338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.265849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.26586425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.266666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.266680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.26669535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2668338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.266849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.26686425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.267666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.26768 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.267695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2678338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.267849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.26786425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.268666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.268680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.268695225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2688338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2688492 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.268864425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.269666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.26967995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2696951 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2698338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.269849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.26986425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.270666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.270680075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.27069535 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2708338 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.270849175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.27086425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.271666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.27168 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.271695125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2718338 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12286700 + }, + "ts": 0.2718488 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.271861575 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12286700 + }, + "ts": 0.27187725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 44, + "in_irq": false, + "params": { + "eAction": 2, + "pulPreviousNotificationValue": 0, + "ulValue": 0, + "xTaskToNotify": 12254080 + }, + "ts": 0.271895625 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12254080 + }, + "ts": 0.271906575 }, { "core_id": 0, @@ -242673,18 +23774,7 @@ "params": { "xTicksToDelay": 100 }, - "ts": 2.973676575 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12287808 - }, - "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,9 +23800,20 @@ "id": 4, "in_irq": false, "params": { - "tid": 12280900 + "tid": 12254080 }, - "ts": 2.973722375 + "ts": 0.2719646 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 37, + "in_irq": false, + "params": { + "xClearCountOnExit": 0, + "xTicksToWait": 4294967295 + }, + "ts": 0.271982475 }, { "core_id": 0, @@ -242722,20 +23823,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.973737475 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "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,19 +23900,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3300) example: Wait notify 1\n", - "ts": 2.9738646 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12280900 - }, - "ts": 2.97387465 + "msg": "I (580) example: Wait notify 1\n", + "ts": 0.272140275 }, { "core_id": 0, @@ -242847,23 +23911,49 @@ "params": { "irq_num": 30 }, - "ts": 2.97388695 + "ts": 0.27215865 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.97389565 + "ts": 0.27217005 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.97391015 + "ts": 0.2721861 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.272666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.27267995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "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,9 +23989,22 @@ "id": 4, "in_irq": false, "params": { - "tid": 12288672 + "tid": 12292716 }, - "ts": 2.974652975 + "ts": 0.272877375 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 44, + "in_irq": false, + "params": { + "eAction": 2, + "pulPreviousNotificationValue": 0, + "ulValue": 0, + "xTaskToNotify": 12254080 + }, + "ts": 0.2728918 }, { "core_id": 0, @@ -242909,9 +24012,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12280900 + "tid": 12254080 }, - "ts": 2.97466405 + "ts": 0.272902925 }, { "core_id": 0, @@ -242921,18 +24024,7 @@ "params": { "xTicksToDelay": 100 }, - "ts": 2.974674225 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12288672 - }, - "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,9 +24050,20 @@ "id": 4, "in_irq": false, "params": { - "tid": 12280900 + "tid": 12254080 }, - "ts": 2.974720025 + "ts": 0.272960975 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 37, + "in_irq": false, + "params": { + "xClearCountOnExit": 0, + "xTicksToWait": 4294967295 + }, + "ts": 0.272974675 }, { "core_id": 0, @@ -242970,20 +24073,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.97473515 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "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,19 +24150,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (3301) example: Wait notify 2\n", - "ts": 2.974860925 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 27, - "tid": 12280900 - }, - "ts": 2.97487105 + "msg": "I (581) example: Wait notify 2\n", + "ts": 0.2731326 }, { "core_id": 0, @@ -243095,23 +24161,49 @@ "params": { "irq_num": 30 }, - "ts": 2.974883275 + "ts": 0.273150975 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 18, "in_irq": false, "params": {}, - "ts": 2.974892 + "ts": 0.273162375 }, { "core_id": 0, - "ctx_name": "IDLE0", + "ctx_name": "main", "id": 17, "in_irq": false, "params": {}, - "ts": 2.974906475 + "ts": 0.27317855 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.273666425 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.27367995 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "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,9 +24239,22 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289536 + "tid": 12298716 }, - "ts": 2.975653025 + "ts": 0.273877375 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 44, + "in_irq": false, + "params": { + "eAction": 2, + "pulPreviousNotificationValue": 0, + "ulValue": 0, + "xTaskToNotify": 12254080 + }, + "ts": 0.2738918 }, { "core_id": 0, @@ -243157,9 +24262,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12280900 + "tid": 12254080 }, - "ts": 2.97566405 + "ts": 0.273902925 }, { "core_id": 0, @@ -243169,18 +24274,7 @@ "params": { "xTicksToDelay": 100 }, - "ts": 2.97567415 - }, - { - "core_id": 0, - "ctx_name": "IDLE0", - "id": 7, - "in_irq": false, - "params": { - "cause": 4, - "tid": 12289536 - }, - "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,9 +24300,20 @@ "id": 4, "in_irq": false, "params": { - "tid": 12280900 + "tid": 12254080 }, - "ts": 2.97571985 + "ts": 0.273960975 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 37, + "in_irq": false, + "params": { + "xClearCountOnExit": 0, + "xTicksToWait": 4294967295 + }, + "ts": 0.273974675 }, { "core_id": 0, @@ -243218,20 +24323,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12276584, + "xQueue": 12283904, "xTicksToWait": 10 }, - "ts": 2.975735025 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "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 50dffef2d8..6a17ec20f2 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 0000000000..e559db8db3 --- /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 0000000000..30f3c9e764 Binary files /dev/null and b/tools/esp_app_trace/test/sysview/heap_log0.svdat differ 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 0000000000..5133eb8683 Binary files /dev/null and b/tools/esp_app_trace/test/sysview/heap_log1.svdat differ 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 47df37c5d6..6a5b07cda8 100644 Binary files a/tools/esp_app_trace/test/sysview/heap_log_mcore.svdat and b/tools/esp_app_trace/test/sysview/heap_log_mcore.svdat differ 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 0e4e3c77f0..05d483d785 100644 Binary files a/tools/esp_app_trace/test/sysview/sysview_tracing_heap_log.elf and b/tools/esp_app_trace/test/sysview/sysview_tracing_heap_log.elf differ diff --git a/tools/esp_app_trace/test/sysview/test.elf b/tools/esp_app_trace/test/sysview/test.elf deleted file mode 100644 index 9ce51ec4ce..0000000000 Binary files a/tools/esp_app_trace/test/sysview/test.elf and /dev/null differ diff --git a/tools/esp_app_trace/test/sysview/test.sh b/tools/esp_app_trace/test/sysview/test.sh index 2d9d4054ab..4906c8f317 100755 --- a/tools/esp_app_trace/test/sysview/test.sh +++ b/tools/esp_app_trace/test/sysview/test.sh @@ -2,14 +2,14 @@ { python -m coverage debug sys \ && python -m coverage erase &> output \ - && python -m coverage run -a $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -d -p -b test.elf cpu0.svdat cpu1.svdat &>> output \ + && python -m coverage run -a $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -d -p -b sysview_tracing_heap_log.elf heap_log0.svdat heap_log1.svdat &>> output \ && diff output expected_output \ && python -m coverage report \ ; } || { echo 'The test for sysviewtrace_proc has failed. Please examine the artifacts.' ; exit 1; } { python -m coverage debug sys \ && python -m coverage erase &> output.json \ - && python -m coverage run -a $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -j -b test.elf cpu0.svdat cpu1.svdat &>> output.json \ + && python -m coverage run -a $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -j -b sysview_tracing_heap_log.elf heap_log0.svdat heap_log1.svdat &>> output.json \ && diff output.json expected_output.json \ && python -m coverage report \ ; } || { echo 'The test for sysviewtrace_proc JSON functionality has failed. Please examine the artifacts.' ; exit 1; }